/* ============================================
   Elite Marriage Bureau - Main Stylesheet
   EXACT original colors & styling from live site
   ============================================ */

:root {
    --primary: #BB5644;
    --primary-dark: #A34A3A;
    --gold: #D4AF37;
    --body-text: #626262;
    --heading-dark: #2D2E36;
    --heading-warm: #4E4540;
    --menu-color: #413732;
    --bg-light: #F6F6F6;
    --bg-lighter: #F8F8F8;
    --bg-cream: #FDF7F2;
    --bg-beige: #F0E1D4;
    --border-color: rgba(0, 0, 0, 0.08);
    --white: #ffffff;
    --grey-999: #999999;
    --grey-ccc: #CCCCCC;
    --grey-ddd: #DDDDDD;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --font-heading: 'Bodoni Moda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--body-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    background: var(--white);
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; }
h4, h5, h6 { font-family: var(--font-body); }

h1 { font-size: 80px; color: var(--primary); line-height: 72px; }
h2 { font-size: 38px; color: var(--heading-dark); line-height: 38px; }
h3 { font-size: 32px; color: var(--heading-warm); line-height: 42px; }
h5 { font-size: 20px; color: var(--white); line-height: 28px; font-weight: 400; }
h6 { font-size: 14px; color: var(--primary); line-height: 24px; letter-spacing: 1px; font-weight: 400; }

img { max-width: 100%; height: auto; }
.section-padding { padding: 80px 0; }
.section-bg-light { background: var(--bg-light); }

/* Buttons - EXACT original */
.btn {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    padding: 15px 30px;
    border-radius: 0;
    transition: var(--transition);
    font-size: 15px;
    text-transform: none;
    border: 1px solid var(--primary);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}
.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white) !important;
}
.btn-outline-light {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}
.btn-lg { font-size: 15px; padding: 15px 30px; }

/* --- REMOVED: Old Top Bar (merged into navbar) --- */

/* Navigation */
.main-navbar {
    padding: 10px 0;
    background: var(--white) !important;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--border-color);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
}
.brand-text {
    font-family: var(--font-body);
    font-size: 22px;
    color: var(--heading-warm);
}
.brand-highlight { color: var(--primary); }

/* Navbar mobile phone info */
.navbar-phone-mobile {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 5px;
}
.phone-mobile-link {
    color: var(--primary) !important;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}
.email-mobile-link {
    color: var(--body-text);
    font-size: 14px;
    text-decoration: none;
}
.email-mobile-link:hover {
    color: var(--primary);
}

/* Navbar secondary link for mobile */
.navbar-secondary-link {
    padding: 8px 20px 15px;
    border-top: 1px solid var(--border-color);
}
.secondary-link {
    font-size: 14px;
    color: var(--body-text);
    text-decoration: none;
    transition: var(--transition);
}
.secondary-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--menu-color);
    font-size: 20px;
    padding: 11px 5px 10px 20px;
    line-height: 19px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }

.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.dropdown-item {
    font-size: 15px;
    padding: 8px 20px;
    color: var(--body-text);
}
.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: #000;
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content { position: relative; z-index: 1; width: 100%; }

.hero-logo-bottom {
    position: absolute;
    right: 20px;
    bottom: 0;
    z-index: 1;
}

.hero-logo-bottom .hero-logo-img {
    height: 140px;
    width: auto;
}

@media (max-width: 991.98px) {
    .hero-logo-bottom { display: none; }
}

.hero-badge {
    color: #fff;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 400;
    color: #b8942f;
    line-height: 72px;
    margin-bottom: 0;
}
.hero-title-line { display: block; }
.hero-title-accent { color: #fff; }

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    color: #fff;
    line-height: 28px;
    margin-top: 10px;
}

.hero-cta { margin-top: 30px; }

.hero-experience {
    margin-top: 30px;
}
.hero-experience p {
    color: #fff;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 26px;
    margin: 0;
}
.hero-experience strong {
    color: #fff;
    display: block;
    font-size: 16px;
    font-weight: 400;
}

