/* public/assets/css/style.css */

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

body {
    font-family: 'Inter', sans-serif;
    color: #1a2f3a;
    line-height: 1.4;
    overflow-x: hidden;
    margin: 0;
    min-height: 100vh;
    /* Main Global Background Gradient using #AD8639 at 27% opacity */
    background: radial-gradient(circle at center, #ffffff 0%, rgba(173, 134, 57, 0.1) 60%, rgba(173, 134, 57, 0.27) 100%);
    position: relative;
    background-attachment: fixed;
}



/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 70px 0 !important; /* Reduced Global Vertical Rhythm */
}

/* ===== GLOBAL EDITORIAL SYSTEM ===== */
.about_badge_row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.about_line {
    width: 35px;
    height: 1px;
    background: #775A19;
}
.about_badge_text {
    font-size: 0.68rem;
    font-weight: 700;
    color: #bfa073;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about_section_heading {
    font-family: 'Noto Serif', serif;
    font-size: 4.5rem;
    font-weight: 400;
    margin-bottom: 70px;
    letter-spacing: -2px;
    color: #1a2f3a;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .about_section_heading { 
        font-size: 2.5rem; 
        margin-bottom: 40px; 
    }
    .about_badge_row { margin-bottom: 20px; }
}

.contact-btn-mobile, .mobile-menu-icon {
    display: none;
}

/* ===== NEW HERO SECTION ===== */
.hero_section {
    padding: 100px 0; /* Standardized Section Padding */
    background-color: transparent;
    overflow: hidden;
}

.hero_flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero_content {
    flex: 1.5;
    max-width: 700px;
}

