/* ===================================
   OPALUXE REALTY - STYLES
   Color Palette:
   - Warm Ivory: #FAF6F0
   - Antique Gold: #B8962E
   - Deep Sage Green: #6B7B5E
   - Deep Charcoal: #2C2C2C
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #FAF6F0;
    color: #2C2C2C;
    line-height: 1.7;
    overflow-x: hidden;
}

/* === FIXED NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    height: 72px;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 150, 46, 0.18);
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 16px rgba(184, 150, 46, 0.10);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo-diamond {
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.logo-primary {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700 !important;
    font-size: 20px;
    color: #B8960C !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 9px;
    color: #D4AF37 !important;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}

/* Logo icon - gold color */
.logo-diamond,
.logo-icon svg,
.logo-icon path {
    fill: #B8960C !important;
    stroke: #B8960C !important;
}

/* Navbar scrolled state - brighter gold */
.navbar-scrolled .logo-primary {
    color: #D4AF37 !important;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 8px;
}

.social-icon {
    color: #B8962E;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #2C2C2C;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #B8962E;
}

.nav-link-cta {
    border: 1px solid #B8962E;
    padding: 7px 20px;
    border-radius: 2px;
    color: #B8962E;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link-cta:hover {
    background: #B8962E;
    color: #FAF6F0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger-line {
    width: 22px;
    height: 1.5px;
    background: #2C2C2C;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 246, 240, 0.98);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 5vw;
    font-size: 36px;
    color: #2C2C2C;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 400;
    color: #2C2C2C;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #B8962E;
}

.mobile-menu-link-cta {
    border: 1px solid #B8962E;
    padding: 10px 30px;
    border-radius: 2px;
    color: #B8962E;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-link-cta:hover {
    background: #B8962E;
    color: #FAF6F0;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.08em;
}

.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #B8962E;
    margin-bottom: 2rem;
}

.section-label.centered {
    text-align: center;
}

/* === LAYOUT CONTAINERS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    width: 100%;
}

/* === HERO SECTION === */
.hero-section {
    min-height: 110vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 40px 0;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 20s ease-out;
    transform: scale(1);
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.05);
    visibility: visible;
}

.hero-italic {
    font-style: italic;
    font-weight: 300;
}

.hero-overlay-layer1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(44, 36, 28, 0.50) 0%, rgba(184, 150, 46, 0.15) 40%, rgba(20, 16, 12, 0.75) 100%);
    z-index: 1;
}

.hero-overlay-layer2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    padding-top: 120px;
    padding-bottom: 60px;
}

.brand-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brand-wordmark {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 3px 12px rgba(184, 150, 46, 0.7), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.brand-rule {
    width: 60px;
    height: 2px;
    background-color: #B8962E;
    margin: 0 auto 2rem;
}

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-subtext {
    font-size: 1.125rem;
    font-family: 'DM Sans', sans-serif;
    color: #FFFFFF;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1.5px solid #FFFFFF;
    background-color: transparent;
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #B8962E;
    color: #FAF6F0;
}

/* Hero Micro-stat Badges */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.stat-badge {
    background-color: #FAF6F0;
    border: 1px solid #B8962E;
    border-radius: 2px;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6B7B5E;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: #2C2C2C;
}

.stat-divider {
    width: 1px;
    height: 20px;
    background-color: #B8962E;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 8rem 0;
    background-color: #FAF6F0;
}

/* === PARTNERS SECTION === */
.partners-section {
    padding: 8rem 0;
    background-color: #F5F1E8;
}

.partners-subtext {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    text-align: center;
    color: #6B7B5E;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.partner-card {
    background-color: #FAF6F0;
    padding: 3rem 2rem;
    border: 1px solid rgba(184, 150, 46, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #B8962E 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(184, 150, 46, 0.2);
    border-color: #B8962E;
}

.partner-logo-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo {
    width: 100%;
    height: auto;
    max-height: 80px;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.08);
}

.partner-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7B5E;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-credentials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credential-card {
    background-color: #FAF6F0;
    border-left: 3px solid #B8962E;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.credential-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #B8962E;
    line-height: 1;
}

.credential-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2C2C2C;
    opacity: 0.8;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #2C2C2C;
}