/* Hero Logo Image (right side) */
.hero-logo-img {
    max-width: 100%;
    height: auto;
    animation: heroLogoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(187, 86, 68, 0.3));
}
@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Section Titles */
.section-heading { text-align: center; margin-bottom: 50px; }

/* About Intro */
.about-intro { padding: 60px 0 80px; }
.mvv-section { padding: 60px 0; }
.mvv-card {
    background: var(--white);
    border: 1px solid #f0ebe3;
    border-radius: 4px;
    padding: 36px 28px;
    height: 100%;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.mvv-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(187, 86, 68, 0.1);
    transform: translateY(-4px);
}
.mvv-card-values { border-color: var(--primary); }
.mvv-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.mvv-icon i { font-size: 26px; color: #fff; }
.mvv-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-warm);
    margin-bottom: 14px;
}
.mvv-text { font-size: 15px; color: var(--body-text); line-height: 1.7; margin-bottom: 0; }
.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.mvv-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--body-text);
    line-height: 1.5;
}
.mvv-values-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.mvv-values-list li strong { color: var(--heading-warm); }
.about-intro-text .section-subtitle { margin-top: 0; }
.about-intro-text p { font-size: 16px; color: var(--body-text); line-height: 1.8; margin-bottom: 16px; }
.about-intro-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--primary), #d4af37);
    margin: 20px 0;
}
.about-intro-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--primary);
}
.about-intro-image { display: flex; justify-content: center; align-items: center; padding: 20px; }
.about-intro-image-frame {
    position: relative;
    width: 280px; height: 280px;
}
.about-intro-image-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.about-intro-icon { font-size: 80px; color: rgba(255,255,255,0.9); }
.about-intro-image-border {
    position: absolute; inset: -12px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    opacity: 0.3;
}
.section-subtitle {
    font-family: var(--font-body);
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 50px;
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--heading-dark);
    margin-bottom: 15px;
    line-height: 38px;
}

/* Clients Section - Horizontal Scroll with Navigation */
.clients-section { 
    padding: 60px 0 50px; 
    background: var(--white); 
    overflow: hidden; 
}

.client-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 10px;
}

.client-scroll-btn {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
    transition: var(--transition);
    opacity: 0.85;
    border-radius: 4px;
    flex-shrink: 0;
}

.client-scroll-btn:hover {
    opacity: 1;
    background: var(--primary-dark);
    transform: scale(1.05);
}

.client-scroll-container {
    flex: 1;
    overflow: hidden;
    padding: 15px 0;
    margin: 0 8px;
}

.client-scroll-track {
    display: flex;
    gap: 40px;
    width: max-content;
    transition: transform 0.5s ease;
}

.client-scroll-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    padding: 0 10px;
    transition: transform 0.3s ease;
}

.client-scroll-item:hover {
    transform: scale(1.08);
}

.client-scroll-item img {
    max-height: 250px;
    max-width: 250px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    padding: 10px;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease, border-color 0.3s ease;
}

.client-scroll-item:hover img {
    transform: scale(1.05);
}