.hero_image_side {
    flex: 0.5;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero_top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero_top .line {
    width: 32px;
    height: 1px;
    background: #775A19;
}

.hero_top .badge_text {
    font-size: 0.72rem;
    font-weight: 700;
    color: #775A19;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero_content h1 {
    font-size: 75px;
    font-weight: 400;
    line-height: 75px;
    color: #1B1B1E;
    margin-bottom: 30px;
    font-family: 'Noto Serif', serif;
    letter-spacing: -2.4px;
}

.hero_content h1 i {
    font-style: italic;
    color: #775A19;
    letter-spacing: 0;
}

.hero_content p {
    font-size: 1rem;
    color: #6a747c;
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero_btns {
    display: flex;
    gap: 20px;
}

.btn_gold {
    background: linear-gradient(135deg, #9b743e, #bfa073);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(155, 116, 62, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn_gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(155, 116, 62, 0.3);
}

.btn_outline_hero {
    background: #f4f3f0;
    color: #1a1a1a;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #775A19;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn_outline_hero:hover {
    background: #ebeae6;
    transform: translateY(-3px);
}

.btn_outline_hero {
    background: #f8f8f6;
    color: #1a2f3a;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #775A19;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.btn_outline_hero:hover {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.image_container {
    position: relative;
    border-radius: 24px;
    overflow: visible; /* To allow stats card to overlap */
    width: 100%;
}

.hero_main_img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stats_card_overlay {
    position: absolute;
    bottom: -30px;
    left: -60px;
    background: white;
    padding: 35px 30px;
    border-radius: 4px;
    width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    z-index: 10;
}

.stats_label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.stats_num {
    font-size: 3.2rem;
    font-weight: 800;
    color: #775A19;
    line-height: 1;
    margin-bottom: 15px;
}

.stats_desc {
    font-size: 0.75rem;
    color: #4B5563;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .hero_flex { flex-direction: column; text-align: center; }
    .hero_content h1 { font-size: 3rem; }
    .hero_content p { margin: 0 auto 30px; }
    .hero_btns { justify-content: center; }
    .stats_card_overlay { position: static; margin: 20px auto 0; width: 100%; }
}

/* ===== ABOUT EXPERTS SECTION ===== */
.about_experts_section {
    padding: 100px 0;
    position: relative;
    background: transparent;
}

.container_about {
    max-width: 1360px;
    padding: 0 40px;
}

.about_white_card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 80px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.02);
    border: 1px solid rgba(173, 134, 57, 0.05);
}

.about_flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about_image_side {
    flex: 1;
    position: relative;
}

.about_main_img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.decorative_box {
    position: absolute;
    bottom: -20px;
    left: 40px;
    right: 40px;
    height: 100px;
    background-color: #f3e9d8;
    z-index: 1;
    border-radius: 4px;
}

.about_content_side {
    flex: 1.2;
}

.about_sub_label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.about_line {
    width: 25px;
    height: 2px;
    background-color: #775A19;
}

.about_badge_text {
    font-size: 0.8rem;
    font-weight: 700;
    color: #bfa073;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.about_heading {
    font-family: 'Noto Serif', serif;
    font-size: 52px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.about_text_content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #6a747c;
    margin-bottom: 20px;
}

.about_btn_row {
    margin: 40px 0 60px;
}

.btn_dark_gold {
    background-color: #775A19;
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn_dark_gold:hover {
    background-color: #614a15;
}

.about_stats_row {
    display: flex;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid #f0e6da;
}

.about_stat_item {
    display: flex;
    flex-direction: column;
}

.stat_val {
    font-family: 'Noto Serif', serif;
    font-size: 32px;
    font-weight: 500;
    color: #1a2f3a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat_txt {
    font-size: 0.65rem;
    font-weight: 700;
    color: #bfa073;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .about_flex { flex-direction: column; gap: 60px; }
    .about_white_card { padding: 40px 20px; }
    .about_heading { font-size: 36px; }
    .about_stats_row { flex-wrap: wrap; gap: 30px; }
}

/* ===== HEADER / NAV ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(42px);
    -webkit-backdrop-filter: blur(42px);
    border: none;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    background: linear-gradient(to right, rgba(225, 212, 192, 0.95), rgba(255, 255, 255, 0.95), rgba(225, 212, 192, 0.95));
    backdrop-filter: blur(20px);
    border-bottom: none;
    box-shadow: none;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo img {
    height: 60px;
}
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
    flex-wrap: wrap;
}
.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: #6a747c;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #bfa073;
}
.contact-btn-nav {
    background: linear-gradient(90deg, #9b743e, #bfa073);
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    border: none;
    transition: all 0.2s;
}
.contact-btn-nav:hover {
    background: linear-gradient(90deg, #876230, #ab8d62);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 122, 75, 0.3);
}
.contact-btn-nav i {
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
    background: transparent;
    color: #1a2f3a;
    padding: 80px 0 0;
    margin-top: 40px;
    border-top: 1px solid #f0f4ec;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 2fr;
    gap: 20px;
    margin-bottom: 60px;
    align-items: start;
}
.footer-logo-col img {
    height: 65px;
}
.footer-logo-col p {
    font-size: 0.9rem;
    color: #6a747c;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 250px;
}
.footer-col h4 {
    color: #1a2f3a;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}
.footer-col a, .footer-col span {
    display: block;
    color: #6a747c;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #bfa073;
}
.insights-card {
    background: #f8f8f6;
    padding: 40px;
    border-radius: 4px;
}
.insights-card h4 {
    font-size: 1.4rem;
    font-family: serif;
    margin-bottom: 15px;
    color: #1a2f3a;
}
.insights-card p {
    font-size: 0.8rem;
    color: #6a747c;
    margin-bottom: 25px;
    line-height: 1.5;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.subscribe-form input {
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    background: transparent;
    font-size: 0.9rem;
    outline: none;
}
.subscribe-form button {
    background: #c5a059;
    color: white;
    border: none;
    padding: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.subscribe-form button:hover {
    background: #b08d4a;
}
.footer-bottom {
    background: #f8f8f6;
    padding: 25px 0;
    border-top: 1px solid #ecece8;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-socials {
    display: flex;
    gap: 20px;
}
.footer-socials a {
    color: #c5a059;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}
.footer-socials a:hover {
    opacity: 0.8;
}
.copyright-text {
    font-size: 0.8rem;
    color: #c5a059;
}
.global-edition {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #c5a059;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Refinements */
@media (max-width: 1024px) {
    .container { padding: 0 40px; }
    .hero_content h1 { font-size: 55px; line-height: 1.1; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    section { padding: 40px 0 !important; } /* Reduced Mobile Rhythm */
    
    /* Header (Matching Desktop Layout Requirement) */
    .navbar {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        gap: 0;
        background: rgba(255, 255, 255, 0.95); /* Better contrast on mobile */
        backdrop-filter: blur(10px);
    }
    .logo {
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }
    .logo img { height: 55px; } /* Enlarged for better branding visibility on mobile */

    .nav-links {
        display: none; 
    }

    /* Mobile Menu State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; /* height of navbar */
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 40px 20px;
        gap: 25px;
        align-items: center;
        z-index: 1000;
        animation: fadeInDown 0.3s ease forwards;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .nav-links.active a {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .nav-links.active .contact-btn-nav {
        margin-top: 20px;
        width: 80%;
        justify-content: center;
    }
    
    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile Middle Button */
    .contact-btn-mobile {
        display: flex;
        background: #775A19;
        color: #ffffff;
        text-decoration: none;
        font-size: 0.6rem;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 10px 18px;
        border-radius: 50px;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        margin-left: auto; /* Push as far right as possible */
        margin-right: 20px; /* Gap with hamburger */
        box-shadow: 0 4px 12px rgba(119, 90, 25, 0.15);
    }
    
    /* Mobile Hamburger Icon */
    .mobile-menu-icon {
        display: flex;
        flex-direction: column;
        gap: 5px;
        flex: initial; /* Reset expand to keep icon on far right */
        align-items: flex-end;
        cursor: pointer;
    }
    .mobile-menu-icon span {
        width: 24px;
        height: 2.5px;
        background: #775A19;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-icon.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Hero */
    .hero_section {
        padding: 40px 0 80px;
    }
    .hero_flex {
        flex-direction: column-reverse; /* Image on top as per design */
        text-align: left; /* Left aligned text as per design */
        gap: 50px;
    }
    .hero_content {
        margin-top: 80px; /* Space from the image/card above */
    }
    .hero_content h1 {
        font-size: 42px;
        line-height: 1.1;
        letter-spacing: -1.5px;
        margin-bottom: 30px;
        color: #1B1B1E;
    }
    .hero_content h1 i {
        color: #775A19;
    }
    .hero_content p {
        margin: 0 0 40px;
        font-size: 0.95rem;
        line-height: 1.6;
        color: #6a747c;
        max-width: 100%;
    }
    .hero_top {
        justify-content: flex-start;
        margin-bottom: 20px;
    }
    .hero_top .badge_text {
        color: #775A19;
    }
    .hero_btns {
        justify-content: flex-start;
        flex-direction: column;
        gap: 15px;
    }
    .hero_image_side {
        width: 100%;
        justify-content: center;
    }
    
    .image_container {
        position: relative;
        width: 100%;
        max-width: 400px;
    }
    .hero_main_img {
        width: 100%;
        border-top-left-radius: 40px;
        border-top-right-radius: 6px;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        object-fit: cover;
        height: 480px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .stats_card_overlay {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        background: #ffffff;
        padding: 30px 25px;
        border-radius: 12px;
        width: 85%;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        text-align: left;
        z-index: 5;
    }
    .stats_label {
        font-size: 0.65rem;
        font-weight: 700;
        color: #bfa073;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 12px;
    }
    .stats_num {
        font-size: 3.5rem;
        font-family: 'Noto Serif', serif;
        font-weight: 700;
        color: #775A19;
        line-height: 1;
        margin-bottom: 15px;
    }
    .stats_desc {
        font-size: 0.85rem;
        color: #6a747c;
        line-height: 1.5;
        margin: 0;
    }

    /* General Typography */
    h2 { font-size: 2rem !important; }
    
    /* Sections */
    .about-sec .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual-side {
        height: 300px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-logo-col p {
        max-width: 100%;
    }
    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
    }
    .insights-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero_content h1 { font-size: 32px; }
    .navbar { padding: 12px 15px; }
    .btn_gold, .btn_outline_hero { padding: 14px 24px; font-size: 0.8rem; }
}

i.fa, i.far, i.fas {
    margin-right: 4px;
}