.differentiators-card {
    border: 1px solid rgba(184, 150, 46, 0.2);
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.differentiator-item {
    margin-bottom: 2.5rem;
}

.differentiator-item:last-child {
    margin-bottom: 0;
}

.diff-icon {
    color: #B8962E;
    margin-bottom: 1rem;
}

.diff-label {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.diff-description {
    font-size: 0.9rem;
    color: #2C2C2C;
    opacity: 0.8;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 8rem 0;
    background-color: #F5F1E8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #FAF6F0;
    padding: 3rem 2rem;
    position: relative;
}

.service-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #B8962E;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.service-description {
    font-size: 0.95rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    font-size: 0.875rem;
    color: #2C2C2C;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-features li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #B8962E;
}

/* === MARKETS SECTION === */
.markets-section {
    padding: 8rem 0;
    background-color: #FAF6F0;
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 3rem;
}

.market-panel {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-right: 1px solid #B8962E;
    transition: all 0.6s ease;
}

.market-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, transparent 100%);
    z-index: 1;
}

.market-panel[data-market="chandigarh"] {
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?w=900&q=90&fit=crop&crop=center');
    background-position: center center;
    filter: brightness(0.88) saturate(1.1);
}

.market-panel[data-market="bali"] {
    background-image: url('./assets/images/bali.jpg');
    background-position: center 40%;
    filter: brightness(0.88) saturate(1.1);
}

.market-panel[data-market="dubai"] {
    background-image: url('./assets/images/dubai.jpg');
    background-position: center 30%;
    filter: brightness(0.88) saturate(1.1);
}

.market-panel:hover {
    filter: brightness(0.75) saturate(1.15);
    transform: scale(1.02);
}

.market-panel:last-child {
    border-right: none;
}

.market-panel-overlay-gold {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    transition: background 0.5s ease;
}

.market-panel-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 3;
    transition: background 0.5s ease;
}

.market-panel-content {
    position: relative;
    z-index: 4;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
}

.market-panel-rule {
    width: 40px;
    height: 1px;
    background-color: #B8962E;
    margin-bottom: 1rem;
}

.market-panel-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #FAF6F0;
    margin-bottom: 6px;
    transition: transform 0.5s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.market-panel:hover .market-panel-name {
    transform: translateY(-6px);
}

.market-panel-descriptor {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #FAF6F0;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* === GALLERY SECTION === */
.gallery-section {
    padding: 8rem 0;
    background-color: #F5F1E8;
}

.gallery-heading {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #2C2C2C;
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.gallery-container {
    position: relative;
    max-width: 100%;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 2rem 5vw;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    position: relative;
    width: 320px;
    height: 480px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-image {
    transform: scale(1.06);
}

.gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(30, 24, 18, 0.75) 0%, transparent 55%);
    z-index: 1;
}

.gallery-card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-card-hover-overlay {
    opacity: 1;
}

.gallery-hover-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    font-style: italic;
    color: #B8962E;
    letter-spacing: 0.08em;
}

.gallery-card-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    z-index: 3;
}

.gallery-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    color: #FAF6F0;
    margin-bottom: 4px;
}

.gallery-card-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #B8962E;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: 1px solid #B8962E;
    color: #B8962E;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.gallery-arrow:hover {
    background-color: #B8962E;
    color: #FAF6F0;
}

.gallery-arrow-left {
    left: 1rem;
}

.gallery-arrow-right {
    right: 1rem;
}

.gallery-disclaimer {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-style: italic;
    color: #6B7B5E;
    text-align: center;
    margin-top: 2rem;
}