/* About/Roots Section - BLACK bg matching live site */
.roots-section {
    padding: 80px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../images/elite-banner-bg.webp') center/cover no-repeat;
    text-align: center;
    color: #fff;
}
.roots-section .section-heading {
    margin-bottom: 30px;
}
.section-title-light {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--bg-cream);
    margin-bottom: 15px;
    line-height: 38px;
    font-weight: 400;
}
.roots-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 28px;
    margin-bottom: 50px;
}
/* Help Section */
.help-section { background: var(--white); padding: 120px 0; }
.help-title {
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--heading-warm);
    margin-bottom: 15px;
    line-height: 60px;
    font-weight: 400;
}
.help-heading {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--heading-dark);
    line-height: 44px;
    font-weight: 400;
}
.help-section-img {
    border-radius: 4px;
    margin-top: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.about-image { margin-bottom: 20px; }
.about-content { padding-top: 10px; }

/* Since 1998 */
.since-section { background: var(--white); padding: 80px 0; }
.since-badge {
    font-family: var(--font-body);
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.since-year {
    font-family: var(--font-heading);
    font-size: 80px;
    font-weight: 400;
    color: var(--gold);
    line-height: 72px;
    margin-bottom: 20px;
}
.since-img {
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.feature-box {
    padding: 30px;
    background: var(--bg-light);
    height: 100%;
    margin-bottom: 50px;
}
.feature-box h3 {
    font-family: var(--font-heading);
    color: var(--heading-warm);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 42px;
}
.feature-box p {
    font-size: 16px;
    color: var(--body-text);
    line-height: 24px;
    margin: 0;
}

/* Promises - BLACK bg matching live site */
.promises-section-dark {
    padding: 130px 0 160px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../images/elite-success-stories-bg.webp') center/cover no-repeat;
    background-attachment: fixed;
}
.promises-section-dark .section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.section-subtitle-light {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.promise-card-dark {
    text-align: center;
    padding: 40px 25px;
    height: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}
.promise-card-dark:hover {
    background: rgba(255, 255, 255, 0.10);
}
.promise-card-dark h5 {
    font-size: 20px;
    color: #fff;
    line-height: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}
.promise-card-dark p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 24px;
    margin: 0;
}
.promise-number-dark {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 400;
    color: #D4AF37;
    opacity: 0.85;
    margin-bottom: 10px;
    line-height: 1;
}

/* Best Section */
.best-section {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}
.best-section-img {
    border-radius: 4px;
    margin-bottom: 30px;
}
.best-hr {
    border-top: 1px solid var(--border-color);
    margin: 20px auto;
}
.best-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--heading-warm);
    line-height: 42px;
}
.best-section h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--heading-warm);
    line-height: 42px;
}

/* FAQ Section */
.faq-section { padding: 80px 0 80px; background: var(--bg-light); }
.faq-section .section-heading h1 { margin-top: 80px; }
.accordion-item { border: none; border-radius: 0 !important; background: transparent; }
.accordion-button {
    font-family: var(--font-body);
    font-weight: 400; color: var(--heading-warm);
    padding: 18px 25px; font-size: 20px;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0 !important;
}
.accordion-button:not(.collapsed) { color: var(--primary); background: transparent; box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: var(--border-color); }
.accordion-button::after {
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    content: '\2b'; background: none;
    font-size: 18px; color: var(--primary);
}
.accordion-button:not(.collapsed)::after { content: '\f068'; transform: none; background-image: none; }
.accordion-body { padding: 20px 25px; color: var(--body-text); font-size: 16px; line-height: 24px; }

/* Footer - white bg, warm brown text */
.site-footer { background: var(--white); color: var(--heading-warm); border-top: 1px solid var(--border-color); }
.footer-top-cta {
    background: var(--bg-light);
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}
.footer-tagline { font-size: 16px; color: var(--body-text); line-height: 24px; }
.footer-main { padding: 60px 0 40px; background: var(--white); }
.footer-heading {
    font-size: 20px; color: var(--heading-warm);
    margin-bottom: 20px; line-height: 28px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--heading-warm); font-size: 17.6px; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 15px; font-size: 16px; color: var(--heading-warm); }
