:root {
    --primary: #daa023;
    /* Deep Purple - Organization Brand */
    --primary-accent: #343434;
    /* Vibrant Purple */
    --secondary: #103bca;
    /* Amber for highlight */
    --gold: #f59e0b;
    --background: #ffffff;
    --surface: #f5f3ff;
    /* Very light purple tint */
    --text-main: #020100;
    /* Very dark blue-purple */
    --text-muted: #6b7280;
    --border-light: rgba(76, 29, 149, 0.08);
    --shadow-button: 0 4px 14px 0 rgba(139, 92, 246, 0.39);
    --transition-main: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bricolage Grotesque', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(2, 1, 0, 0.34);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1900;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* --- Navbar --- */
.nav-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 20px 0;
    transition: var(--transition-main);
    overflow: visible;
}

.nav-wrapper.active {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: none;
}

.nav-wrapper .glass-overlay {
    background: transparent;
    transition: var(--transition-main);
}

.nav-wrapper.active .glass-overlay {
    background: rgba(255, 255, 255, 0.78);
}

.nav-wrapper.active .btn-cta {
    color: #000 !important;
}

.nav-wrapper.active .btn-cta .glass-overlay {
    background: rgba(255, 255, 255, 0.2);
}

/* Glass Effect Components */
.glass-filter {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* backdrop-filter: url(#lg-dist); */
    /* -webkit-backdrop-filter: url(#lg-dist); */
     backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(0px);
    filter: url(#lg-dist);
    isolation: isolate;
}

.glass-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
}

.glass-specular {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    overflow: hidden;
    box-shadow:
        inset 1px 1px 0 rgba(255, 255, 255, 0.55),
        inset 0 0 5px rgba(255, 255, 255, 0.5);
}

.glass-content {
    position: relative;
    z-index: 3;
    padding: 12px 28px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.navbar {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
    min-height: 64px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 1 470px;
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 0;
    min-width: 0;
    max-width: 470px;
    line-height: 1.15;
}

.brand-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.brand-logo {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), #c48912);
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 10px 24px rgba(218, 160, 35, 0.2);
}

.brand-logo img {
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: clamp(10px, 1.35vw, 24px);
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 650;
    font-size: clamp(0.82rem, 0.9vw, 0.96rem);
    letter-spacing: 0;
    white-space: nowrap;
    transition: var(--transition-main);
    position: relative;
    padding: 10px 6px;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: var(--transition-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn-cta {
    min-width: 158px;
    border: 0;
    background: linear-gradient(135deg, var(--primary), #c58b17);
    box-shadow: 0 14px 28px rgba(218, 160, 35, 0.22);
}

.nav-links .btn-cta .glass-filter,
.nav-links .btn-cta .glass-overlay,
.nav-links .btn-cta .glass-specular {
    display: none;
}

.nav-links .btn-cta .glass-content {
    color: #ffffff;
    padding: 12px 24px;
    text-shadow: none;
}

.nav-wrapper.active .nav-links .btn-cta .glass-content {
    color: #ffffff !important;
}

.nav-links .btn-cta:hover {
    box-shadow: 0 18px 34px rgba(218, 160, 35, 0.28);
}

/* --- Hamburger Menu --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 6px;
    z-index: 3000;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(2, 1, 0, 0.08);
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition-main);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-decoration: none;
    color: rgb(0, 0, 0) !important;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
}

.btn-cta .glass-overlay {
    background: rgba(76, 29, 149, 0.4);
    transition: var(--transition-main);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(139, 92, 246, 0.4),
        inset 0 0 15px rgba(235, 235, 235, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-wrapper.active .btn-cta {
    color: #000 !important;
}

.nav-wrapper.active .btn-cta .glass-content {
    color: #000 !important;
    text-shadow: none;
}

.nav-wrapper.active .btn-cta .glass-overlay {
    background: rgba(0, 0, 0, 0.05);
}

.nav-wrapper.active .btn-cta:hover .glass-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.btn-cta:hover .glass-overlay {
    background: rgba(139, 92, 246, 0.6);
}

/* --- Pages Common Hero --- */
.page-hero {
    padding: 180px 0 100px;
    background: var(--surface);
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* --- Hero Section: Architectural Layout --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--surface);
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-accent) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    margin-bottom: 30px;
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
}

.hero-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    min-height: 38px;
    background: white;
    border: 1px solid var(--border-light);
    padding: 8px 15px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    transition: var(--transition-main);
}

.hero-chip i {
    color: var(--primary-accent);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.hero-actions .btn-cta,
.dest-content .btn-cta,
.cta-inner .btn-cta {
    min-height: 46px;
    padding: 12px 24px;
}

.hero-img-container {
    position: relative;
    height: 600px;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px 100px 40px 100px;
    box-shadow: var(--shadow-button);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

/* --- Grid of Excellence --- */
.excellence {
    padding: 120px 0;
    background: white;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-accent);
    margin-bottom: 15px;
    margin-top: 15px;
    display: block;
}

.section-heading {
    margin-bottom: 80px;
}

.section-heading h2,
.section-title-center,
.trust-section h2,
.cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.08;
}

.section-heading h2 {
    max-width: 650px;
}

.section-heading-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading-center h2 {
    margin: 0 auto;
    font-family: 'Bricolage Grotesque', sans-serif;
}

.section-title-center {
    text-align: center;
    margin-bottom: 80px;
}

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

.excel-item h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-accent);
    padding-left: 20px;
}