/* === PROCESS SECTION === */
.process-section {
    padding: 8rem 0;
    background-color: #FAF6F0;
}

/* === FAQ SECTION === */
/* === FAQ SECTION === */
.faq-section {
    padding: 100px 120px;
    background: #FAF8F3;
}

.faq-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.35em;
    color: #B8960C;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 400;
    color: #1A1A1A;
    margin-bottom: 56px;
}

/* TABLE */
.faq-table {
    width: 100%;
    border-collapse: collapse;
    background: #FFFFFF;
    box-shadow: 0 2px 40px rgba(0,0,0,0.06);
}

/* HEADER ROW */
.faq-table thead tr {
    background: #1A1A1A;
}

.faq-table thead th {
    padding: 20px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #B8960C;
    text-align: left;
}

.faq-table thead th:first-child {
    width: 36%;
    border-right: 1px solid rgba(184,150,12,0.3);
}

/* BODY ROWS */
.faq-table tbody tr {
    border-bottom: 1px solid rgba(184,150,12,0.15);
    transition: background 0.25s ease;
}

.faq-table tbody tr:last-child {
    border-bottom: none;
}

.faq-table tbody tr:hover {
    background: rgba(184,150,12,0.04);
}

/* QUESTION CELL */
.faq-table tbody td:first-child {
    padding: 28px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    vertical-align: top;
    border-right: 1px solid rgba(184,150,12,0.15);
    line-height: 1.5;
}

/* ANSWER CELL */
.faq-table tbody td:last-child {
    padding: 28px 40px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #4A4A4A;
    vertical-align: top;
    line-height: 1.8;
}

/* MOBILE */
@media (max-width: 768px) {
    .faq-section { padding: 60px 24px; }
    .faq-heading { font-size: 32px; }
    .faq-table thead { display: none; }
    .faq-table tbody tr { display: block; margin-bottom: 1px; }
    .faq-table tbody td {
        display: block;
        width: 100%;
        border-right: none;
        padding: 20px 24px;
    }
    .faq-table tbody td:first-child {
        background: rgba(184,150,12,0.07);
        border-bottom: none;
        padding-bottom: 12px;
    }
    .faq-table tbody td:last-child {
        padding-top: 12px;
    }
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    border: 2px solid #B8962E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background-color: #FAF6F0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover .step-circle {
    background-color: #B8962E;
    transform: scale(1.05);
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #B8962E;
    transition: color 0.3s ease;
}

.process-step:hover .step-number {
    color: #FAF6F0;
}

.step-label {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
    color: #2C2C2C;
}

.step-description {
    font-size: 0.9rem;
    color: #2C2C2C;
    opacity: 0.8;
    max-width: 250px;
    margin: 0 auto;
}

.timeline-connector {
    flex: 0 0 100px;
    height: 1px;
    background-color: #B8962E;
    opacity: 0.4;
    margin-bottom: 80px;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 8rem 0;
    background-color: #F5F1E8;
}

.contact-form {
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2C2C2C;
    margin-bottom: 0.75rem;
}

.optional {
    font-weight: 400;
    text-transform: none;
    font-size: 0.75rem;
    opacity: 0.6;
    letter-spacing: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    padding: 1rem;
    border: 1px solid rgba(184, 150, 46, 0.3);
    background-color: #FAF6F0;
    color: #2C2C2C;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #B8962E;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1.25rem;
    background-color: #B8962E;
    color: #FAF6F0;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #9A7A25;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    background-color: #D4C9A8;
    cursor: not-allowed;
    transform: none;
}

.confidentiality-note {
    font-size: 0.9rem;
    font-style: italic;
    color: #2C2C2C;
    opacity: 0.7;
    text-align: center;
    margin-top: 2rem;
}

.contact-details {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(184, 150, 46, 0.2);
}

.contact-email {
    font-size: 1.125rem;
    font-weight: 500;
    color: #B8962E;
    margin-bottom: 0.5rem;
}