.footer-contact-item i { color: var(--primary); margin-top: 4px; width: 16px; }
.footer-contact-item a { color: var(--heading-warm); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
    background: var(--white); padding: 20px 0;
    font-size: 16px; border-top: 1px solid var(--border-color);
    color: var(--heading-warm);
}
.footer-bottom p { color: var(--heading-warm); margin: 0; }
.footer-bottom a { color: var(--heading-warm); }
.footer-bottom a:hover { color: var(--primary); }
.footer-social a {
    display: inline-block; margin-left: 10px;
    color: var(--heading-warm); font-size: 18px;
}
.footer-social a:hover { color: var(--primary); }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 45px; height: 45px;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; z-index: 999;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); color: var(--white); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 30px;
    width: 55px; height: 55px;
    background: var(--gold); color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; z-index: 999;
    box-shadow: 0 4px 10px rgba(212,175,55,0.4);
    transition: var(--transition);
}
.whatsapp-float:hover { background: #B8942F; color: var(--white); transform: scale(1.1); }

/* Cookie Consent */
.cookie-consent {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #000; padding: 15px 0; z-index: 1050;
    display: none;
}
.cookie-consent.show { display: block; }
.cookie-img { width: 40px; }
.cookie-text { color: rgba(255,255,255,0.8); font-size: 14px; }
.cookie-text a { color: var(--primary); text-decoration: underline; }

/* Exit Popup */
.exit-popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); z-index: 9999;
    display: none; align-items: center; justify-content: center; padding: 20px;
}
.exit-popup-overlay.show { display: flex; }
.exit-popup {
    background: var(--white); padding: 50px 40px;
    max-width: 550px; width: 100%; text-align: center;
    position: relative; animation: popupZoomIn 0.4s ease;
}
@keyframes popupZoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.exit-popup-close {
    position: absolute; top: 15px; right: 20px;
    background: none; border: none; font-size: 30px; color: var(--grey-999); cursor: pointer;
}
.exit-popup-close:hover { color: var(--heading-warm); }
.exit-popup-subtitle {
    font-family: var(--font-body); color: var(--primary);
    font-size: 14px; letter-spacing: 1px; margin-bottom: 10px;
}
.exit-popup-title {
    font-family: var(--font-heading); font-size: 38px;
    color: var(--heading-dark); margin-bottom: 15px; line-height: 38px;
}
.exit-popup-text { color: var(--body-text); margin-bottom: 25px; font-size: 16px; }
.exit-popup-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.exit-popup-buttons .btn-success {
    background: var(--gold); border-color: var(--gold); border-radius: 9999px;
}
.exit-popup-buttons .btn-success:hover { background: #B8942F; border-color: #B8942F; }
.exit-popup-buttons .btn-outline-secondary {
    background: var(--bg-lighter); border: none; color: var(--body-text); border-radius: 9999px;
}
.exit-popup-brand { margin-top: 20px; color: var(--grey-999); font-size: 13px; }

/* Page Hero - black bg */
.page-hero { background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('../images/default-hero.jpg') center/cover no-repeat; min-height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 0; }
.page-hero h1 { color: #D4AF37; font-size: 80px; line-height: 72px; margin-bottom: 10px; }
.page-hero p { color: #fff; font-size: 20px; line-height: 28px; }

.breadcrumb-nav { padding: 10px 0; background: var(--white); border-bottom: 1px solid var(--border-color); }
.breadcrumb-nav a { color: var(--body-text); font-size: 16px; }
.breadcrumb-nav a:hover { color: var(--primary); }
.breadcrumb-nav .separator { margin: 0 8px; color: var(--grey-ccc); }
.breadcrumb-nav .current { color: var(--primary); font-size: 16px; }

/* Team Card */
.team-card { text-align: center; margin-bottom: 30px; }
.team-card-body { padding: 25px 20px; }
.team-card-body h5 {
    font-size: 20px; color: var(--heading-warm); line-height: 28px; margin-bottom: 5px;
}
.team-role { color: var(--primary); font-size: 14px; margin-bottom: 10px; }
.team-card-body p { font-size: 16px; color: var(--body-text); line-height: 24px; margin: 0; }

/* New Team Card Layout */
.team-card-new {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 25px;
    height: 100%;
    align-items: flex-start;
}
.team-photo-wrap {
    flex-shrink: 0;
    width: 150px;
    overflow: visible;
}
.team-photo-wrap img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.team-photo-wrap img:hover {
    transform: scale(2.0);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    z-index: 10;
    border-radius: 8px;
}
.team-info { flex: 1; min-width: 0; }
.team-name {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--heading-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}
.team-info .team-role {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
}
.team-desc {
    font-size: 15px;
    color: var(--body-text);
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 767.98px) {
    .team-card-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .team-photo-wrap { width: 120px; }
    .team-photo-wrap img { width: 120px; height: 120px; }
}

/* Founder Photo */
.founder-photo {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
@media (max-width: 991.98px) {
    .founder-photo { width: 220px; height: 220px; }
}

/* Contact */
.contact-info-card {
    padding: 30px; text-align: center;
    margin-bottom: 30px; border: 1px solid var(--border-color);
}
.contact-info-card i { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
.contact-info-card h5 { font-size: 20px; color: var(--heading-warm); line-height: 28px; margin-bottom: 10px; }
.contact-info-card p { font-size: 16px; color: var(--body-text); margin: 0; }
.contact-form-wrapper {
    padding: 40px; border: 1px solid var(--border-color);
}
.contact-form-wrapper h3 {
    font-family: var(--font-heading); font-size: 32px;
    color: var(--heading-warm); line-height: 42px;
}
.contact-form-wrapper .form-control {
    border: 1px solid var(--grey-ddd); border-radius: 0;
    padding: 12px 15px; font-size: 16px;
}
.contact-form-wrapper .form-control:focus {
    border-color: var(--primary); box-shadow: none; outline: 1px solid var(--primary);
}
.map-container iframe { width: 100%; height: 400px; border: none; }

/* Why Us */
.why-us-feature {
    text-align: center; padding: 40px 25px;
    height: 100%; border: 1px solid var(--border-color);
}
.why-us-feature:hover { background: var(--bg-light); }
.why-us-feature .icon-wrapper {
    width: 80px; height: 80px;
    background: var(--bg-beige); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 32px; color: var(--primary);
    transition: var(--transition);
    overflow: hidden;
}
.why-us-feature .icon-wrapper .feature-icon-img {
    width: 48px; height: 48px;
    object-fit: contain;
}
.why-us-feature:hover .icon-wrapper { background: var(--primary); color: #fff; }
.why-us-feature h5 { font-size: 20px; color: var(--heading-warm); line-height: 28px; margin-bottom: 12px; }
.why-us-feature p { font-size: 16px; color: var(--body-text); line-height: 24px; margin: 0; }

/* Stats - premium cards */
.stats-section {
    position: relative;
    overflow: hidden;
    padding: 220px 0;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 42%),
        linear-gradient(180deg, #d7d7d7 0%, #c7c7c7 100%);
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
    pointer-events: none;
}
.stats-section .row {
    position: relative;
    z-index: 1;
}
/* Card — glass card with stacked number + label */
.stats-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.stats-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.34);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}
.stats-number {
    font-size: 52px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 90px;
}
.stats-label {
    color: var(--heading-warm);
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
    text-align: center;
}

/* Services */
.service-card {
    padding: 35px 25px; text-align: center;
    height: 100%; border: 1px solid var(--border-color);
}
.service-card:hover { background: var(--bg-light); border-color: var(--primary); }
.service-card i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.service-card h5 { font-size: 20px; color: var(--heading-warm); line-height: 28px; margin-bottom: 12px; }
.service-card p { font-size: 16px; color: var(--body-text); line-height: 24px; margin: 0; }

/* Steps */
.step-card { text-align: center; padding: 30px 20px; border: 1px solid #e9ecef; }
.step-number {
    width: 60px; height: 60px; background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-family: var(--font-heading);
    margin: 0 auto 20px;
}
.step-card h5 { font-size: 20px; color: var(--heading-warm); line-height: 28px; margin-bottom: 10px; }
.step-card p { font-size: 16px; color: var(--body-text); line-height: 24px; margin: 0; }

/* Success Stories */
.story-card { margin-bottom: 30px; border: 1px solid var(--border-color); overflow: hidden; position: relative; }
.story-card:hover { background: var(--bg-light); border-color: #d4af37; }
.story-card .img-fluid { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, height 0.4s ease; height: 260px; }
.story-card:hover .img-fluid {
    transform: scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    object-fit: contain;
}
.story-card-body { padding: 25px; }
.story-card-body h5 { font-size: 20px; color: var(--heading-warm); line-height: 28px; }
.story-card-body p { font-size: 14px; color: var(--body-text); line-height: 22px; margin-bottom: 0.5rem; }
.story-card-body .story-detail i { color: var(--primary); width: 16px; text-align: center; min-width: 16px; }
.story-card-body .story-pair { font-size: 13px; color: var(--body-text); }
.story-card-body .story-pair strong { color: var(--heading-warm); }

/* Career */
.career-card {
    padding: 25px; height: 100%; border: 1px solid var(--border-color);
}
.career-card:hover { background: var(--bg-light); border-color: var(--primary); }
.career-card h5 { font-size: 20px; color: var(--heading-warm); line-height: 28px; margin-bottom: 8px; }
.career-card p { font-size: 16px; color: var(--body-text); line-height: 24px; margin: 0; }

/* Content Pages */
.content-page { padding: 60px 0; background: var(--white); }
.content-page h2 {
    font-family: var(--font-heading); font-size: 38px;
    color: var(--heading-dark); margin-top: 30px; margin-bottom: 15px; line-height: 38px;
}
.content-page h3 {
    font-family: var(--font-heading); font-size: 32px;
    color: var(--heading-warm); margin-top: 25px; margin-bottom: 12px; line-height: 42px;
}
.content-page p { margin-bottom: 15px; line-height: 24px; font-size: 16px; }
.content-page ul { margin-bottom: 15px; padding-left: 20px; }
.content-page ul li { margin-bottom: 8px; line-height: 24px; }

/* Client Grid */
.client-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; padding: 40px 0; }
.client-grid-item {
    display: flex; align-items: center; justify-content: center;
    width: 150px; height: 100px; padding: 15px;
    border: 1px solid var(--border-color);
}
.client-grid-item:hover { border-color: var(--primary); }
.client-grid-item img {
    max-height: 200px; max-width: 100%;
    filter: grayscale(100%); opacity: 0.5;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.35s ease, opacity 0.35s ease;
}
.client-grid-item:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.6); }

/* Legal Tabs */
.legal-tabs .nav-link {
    color: var(--heading-warm); font-weight: 400;
    border: none; padding: 12px 20px; margin-bottom: 5px;
    border-radius: 0; font-size: 16px;
}
.legal-tabs .nav-link:hover { background: var(--bg-light); color: var(--primary); }
.legal-tabs .nav-link.active { background: var(--primary); color: #fff; }

/* Pagination */
.pagination { justify-content: center; margin-top: 30px; }
.pagination .page-link {
    color: var(--body-text); border: 1px solid var(--border-color);
    padding: 10px 16px; margin: 0 3px; font-size: 16px; border-radius: 0;
}
.pagination .page-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* CTA - black bg */
.cta-section {
    padding: 150px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('../images/elite-banner-bg.webp') center/cover no-repeat;
    background-attachment: fixed;
}
.cta-section h2 {
    font-family: var(--font-heading); color: #fff;
    font-size: 38px; margin-bottom: 15px; line-height: 38px;
}
.cta-section p { opacity: 0.9; font-size: 20px; margin-bottom: 25px; line-height: 28px; }

/* Service Links Bar - black */
.service-links-bar { background: #000; padding: 100px 0; }
.service-links-bar a { color: rgba(255,255,255,0.6); font-size: 14px; white-space: nowrap; }
.service-links-bar a:hover { color: #fff; }
.service-links-bar .separator { color: rgba(255,255,255,0.2); margin: 0 8px; }

/* Stat Box */
.stat-box { text-align: center; padding: 30px; background: var(--bg-light); }
.stat-box h2 {
    font-family: var(--font-heading); color: var(--primary);
    font-size: 80px; line-height: 72px;
}
.stat-box h6 { color: var(--body-text); font-size: 16px; }

/* Section Separator — half-overlaid between sections */
.section-separator {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: -55px;
    margin-bottom: -55px;
    line-height: 0;
}
.section-separator img {
    display: inline-block;
    width: 100px;
    height: auto;
}

/* === Responsive === */
@media (max-width: 1199px) {
    h1, .hero-title, .page-hero h1 { font-size: 60px; line-height: 54px; }
}
@media (max-width: 991px) {
    h1, .hero-title, .page-hero h1 { font-size: 50px; line-height: 46px; }
    h2, .section-title { font-size: 32px; line-height: 34px; }
    .stats-section { padding: 155px 0; }
    .stats-card { gap: 14px; padding: 22px 16px; }
    .stats-number { font-size: 42px; min-width: 72px; }
    .stats-label { font-size: 16px; line-height: 21px; }
    .navbar-nav .nav-link { font-size: 18px; }
    .since-year { font-size: 60px; line-height: 54px; }
    .exit-popup-title { font-size: 32px; line-height: 34px; }
}
@media (max-width: 767px) {
    .hero-section { min-height: auto; padding: 80px 0; }
    h1, .hero-title, .page-hero h1 { font-size: 42px; line-height: 40px; }
    h2, .section-title { font-size: 28px; line-height: 30px; }
    h3 { font-size: 26px; line-height: 34px; }
    .section-padding { padding: 50px 0; }
    .since-year { font-size: 50px; line-height: 46px; }
    .service-links-bar { display: none; }
    .exit-popup-title { font-size: 28px; line-height: 30px; }
    .contact-form-wrapper { padding: 25px; }
    .client-grid-item { width: 120px; height: 80px; }
    .stats-section { padding: 145px 0; }
    .stats-card { gap: 16px; padding: 20px 18px; }
    .stats-number { font-size: 40px; min-width: 78px; }
    .stats-label { font-size: 16px; line-height: 21px; }
    .stat-box h2 { font-size: 50px; line-height: 46px; }
}
@media (max-width: 575px) {
    h1, .hero-title, .page-hero h1 { font-size: 36px; line-height: 34px; }
    h2, .section-title { font-size: 24px; line-height: 26px; }
    .top-bar-right { display: none; }
    .navbar-nav .nav-link { font-size: 16px; padding: 8px 15px; }
    .client-grid-item { width: 100px; height: 70px; }
    .client-grid-item img { max-height: 120px; }
    .hero-experience p { font-size: 16px; }
    .stats-section { padding: 140px 0; }
    .stats-card { gap: 14px; padding: 18px 16px; }
    .stats-number { font-size: 36px; min-width: 68px; }
    .stats-label { font-size: 15px; line-height: 20px; }
}

/* ============================================
   🚀 ENHANCED HEADER — Scroll Progress, Hamburger, Search, Dropdown Hover
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 8px rgba(187, 86, 68, 0.4);
}

/* --- Top Announcement Bar --- */
.top-announcement-bar {
    background: #faf7f2;
    color: #333;
    font-size: 14px;
    padding: 8px 0;
    position: relative;
    z-index: 1031;
    border-bottom: 1px solid var(--gold, #c9a84c);
}
.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    text-align: center;
}
.announcement-badge {
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.announcement-text {
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    min-height: 1.4em;
    display: inline-block;
}
.announcement-line {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    pointer-events: none;
}
.announcement-line.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
@media (max-width: 575px) {
    .announcement-content {
        font-size: 12px;
        gap: 6px;
    }
    .announcement-line {
        white-space: normal;
    }
}

/* --- Hamburger Toggle (Bars Icon) --- */
.hamburger-toggle {
    border: none !important;
    padding: 8px !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--menu-color);
    font-size: 22px;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}
.hamburger-toggle:focus {
    box-shadow: none !important;
    outline: none;
}
.hamburger-toggle:hover {
    color: var(--primary);
}

/* --- Navbar Actions (search + toggle row) --- */
.navbar-actions {
    gap: 12px !important;
}
.nav-call-btn {
    background: var(--primary);
    color: #fff !important;
    font-size: 14px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-weight: 500;
}
.nav-call-btn:hover {
    background: var(--primary-dark);
    color: #fff !important;
    transform: scale(1.05);
}
.nav-call-btn i {
    font-size: 14px;
}

/* --- Offcanvas Navigation Drawer --- */
.offcanvas.offcanvas-end {
    width: 320px;
    background: var(--white);
    border-left: 1px solid var(--border-color);
}
.offcanvas.offcanvas-end .offcanvas-header {
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
}
.offcanvas.offcanvas-end .offcanvas-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--heading-warm);
}
.offcanvas.offcanvas-end .offcanvas-title .brand-highlight {
    color: var(--primary);
}
.offcanvas.offcanvas-end .btn-close:focus {
    box-shadow: none;
}
.offcanvas.offcanvas-end .offcanvas-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}
.offcanvas.offcanvas-end .navbar-nav {
    flex-direction: column;
    gap: 4px;
}
.offcanvas.offcanvas-end .nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--heading-warm);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}
.offcanvas.offcanvas-end .nav-link:hover,
.offcanvas.offcanvas-end .nav-link.active {
    background: rgba(187, 86, 68, 0.08);
    color: var(--primary);
}
.offcanvas.offcanvas-end .offcanvas-contact {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.offcanvas.offcanvas-end .offcanvas-phone-link,
.offcanvas.offcanvas-end .offcanvas-email-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--body-text);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}
.offcanvas.offcanvas-end .offcanvas-phone-link:hover,
.offcanvas.offcanvas-end .offcanvas-email-link:hover {
    background: rgba(187, 86, 68, 0.06);
    color: var(--primary);
}
.offcanvas.offcanvas-end .offcanvas-phone-link i,
.offcanvas.offcanvas-end .offcanvas-email-link i {
    width: 20px;
    color: var(--primary);
    font-size: 16px;
}

