/* ================================================================ */
/* ===== RESET & BASE ============================================= */
/* ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A2A3A;
    --primary-light: #2A3A4A;
    --gold: #C9A96E;
    --gold-dark: #B8994F;
    --gold-light: #E8D5A8;
    --cream: #F8F6F0;
    --white: #FFFFFF;
    --text-dark: #1A2A3A;
    --text-light: #6B7A8A;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

.gold {
    color: var(--gold);
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ================================================================ */
/* ===== BUTTONS ================================================== */
/* ================================================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* ================================================================ */
/* ===== HEADER / NAVBAR ========================================== */
/* ================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 42, 58, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(26, 42, 58, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
}

.logo-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-sub .san {
    font-weight: 600;
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
    background: rgba(201, 169, 110, 0.15);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================ */
/* ===== PAGE HERO ================================================ */
/* ================================================================ */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--primary);
    overflow: hidden;
    margin-top: 0;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 8px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
}

.page-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ================================================================ */
/* ===== ABOUT INTRO ============================================== */
/* ================================================================ */
.about-intro {
    padding: 80px 0;
    background: var(--cream);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ===== ABOUT INTRO IMAGE ===== */
.about-intro-image {
    position: relative;
}

.about-intro-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.about-intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-intro-img:hover {
    transform: scale(1.03);
}

/* Floating badge - stays in same position */
.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--primary);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(201, 169, 110, 0.35);
    z-index: 2;
}

.about-intro-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 5rem;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--primary);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 10px 40px rgba(201, 169, 110, 0.35);
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-intro-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-intro-content p strong {
    color: var(--primary);
}

.intro-stats {
    display: flex;
    gap: 48px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid rgba(201, 169, 110, 0.2);
}

.intro-stats div {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================================================================ */
/* ===== EXPERTISE ================================================ */
/* ================================================================ */
.expertise {
    padding: 80px 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--cream);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
}

.expertise-item:hover {
    border-color: var(--gold);
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.expertise-item i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* ================================================================ */
/* ===== ORGANIZATIONAL STRUCTURE ================================= */
/* ================================================================ */
.structure {
    padding: 80px 0;
    background: var(--cream);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.structure-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--gold);
}

.structure-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.structure-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
}

.structure-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.structure-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.structure-head {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--cream);
    padding: 6px 18px;
    border-radius: 50px;
}

.structure-head strong {
    color: var(--primary);
}

.structure-note {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}

.structure-note i {
    color: var(--gold);
    font-size: 1.2rem;
}

.structure-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ================================================================ */
/* ===== WHY CHOOSE US ============================================ */
/* ================================================================ */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.who-we-are {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.who-we-are h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.who-we-are p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.value-card {
    background: var(--cream);
    padding: 30px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.value-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.goal-section {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}

.goal-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.goal-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
}

.goal-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.goal-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.goal-text strong {
    color: var(--gold);
}

/* ================================================================ */
/* ===== CTA SECTION ============================================== */
/* ================================================================ */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================ */
/* ===== FOOTER =================================================== */
/* ================================================================ */
.footer {
    background: #0E1A26;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.5);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-contact address p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-style: normal;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact address p i {
    color: var(--gold);
    margin-top: 4px;
    width: 18px;
}

.footer-contact address a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact address a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* ================================================================ */
/* ===== BACK TO TOP ============================================== */
/* ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--primary);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-4px);
}

/* ================================================================ */
/* ===== RESPONSIVE =============================================== */
/* ================================================================ */

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .structure-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .page-hero-content h1 {
        font-size: 2.8rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(201, 169, 110, 0.15);
        gap: 4px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions .btn-gold {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-intro-content h2 {
        font-size: 2rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .structure-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .goal-section {
        padding: 28px 20px;
    }

    .goal-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .intro-stats div {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }

    .floating-badge {
        bottom: -10px;
        right: -10px;
        padding: 14px 18px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .logo-sub {
        font-size: 0.8rem;
    }

    .who-we-are h3 {
        font-size: 1.4rem;
    }

    .goal-text h3 {
        font-size: 1.3rem;
    }

    .structure-note {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-item {
        padding: 12px 16px;
    }

    .value-card {
        padding: 20px 16px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .structure-card {
        padding: 24px 18px;
    }
}