.contact-location {
    font-size: 0.95rem;
    color: #2C2C2C;
    opacity: 0.7;
}

.contact-whatsapp {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 150, 46, 0.2);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6B7B5E;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.whatsapp-link:hover {
    color: #B8962E;
    transform: translateX(5px);
}

.whatsapp-link svg {
    flex-shrink: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #B8962E 0%, #9A7A25 100%);
    color: #FAF6F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(184, 150, 46, 0.5);
    z-index: 45;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-4px);
    box-shadow: 0 12px 32px rgba(184, 150, 46, 0.7);
    background: linear-gradient(135deg, #9A7A25 0%, #B8962E 100%);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #FAF6F0;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 8px 24px rgba(184, 150, 46, 0.5);
    }
    50% {
        box-shadow: 0 8px 36px rgba(184, 150, 46, 0.8);
    }
    100% {
        box-shadow: 0 8px 24px rgba(184, 150, 46, 0.5);
    }
}

.whatsapp-float {
    animation: pulse-gold 2.5s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

.success-message {
    text-align: center;
    padding: 3rem;
    background-color: rgba(184, 150, 46, 0.1);
    border: 1px solid #B8962E;
    margin-top: 3rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.success-message.show {
    opacity: 1;
}

.success-message.hidden {
    display: none;
}

.success-message h3 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.success-message p {
    font-size: 1rem;
    color: #2C2C2C;
}

/* === FOOTER === */
.footer-section {
    padding: 5rem 0 2rem;
    background-color: #FAF6F0;
    color: #2C2C2C;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Brand */
.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo-icon {
    margin: 0 auto 1rem;
    display: block;
}

.footer-wordmark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #B8960C;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #D4AF37;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #B8962E 50%, transparent 100%);
    margin: 3rem 0;
    opacity: 0.3;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column {
    text-align: left;
}

.footer-column-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #B8962E;
    margin-bottom: 1.5rem;
}

/* Footer Links */
.footer-links-list,
.footer-contact-list,
.footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li,
.footer-contact-list li,
.footer-legal-list li {
    margin-bottom: 0.75rem;
}

.footer-link,
.footer-contact-link,
.footer-legal-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #2C2C2C;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.85;
}

.footer-link:hover,
.footer-contact-link:hover,
.footer-legal-link:hover {
    color: #B8962E;
    opacity: 1;
}

.footer-location {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #2C2C2C;
    opacity: 0.7;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 150, 46, 0.3);
    border-radius: 50%;
    color: #B8962E;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: #B8962E;
    color: #FAF6F0;
    border-color: #B8962E;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 150, 46, 0.15);
}