/* --- Navbar Shrink on Scroll --- */
.main-navbar {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.main-navbar.navbar-shrink .navbar-brand {
    padding: 8px 0;
}
.main-navbar.navbar-shrink .brand-logo {
    height: 36px;
    transition: height 0.3s ease;
}
.main-navbar.navbar-shrink .brand-text {
    font-size: 19px;
    transition: font-size 0.3s ease;
}
.main-navbar.navbar-shrink .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* --- Dropdown Hover for Desktop (>=992px) --- */
@media (min-width: 992px) {
    .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown > .dropdown-toggle:active {
        pointer-events: none;
    }
    .dropdown-menu-animated {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        pointer-events: none;
    }
    .dropdown:hover .dropdown-menu-animated {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(4px);
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-overlay-content {
    width: 90%;
    max-width: 650px;
    text-align: center;
    transform: translateY(-20px);
    transition: transform 0.4s ease;
}
.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}
.search-overlay-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 48px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    line-height: 1;
}
.search-overlay-close:hover {
    opacity: 1;
    color: var(--primary);
    transform: rotate(90deg);
}
.search-overlay-form {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s ease;
}
.search-overlay-form:focus-within {
    border-bottom-color: var(--primary);
}
.search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 32px;
    padding: 20px 10px 20px 0;
    font-family: var(--font-body);
}
.search-overlay-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.search-overlay-submit {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}
.search-overlay-submit:hover {
    transform: translateX(4px);
    color: var(--gold);
}

/* --- Animated Dropdown Items --- */
.dropdown-menu-animated .dropdown-item {
    position: relative;
    padding-left: 25px;
    transition: padding-left 0.2s ease, color 0.2s ease;
}
.dropdown-menu-animated .dropdown-item:hover {
    padding-left: 32px;
}
.dropdown-menu-animated .dropdown-item::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.2s ease;
}
.dropdown-menu-animated .dropdown-item:hover::before {
    width: 8px;
}

@media (max-width: 991.98px) {
    .search-overlay-input {
        font-size: 22px;
    }
    .search-overlay-close {
        top: 20px;
        right: 20px;
        font-size: 36px;
    }
}

/* ============================================
   🎯 LIVE SITE MATCH — Secondary Nav & Phone Button
   ============================================ */

/* --- REMOVED: Old phone button (merged into navbar) --- */

/* --- REMOVED: Old secondary nav (merged into navbar) --- */
