:root {
    /* Color Palette - Fresh Tourism Theme */
    --primary-blue: #0056b3;       /* Trustworthy dark blue */
    --primary-light: #e7f1ff;      /* Light blue backgrounds */
    --accent-orange: #ff8c00;      /* Energetic orange (CTA) */
    --accent-orange-hover: #e07b00;

    --bg-main: #ffffff;
    --bg-secondary: #f8f9fa;       /* Light gray/white */
    --bg-dark-footer: #0f172a;     /* Dark for footer */

    --text-main: #1e293b;          /* Dark anthracite */
    --text-muted: #64748b;         /* Medium gray */
    --text-light: #ffffff;

    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --border-radius-lg: 16px;
    --border-radius-md: 12px;
    --transition-fast: 0.25s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0; /* Adjusted for better nav alignment */
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001; /* Above dropdowns */
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-blue), #003d80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    color: #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text span:first-child {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.logo-text span:last-child {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Navigation & Dropdowns */
.nav-links {
    display: flex;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    padding: 0 5px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.2s;
    height: 100%;
}

.nav-link:hover, .nav-item:hover .nav-link {
    color: var(--primary-blue);
}

/* Arrow indicator for dropdowns */
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}

/* Add a small invisible bridge so mouse doesn't leave hover area */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 14px;
    transition: background 0.2s;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-blue);
}

/* Mega Menu / Wide Dropdown for specific items if needed - defaulting to simple list for now */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-main);
}

/* Mobile Nav Wrapper */
.mobile-nav-wrapper {
    display: none; /* JS will toggle this */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px); /* Full screen minus header */
    background: #fff;
    border-top: 1px solid var(--border-color);
    padding: 20px;
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-wrapper.active {
    display: flex;
}

/* Mobile Menu Items */
.mobile-nav-item {
    border-bottom: 1px solid var(--bg-secondary);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-dropdown {
    display: none;
    padding-left: 15px;
    padding-bottom: 15px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 10px;
}

.mobile-dropdown.active {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 14px;
}

.mobile-dropdown a:last-child {
    border-bottom: none;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-size: 14px;
    color: var(--text-muted);
    text-align: right;
    line-height: 1.3;
}

.header-phone strong {
    display: block;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 15px;
}

/* Buttons */
.btn {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: var(--primary-blue);
    color: #fff;
}

.btn-secondary:hover {
    background: #004494;
}

.btn-outline {
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-light);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.7;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 12px;
    display: inline-block;
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: 4px;
}

h1 {
    font-family: "Poppins", sans-serif;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 28px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.hero-note {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-note::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: bold;
}

/* Subpage Page Header (New) */
.page-header {
    background: var(--primary-blue);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.page-header h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 12px;
}

.page-header .breadcrumb {
    font-size: 14px;
    opacity: 0.8;
}

.page-header .breadcrumb a {
    color: #fff;
    text-decoration: underline;
}

/* Hero Side (Cards) */
.hero-side {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-side-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.hero-side-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.hero-side-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fff3e0;
    color: #d35400;
    font-weight: 700;
}

.tour-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tour-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 12px;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.tour-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tour-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--primary-blue);
    color: #fff;
}

.tour-name {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
    padding-right: 20px;
}

.tour-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tour-price {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: 700;
}

/* Section Styling */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.category-name {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.category-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
}

.category-meta span {
    color: var(--text-main);
    font-weight: 600;
}

.category-link {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Advantages - Blue Section */
.advantages {
    background-color: var(--primary-blue);
    color: #fff;
}

.advantages .section-title,
.advantages .section-subtitle,
.advantages .section-eyebrow {
    color: #fff;
}

.advantages .section-eyebrow {
    opacity: 0.8;
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
}

.advantages .section-subtitle {
    opacity: 0.9;
}

.adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.adv-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    padding: 20px;
}

.adv-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.adv-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Featured Tours */
.featured-tours {
    background-color: var(--bg-secondary);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-card {
    background: #fff;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-body {
    padding: 20px;
}

.featured-name {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-main);
}

.featured-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.featured-price {
    font-size: 16px;
    color: var(--primary-blue);
    font-weight: 700;
}

.featured-footer {
    padding: 12px 20px;
    background: #fcfcfc;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-footer small {
    color: var(--text-muted);
    font-weight: 500;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    font-weight: 600;
    color: var(--text-main);
    padding: 16px 20px;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    font-size: 14px;
    color: var(--text-muted);
    padding: 0 20px 16px 20px;
    display: none;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    display: block;
    border-top: 1px solid var(--bg-secondary);
}


.faq-side {
    background: var(--primary-light);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.faq-side h3 {
    font-family: "Poppins", sans-serif;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.faq-side p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Contact Strip */
.contact-strip {
    background: linear-gradient(90deg, #1e293b, #0f172a);
    color: #fff;
    padding: 40px 0;
}

.contact-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-text {
    font-size: 18px;
}

.contact-text span {
    color: var(--accent-orange);
    font-weight: 700;
    display: block;
    font-size: 24px;
    margin-top: 5px;
}

/* Content Page Layouts (Service Pages & Blog) */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin: 60px auto;
}

.main-content {
    background: #fff;
    /* Typography for articles */
}

.main-content h2 {
    font-family: "Poppins", sans-serif;
    color: var(--primary-blue);
    margin: 30px 0 16px;
    font-size: 24px;
}

.main-content h3 {
    font-family: "Poppins", sans-serif;
    color: var(--text-main);
    margin: 24px 0 12px;
    font-size: 20px;
}

.main-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #334155;
}

.main-content ul, .main-content ol {
    margin-bottom: 16px;
    padding-left: 20px;
    color: #334155;
}

.main-content li {
    margin-bottom: 8px;
}

.sidebar-widget {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.widget-title {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
    display: inline-block;
}

.widget-links a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-main);
    font-size: 14px;
}

.widget-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Footer */
footer {
    background-color: var(--bg-dark-footer);
    color: #94a3b8;
    padding: 60px 0 20px;
    font-size: 14px;
}

footer a:hover {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo-mark {
    background: var(--accent-orange);
}

.footer-logo .logo-text span:first-child {
    color: #fff;
}

.footer-title {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none; /* Hide default nav */
    }

    .mobile-menu-btn {
        display: block; /* Show hamburger */
    }

    .category-grid, .featured-grid, .adv-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid, .content-wrapper {
        grid-template-columns: 1fr;
    }

    .content-wrapper {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        order: 2; /* Move sidebar to bottom on mobile */
    }
}

@media (max-width: 640px) {
    h1 { font-size: 32px; }
    .hero-badges { display: none; }
    .category-grid, .featured-grid, .adv-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .header-phone {
        display: none;
    }
}