.footer-seo-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: #B8962E;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-copyright {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: #2C2C2C;
    opacity: 0.5;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-seo-tagline {
        font-size: 0.65rem;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered fade-in for sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-credentials {
        flex-direction: row;
        justify-content: space-between;
    }

    .credential-card {
        flex: 1;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .timeline-connector {
        display: none;
    }

    .markets-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .market-panel {
        height: 340px;
        border-right: none;
        border-bottom: 1px solid #B8962E;
    }

    .market-panel:last-child {
        border-bottom: none;
    }

    .market-panel-name {
        font-size: 2.5rem;
    }

    .gallery-arrow {
        display: none;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .brand-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-content {
        padding-top: 140px;
    }

    .hero-section {
        background-attachment: scroll;
        padding-top: 60px;
    }

    .navbar {
        height: 60px;
    }

    .logo-primary {
        font-size: 14px;
    }

/* === LEAD CAPTURE POP-UP === */
.lead-popup {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
}

.lead-popup.active {
    display: flex;
}

.lead-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.4s ease;
}

.lead-popup-content {
    position: relative;
    background: linear-gradient(135deg, #FAF6F0 0%, #F5F1E8 100%);
    border: 1px solid rgba(184, 150, 46, 0.3);
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem 2.5rem;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lead-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(184, 150, 46, 0.3);
    border-radius: 50%;
    font-size: 28px;
    color: #B8962E;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.lead-popup-close:hover {
    background: #B8962E;
    color: #FAF6F0;
    transform: rotate(90deg);
}

.lead-popup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lead-popup-icon {
    margin-bottom: 1rem;
}

.lead-popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: #2C2C2C;
    margin-bottom: 1rem;
}

.lead-popup-description {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2C2C2C;
    opacity: 0.8;
}

.lead-popup-form {
    margin-bottom: 2rem;
}

.lead-popup-form .form-group {
    margin-bottom: 1.25rem;
}

.lead-popup-form input,
.lead-popup-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(184, 150, 46, 0.3);
    background: #FFFFFF;
    color: #2C2C2C;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-popup-form input:focus,
.lead-popup-form select:focus {
    border-color: #B8962E;
    box-shadow: 0 0 0 3px rgba(184, 150, 46, 0.1);
}

.lead-popup-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #B8962E 0%, #9A7A25 100%);
    color: #FAF6F0;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lead-popup-submit:hover {
    background: linear-gradient(135deg, #9A7A25 0%, #B8962E 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 150, 46, 0.4);
}

.lead-popup-submit:active {
    transform: translateY(0);
}

.lead-popup-benefits {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(184, 150, 46, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: #2C2C2C;
}

.benefit-item svg {
    flex-shrink: 0;
}

.lead-popup-privacy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-style: italic;
    text-align: center;
    color: #6B7B5E;
    margin-top: 1rem;
}

/* Success state for popup */
.lead-popup-success {
    text-align: center;
    padding: 2rem;
}

.lead-popup-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: #B8962E;
    margin-bottom: 1rem;
}

.lead-popup-success p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
}

.download-guide-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #B8962E;
    color: #FAF6F0;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.download-guide-button:hover {
    background: #9A7A25;
    transform: translateY(-2px);
}


    .navbar-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-badge {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .stat-divider {
        display: none;
    }

    .about-credentials {
        flex-direction: column;
        gap: 1.5rem;
    }

    .credential-card {
        flex: none;
    }

    .section-heading {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .market-panel {
        height: 340px;
    }

    .market-panel-name {
        font-size: 2rem;
    }

    .gallery-heading {
        font-size: 2rem;
    }

    .gallery-scroll {
        padding: 2rem 1rem;
    }

    .container,
    .container-narrow {
        padding: 0 1.5rem;
    }

    .about-section,
    .services-section,
    .markets-section,
    .gallery-section,
    .process-section,
    .contact-section {
        padding: 5rem 0;
    }

    /* WhatsApp button mobile adjustments */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lead-popup-content {
        padding: 2rem 1.5rem;
    }

    .lead-popup-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.75rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .market-panel-name {
        font-size: 1.5rem;
    }

    .market-panel-descriptor {
        font-size: 0.95rem;
    }

    .step-label {
        font-size: 1.25rem;
    }

    .gallery-card {
        width: 280px;
        height: 420px;
    }
}


/* === FAQ MOBILE RESPONSIVE - CSS GRID VERSION === */
@media (max-width: 768px) {
    #faq > div[style*="grid-template-columns"] {
        display: block !important;
    }
    
    #faq > div[style*="grid-template-columns"] > div {
        display: block !important;
        width: 100% !important;
        border-right: none !important;
    }
    
    /* Header row on mobile */
    #faq > div[style*="background: #1A1A1A"] {
        display: none !important;
    }
    
    /* Question cells get gold background on mobile */
    #faq > div[style*="grid-template-columns"] > div:first-child {
        background: rgba(184,150,12,0.06) !important;
        padding: 20px 24px !important;
        font-weight: 600 !important;
    }
    
    /* Answer cells */
    #faq > div[style*="grid-template-columns"] > div:last-child {
        padding: 20px 24px !important;
    }
}