.excel-item p {
    color: var(--text-muted);
}

/* --- Destinations: Horizontal Scroll or Wide Cards --- */
.destinations {
    padding: 140px 0;
    background: var(--surface);
}

.dest-wide-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 60px;
    transition: var(--transition-main);
    border: 1px solid var(--border-light);
}

.dest-wide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.dest-wide-card.reverse {
    direction: rtl;
}

.dest-wide-card.reverse .dest-content {
    direction: ltr;
}

.dest-img-box {
    height: 500px;
    overflow: hidden;
}

.dest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.dest-wide-card:hover .dest-img-box img {
    transform: scale(1.1);
}

.dest-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dest-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pilar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* --- Cards Grid for Pages --- */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 80px 0;
}

.glass-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-light);
    transition: var(--transition-main);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* --- Trust & Stats --- */
.trust-section {
    padding: 100px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.stat-box h4 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-box p {
    opacity: 0.7;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Professional CTA --- */
.cta-final {
    padding: 140px 0;
    text-align: center;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
}

.cta-inner h2 {
    margin-bottom: 30px;
}

/* --- Footer --- */
.footer {
    background: #020617;
    color: white;
    padding: 100px 0 40px;
    font-size: 0.95rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: block;
    color: white;
    text-decoration: none;
}

.footer-links h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-main);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 10px;
}

.footer-bottom {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 6%;
    }

    .brand {
        flex-basis: 430px;
        max-width: 430px;
        font-size: 1.08rem;
    }

    .hero-grid,
    .dest-wide-card,
    .excellence-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 130px 0 80px;
    }

    .hero-img-container {
        height: 450px;
    }

    .dest-wide-card.reverse {
        direction: ltr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .floating-card {
        bottom: 20px;
        left: 20px;
        padding: 15px;
    }
}

@media (max-width: 1180px) {
    .nav-wrapper {
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.78);
        border-bottom: 1px solid rgba(2, 1, 0, 0.06);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .nav-wrapper.active {
        padding: 10px 0;
    }

    .navbar {
        min-height: 58px;
    }

    .brand {
        flex: 1 1 auto;
        max-width: calc(100% - 64px);
        font-size: clamp(0.95rem, 3.2vw, 1.18rem);
    }

    .menu-toggle {
        display: flex;
        flex: 0 0 auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(390px, 88vw);
        height: 100dvh;
        max-height: none;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
            var(--background);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 4px;
        transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: -26px 0 70px rgba(2, 1, 0, 0.14);
        z-index: 2500;
        padding: 96px 22px 24px;
        border-left: 1px solid rgba(2, 1, 0, 0.08);
        border-radius: 28px 0 0 28px;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateX(105%);
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.08rem;
        font-weight: 700;
        width: 100%;
        text-align: left;
        padding: 14px 16px;
        border-radius: 16px;
        white-space: normal;
    }

    .nav-links a:hover {
        background: var(--surface);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .btn-cta {
        width: 100%;
        margin-top: 18px;
        min-height: 58px;
        border-radius: 18px;
    }

    .nav-links .btn-cta .glass-content {
        width: 100%;
        padding: 17px 20px;
        text-align: center;
    }

    .menu-toggle.is-active {
        position: fixed;
        top: 22px;
        right: 22px;
        background: #ffffff;
        border-color: rgba(218, 160, 35, 0.24);
        box-shadow: 0 16px 36px rgba(2, 1, 0, 0.12);
    }

    .hero-text h1 {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-grid {
        gap: 40px;
    }

    .hero-text p {
        font-size: 1.05rem;
    }

    .hero-actions .btn-cta {
        min-width: 160px;
    }

    .destinations,
    .excellence,
    .cta-final,
    .pillars-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .section-heading,
    .section-title-center {
        margin-bottom: 44px;
    }

    .dest-content {
        padding: 40px 30px;
    }

    .dest-content h3 {
        font-size: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .page-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 720px) {
    .brand {
        max-width: calc(100% - 64px);
        font-size: 1rem;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .hero {
        padding: 112px 0 64px;
    }

    .hero-img-container {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .hero-img-main {
        border-radius: 28px;
    }

    .floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
    }

    .dest-wide-card {
        border-radius: 24px;
        margin-bottom: 34px;
    }

    .dest-img-box {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .pilar-card {
        padding: 28px !important;
        border-radius: 22px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .brand {
        gap: 10px;
        font-size: 0.9rem;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        width: min(340px, 90vw);
        padding: 88px 18px 20px;
        border-radius: 24px 0 0 24px;
    }

    .menu-toggle.is-active {
        top: 18px;
        right: 18px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-chip-list,
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-chip,
    .hero-actions .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .stat-box h4 {
        font-size: 2.6rem;
    }

    .footer {
        padding-top: 70px;
    }

    .footer-bottom {
        align-items: flex-start;
        text-align: left;
    }

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

    .doc-content {
        padding: 30px;
    }
}
