 /* --- Embedded CSS (style.css contents) --- */
 :root {
     --color-dark-bg: #111111;
     --color-surface-dark: #1f1f1f;
     --color-text-light: #ffffff;
     --color-text-medium: #bbbbbb;
     --color-accent-blue: #007bff;
     /* Primary CTA blue */
     --color-accent-gold: #ffc107;
     --font-primary: 'Montserrat', sans-serif;
     --font-secondary: 'Oswald', sans-serif;
     --section-padding: 60px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: var(--font-primary);
     background-color: var(--color-dark-bg);
     color: var(--color-text-medium);
     line-height: 1.6;
 }

 a {
     color: var(--color-text-light);
     text-decoration: none;
     transition: color 0.3s;
 }

 h2 {
     font-family: var(--font-secondary);
     font-size: 3.5rem;
     color: var(--color-text-light);
     line-height: 1.1;
 }

 h3.section-title {
     /* font-family: var(--font-secondary); */
     font-size: 1.2rem;
     color: var(--color-text-light);
     /* border-bottom: 2px solid var(--color-accent-blue); */
     display: inline-block;
     padding-bottom: 5px;
     margin-bottom: 25px;
 }

 /* --- Navigation Bar --- */
 /* ====== Existing Desktop Code (NO CHANGE) ====== */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 50px;
     background: transparent;
     border-bottom: 1px solid var(--color-surface-dark);
     position: sticky;
     top: 0;
     backdrop-filter: blur(15px);
     z-index: 1000;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo-icon {
     font-size: 2rem;
     color: var(--color-accent-gold);
     margin-right: 10px;
 }

 .logo-text h1 {
     font-size: 1.2rem;
     margin: 0;
     line-height: 1;
     font-family: var(--font-secondary);
 }

 .logo-text p {
     font-size: 0.6rem;
     margin: 0;
     color: var(--color-text-medium);
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .nav-links a {
     margin-left: 25px;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 700;
 }

 .menu-icon {
     display: none;
     /* Hide in desktop view */
     cursor: pointer;
     font-size: 1.8rem;
     color: var(--color-accent-gold);
 }


 /* ====== Mobile Responsive Code (NEW) ====== */
 @media (max-width: 768px) {
     .menu-icon {
         display: block;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 95px;
         left: 0;
         width: 100%;
         background-color: var(--color-dark-bg);
         text-align: center;
         flex-direction: column;
         padding: 20px 0;
         border-top: 1px solid var(--color-surface-dark);
         z-index: 999;
     }

     .nav-links.active {
         display: flex;
         animation: slideDown 0.3s ease-in-out;
     }

     .nav-links a {
         margin: 10px 0;
         font-size: 0.95rem;
     }

     @keyframes slideDown {
         from {
             opacity: 0;
             transform: translateY(-10px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }
 }

 /* --- Hero Area --- */
 .hero-area {
     position: relative;
     height: 600px;
     top: -85px;
     /* Adjust as needed */
     display: flex;
     align-items: center;
     padding-left: 50px;
     /* Placeholder for background image */
     background: url('../images/banner-img.jpg') no-repeat center center/cover;
 }


 .hero-bg-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.6);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 600px;
     color: var(--color-text-light);
 }

 .hero-content h2 {
     margin-bottom: 20px;
 }

 .hero-content p {
     font-size: 1.1rem;
     margin-bottom: 30px;
 }

 .cta-buttons a {
     padding: 10px 25px;
     border-radius: 3px;
     font-weight: 700;
     text-transform: uppercase;
     margin-right: 15px;
     transition: background-color 0.3s;
     margin: 5px;
 }

 .btn.primary {
     background-color: #f5c067;
     color: var(--color-text-light);
     border: 2px solid #f5c067;
 }

 .btn.secondary {
     background-color: transparent;
     color: white;
     border: 2px solid white;
 }

 .btn.primary:hover {
     background-color: #0056b3;
     border-color: #0056b3;
 }

 .btn.secondary:hover {
     background-color: var(--color-accent-blue);
     color: var(--color-text-light);
 }

 /* --- Main Content Grid Layout --- */
 .content-grid {
     display: grid;
     grid-template-columns: 2fr 1.5fr;
     /* Matches the visual weight in the image */
     gap: 40px;
     padding: 50px 50px 100px 50px;
 }

 .left-column,
 .right-column {
     display: flex;
     flex-direction: column;
     gap: 0px;
     /* Space between the main sections in each column */
 }

 .section {
     padding-bottom: 40px;
 }

 .section:last-child {
     border-bottom: none;
 }

 .intro-text {
     margin-bottom: 20px;
     font-size: 0.95rem;
 }

 /* --- About Us Section --- */
 .specialties-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 30px;
 }

 .specialty-item {
     text-align: center;
     font-size: 0.8rem;
     padding: 15px 5px;
     background-color: var(--color-surface-dark);
     border-radius: 5px;
     font-weight: 700;
 }

 .specialty-item span {
     display: block;
     font-size: 1.5rem;
     color: var(--color-accent-gold);
     margin-bottom: 5px;
 }

 .description-text {
     font-size: 0.9rem;
 }

 /* --- Mission & Vision Section --- */
 .mission-vision-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .mv-card {
     background-color: var(--color-surface-dark);
     padding: 25px;
     /* border-left: 3px solid var(--color-accent-blue); */
     text-align: center;
     border: 1px solid #4c4c4c;

 }

 .mv-card h4 {
     /* font-family: var(--font-secondary); */
     font-size: 1.2rem;
     color: var(--color-text-light);
     margin-bottom: 10px;
 }

 .mv-card p {
     font-size: 0.85rem;
 }

 /* --- Producer Tiers Section --- */
 .tier-grid {
     display: grid;
     /* grid-template-columns: repeat(4, 1fr); */
     gap: 15px;
     margin-top: 20px;
 }

 .tier-card {
     background-color: var(--color-surface-dark);
     padding: 20px 10px;
     text-align: center;
     border-radius: 5px;
     cursor: pointer;
     margin: 5px 0;
     transition: background-color 0.3s;
 }

 .tier-card:hover {
     background-color: #333;
 }

 .tier-card span {
     font-size: 2rem;
     display: block;
     margin-bottom: 5px;
 }

 .tier-card h4 {
     font-family: var(--font-secondary);
     font-size: 1rem;
     color: var(--color-text-light);
     margin-bottom: 5px;
 }

 .tier-card p {
     font-size: 0.75rem;
 }

 /* --- Join the Movement --- */
 .section.join-movement {
     text-align: center;
     background-color: var(--color-surface-dark);
     padding: 40px;
     border-radius: 5px;
 }

 .join-movement p {
     margin-bottom: 15px;
 }

 .join-movement .cta-buttons a {
     margin: 0 10px;
 }

 .tagline {
     font-family: var(--font-secondary);
     font-size: 1.5rem;
     color: var(--color-accent-gold);
     margin-top: 20px;
 }

 /* --- Projects & Expertise Section --- */
 .project-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     margin-top: 20px;
 }

 .project-card {
     position: relative;
     overflow: hidden;
     height: 150px;
     /* Fixed height for image consistency */
 }

 .project-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     /* Placeholder styling */
     background-color: #444;
 }

 .project-card p {
     position: absolute;
     bottom: -16px;
     left: 0;
     right: 0;
     background: rgb(17 17 17 / 94%);
     color: var(--color-text-light);
     padding: 5px;
     font-size: 0.7rem;
     text-align: center;
     opacity: 1;
     transition: opacity 0.3s;
 }

 /* --- Producer Circle Section --- */
 .producer-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .producer-feature {
     font-size: 0.9rem;
     color: var(--color-text-light);
     margin-bottom: 10px;
     font-weight: 700;
     position: relative;
     z-index: 11;
 }

 .producer-feature span {
     color: var(--color-accent-gold);
     margin-right: 5px;
 }

 .producer-image {
     width: 100%;
     height: auto;
     margin-top: 15px;
     border-radius: 5px;
     /* Placeholder styling */
     background-color: #444;
     height: 150px;
     object-fit: cover;
 }

 .producer-right h4 {
     font-family: var(--font-secondary);
     font-size: 1.1rem;
     color: var(--color-text-light);
     margin-bottom: 15px;
 }

 .benefit-item {
     font-size: 0.85rem;
     margin-bottom: 10px;
 }

 .benefit-item span {
     color: var(--color-accent-blue);
     margin-right: 5px;
     font-weight: 700;
 }

 /* --- Events & Experiences Section --- */
 .events-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     margin-top: 20px;
 }

 .events-grid img {
     width: 100%;
     height: 100px;
     /* Fixed height for event image consistency */
     object-fit: cover;
     border-radius: 3px;
     /* Placeholder styling */
     background-color: #444;
 }

 /* --- Footer --- */
 .footer {
     background-color: var(--color-surface-dark);
     padding: 30px 50px;
     border-top: 1px solid #333;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .footer-logo {
     display: flex;
     align-items: center;
 }

 .contact-info p {
     font-size: 0.8rem;
     margin: 5px 0;
     text-align: right;
 }

 .footer-tagline {
     font-family: var(--font-secondary);
     font-size: 1.2rem;
     color: var(--color-accent-gold);
 }

 .producer-left {
     padding: 16px;
     position: relative;
     background-image: url(../images/gaming.jpg);
     height: 300px;
 }

 .producer-left::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #1f1f1fd4;
 }

 .producer-right {
     background: #1f1f1f;
     padding: 10px;
 }

 @media(max-width:750px) {
     .hero-area {
         padding-left: 0px;
         text-align: center;
         top: -46px;
     }

     .specialties-grid {
         display: flex;
         flex-direction: column;
     }

     .content-grid {
         display: flex;
         flex-direction: column;
     }

     .left-column,
     .right-column {
         gap: 5px;
     }

     .content-grid {
         padding: 50px 20px 100px 20px;
     }

     .description-text {
         text-align: justify;
     }

     .mission-vision-grid {
         display: flex;
         flex-direction: column;
     }

     .producer-content {
         display: flex;
         flex-direction: column;
     }

     .producer-left {
         height: auto;
         background-attachment: fixed;
         background-size: cover;
         background-repeat: no-repeat;
     }

     .footer-content {
         flex-direction: column;
     }

     .navbar {
         padding: 15px 20px;
     }

     .nav-links a {
         margin-left: 5px;
     }

     .logo-text p {
         font-size: 8px;
     }
 }
 .social-block ul li {
	list-style-type: none;
    display: inline-block;
}
.social-block ul li a {
	    background: #383838;
    width: 38px;
    height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 4px;
    margin-bottom: 10px;
    line-height: 36px;
}
.social-block ul li a:hover {
	background:#ffc107;
	color:#000;
}

/* ==========================================================================
   BANGKOK FILMS - NEW CINEMATIC HERO & HEADER STYLES
   ========================================================================== */

/* --- Custom Navbar Enhancements --- */
.bfc-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: linear-gradient(180deg, rgba(5, 5, 8, 0.95) 0%, rgba(5, 5, 8, 0.45) 60%, transparent 100%);
    border-bottom: none;
    box-sizing: border-box;
}

.bfc-navbar .logo {
    display: flex;
    align-items: center;
}

.bfc-navbar .main-logo-img {
    height: 76px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.bfc-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.bfc-nav-links a {
    color: #e5e7eb;
    font-size: 14.5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    margin-left: 0;
    transition: all 0.25s ease;
    position: relative;
    padding: 4px 0;
    text-decoration: none;
}

.bfc-nav-links a:hover,
.bfc-nav-links a.active {
    color: #dfac48;
    text-decoration: none;
}

.bfc-nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #dfac48;
    border-radius: 2px;
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lang-select {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    user-select: none;
    transition: color 0.25s ease;
}

.lang-select:hover {
    color: #dfac48;
}

.lang-select i.fa-globe {
    font-size: 16px;
    color: #ffffff;
}

.lang-select i.fa-angle-down {
    font-size: 13px;
    opacity: 0.8;
}

.btn-join-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 24px;
    border: 1px solid rgba(223, 172, 72, 0.75);
    border-radius: 7px;
    color: #dfac48 !important;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    text-decoration: none !important;
    letter-spacing: 0.3px;
}

.btn-join-now:hover {
    background: #dfac48;
    color: #0b0c10 !important;
    border-color: #dfac48;
    box-shadow: 0 0 20px rgba(223, 172, 72, 0.45);
    transform: translateY(-1px);
}

/* --- Hero Section --- */
.bfc-hero-section {
    position: relative;
    width: 100%;
    min-height: 890px;
    background-color: #0b0c10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 145px;
    padding-bottom: 45px;
    box-sizing: border-box;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, rgb(8 8 10 / 42%) 0%, rgb(8 8 10 / 11%) 32%,
        rgba(8, 8, 10, 0.45) 62%,
        rgba(8, 8, 10, 0.15) 100%),
        linear-gradient(180deg,
        rgba(8, 8, 10, 0.6) 0%,
        transparent 22%, rgb(8 8 10 / 54%) 85%, #0b0c10d4 100%);
}

/* Hero Content */
.hero-content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 10px 50px 0 50px;
    box-sizing: border-box;
}

.hero-left-content {
    max-width: 660px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4.5px;
    text-transform: uppercase;
    color: #d4a753;
    margin-bottom: 20px;
}

.hero-main-title {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.14;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.gold-gradient-title {
    background: linear-gradient(135deg, #fff3b8 0%, #e5b95b 35%, #be8b2e 75%, #fae6a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.white-title {
    color: #ffffff;
    font-weight: 900;
}

.hero-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 15.5px;
    color: #cfd4dc;
    line-height: 1.65;
    max-width: 530px;
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13.5px 30px;
    background: linear-gradient(135deg, #e4b85c 0%, #c99330 100%);
    color: #1c1404 !important;
    font-size: 14.5px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 167, 83, 0.35);
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    border: none;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 167, 83, 0.55);
    color: #000000 !important;
    text-decoration: none !important;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12.5px 28px;
    background: rgba(20, 20, 25, 0.65);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
}

.hero-btn-secondary:hover {
    background: rgba(35, 35, 45, 0.85);
    border-color: #e0b257;
    color: #e0b257 !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* 4 Feature Badges */
.hero-features-row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 2px 6px rgba(224, 178, 87, 0.3));
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f1f5f9;
    line-height: 1.35;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* --- Bottom Stats Banner --- */
.hero-stats-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1340px;
    margin: 35px auto 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.hero-stats-card {
    background: rgba(12, 13, 16, 0.92);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(224, 178, 87, 0.28);
    border-radius: 16px;
    padding: 24px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.75), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    gap: 20px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stats-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 8px rgba(224, 178, 87, 0.3));
}

.stats-info {
    display: flex;
    flex-direction: column;
}

.stats-number {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.stats-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 4px;
    font-family: 'Montserrat', sans-serif;
}

.stats-divider {
    width: 1px;
    height: 42px;
    background: rgba(224, 178, 87, 0.25);
}

.stats-brand-text {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dfac48;
    line-height: 1.4;
    text-transform: uppercase;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1200px) {
    .bfc-navbar {
        padding: 20px 30px;
    }
    .hero-content-container,
    .hero-stats-container {
        padding: 0 30px;
    }
    .hero-main-title {
        font-size: 44px;
    }
    .hero-stats-card {
        padding: 20px 25px;
        gap: 15px;
    }
    .stats-number {
        font-size: 22px;
    }
}

@media (max-width: 991px) {
    .bfc-navbar {
        padding: 18px 20px;
    }
    .bfc-navbar .main-logo-img {
        height: 60px;
    }
    .bfc-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(12, 13, 16, 0.98);
        flex-direction: column;
        padding: 20px 30px;
        gap: 15px;
        border-bottom: 1px solid rgba(224, 178, 87, 0.2);
    }
    .bfc-nav-links.active {
        display: flex;
    }
    .hero-content-container,
    .hero-stats-container {
        padding: 0 20px;
    }
    .hero-main-title {
        font-size: 38px;
    }
    .hero-stats-card {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px 35px;
    }
    .stats-divider {
        display: none;
    }
    .stats-brand-text {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bfc-hero-section {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 35px;
    }
    .bfc-navbar .main-logo-img {
        height: 52px;
    }
    .hero-main-title {
        font-size: 30px;
    }
    .hero-subtext {
        font-size: 14px;
    }
    .hero-features-row {
        gap: 18px 24px;
    }
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
    }
    .hero-stats-card {
        padding: 20px 18px;
    }
    .stats-item {
        width: 45%;
    }
}

/* ==========================================================================
   BANGKOK FILMS - MORE THAN ENTERTAINMENT SECTION STYLES
   ========================================================================== */

.bfc-more-than-section {
    position: relative;
    width: 100%;
    min-height: 650px;
    background-color: #07080a;
    overflow: hidden;
    padding: 85px 0 95px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(224, 178, 87, 0.15);
}

.more-than-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.more-than-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.more-than-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 8, 10, 0.98) 0%, rgba(7, 8, 10, 0.90) 30%, rgba(7, 8, 10, 0.45) 55%, rgba(7, 8, 10, 0.15) 75%, rgba(7, 8, 10, 0.45) 100%),
                linear-gradient(180deg, #0b0c10 0%, transparent 12%, transparent 88%, #07080a 100%);
}

.more-than-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    box-sizing: border-box;
}

.more-than-left {
    flex: 1;
    max-width: 530px;
}

.about-title-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #d4a753;
    text-transform: uppercase;
}

.about-title-tag .gold-line {
    display: inline-block;
    width: 45px;
    height: 1.5px;
    background: #d4a753;
}

.more-than-headline {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.more-than-subtagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #dfac48;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.more-than-paragraphs p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14.5px;
    color: #c4c9d2;
    line-height: 1.65;
    margin-bottom: 16px;
    font-weight: 400;
}

.more-than-cta {
    margin-top: 24px;
}

.btn-our-story {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 28px;
    border: 1px solid rgba(223, 172, 72, 0.8);
    border-radius: 7px;
    color: #dfac48 !important;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-our-story:hover {
    background: #dfac48;
    color: #07080a !important;
    box-shadow: 0 0 20px rgba(223, 172, 72, 0.45);
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* 2x2 Feature Cards Grid */
.more-than-cards-grid {
    flex: 1.15;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 660px;
}

.feature-card {
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(223, 172, 72, 0.5);
    background: rgba(11, 12, 16, 0.72);
    backdrop-filter: blur(10px);
    overflow: hidden;
    min-height: 195px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.feature-card:hover {
    border-color: #dfac48;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(223, 172, 72, 0.2);
}

.feature-card-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.feature-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.feature-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 12, 16, 0.98) 0%, rgba(11, 12, 16, 0.88) 45%, rgba(11, 12, 16, 0.45) 75%, rgba(11, 12, 16, 0.15) 100%);
}

.feature-card-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-circle-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #dfac48;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(223, 172, 72, 0.2);
}

.feature-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #dfac48;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    text-transform: uppercase;
    line-height: 1.2;
}

.feature-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #c4cad4;
    line-height: 1.45;
    max-width: 220px;
    font-weight: 400;
    margin: 0;
}

/* More Than Section Responsive */
@media (max-width: 1200px) {
    .more-than-container {
        padding: 0 30px;
        gap: 35px;
    }
    .more-than-headline {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .bfc-more-than-section {
        padding: 60px 0 70px 0;
    }
    .more-than-container {
        flex-direction: column;
        padding: 0 20px;
    }
    .more-than-left {
        max-width: 100%;
        text-align: center;
    }
    .about-title-tag {
        justify-content: center;
    }
    .more-than-paragraphs p {
        margin-left: auto;
        margin-right: auto;
    }
    .more-than-cta {
        margin-bottom: 30px;
    }
    .more-than-cards-grid {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .more-than-headline {
        font-size: 32px;
    }
    .more-than-cards-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-desc {
        max-width: 100%;
    }
}

/* ==========================================================================
   BANGKOK FILMS - BFC PLAY MASTER PLAN & LIFESTYLE AMENITIES STYLES
   ========================================================================== */

.bfc-masterplan-section {
    position: relative;
    width: 100%;
    background-color: #050608;
    overflow: hidden;
    border-top: 1px solid rgba(224, 178, 87, 0.15);
}

/* Master Plan Top Hero */
.masterplan-top {
    position: relative;
    width: 100%;
    padding: 70px 0 30px 0;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
}

.masterplan-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.masterplan-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
}

.masterplan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, rgb(5 6 8 / 67%) 0%, rgb(5 6 8 / 69%) 28%,
        rgba(5, 6, 8, 0.45) 50%,
        rgba(5, 6, 8, 0.05) 70%,
        rgba(5, 6, 8, 0.25) 100%),
        linear-gradient(180deg,
        #07080ac2 0%,
        transparent 12%, transparent 75%,
        #050608d1 100%);
}

.masterplan-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    box-sizing: border-box;
}

.masterplan-left {
    max-width: 500px;
}

.masterplan-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #d4a753;
    text-transform: uppercase;
}

.masterplan-tag .gold-line {
    display: inline-block;
    width: 45px;
    height: 1.5px;
    background: #d4a753;
}

.masterplan-headline {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.masterplan-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #cfd4dc;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 400;
    max-width: 480px;
}

.masterplan-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.mp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    width: 80px;
}

.mp-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 6px rgba(224, 178, 87, 0.3));
}

.mp-badge-icon svg {
    width: 20px;
    height: 20px;
}

.mp-badge-text {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #f1f5f9;
    line-height: 1.25;
    text-transform: uppercase;
}

.masterplan-right-accents {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    min-height: 480px;
    text-align: right;
}

.vertical-lifestyle-words {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: rgba(220, 176, 89, 0.85);
    line-height: 1.6;
    text-transform: uppercase;
}

.vertical-smart-quote {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    line-height: 1.45;
    text-transform: uppercase;
    margin-top: auto;
    margin-bottom: 40px;
}

/* Master Plan Stats Ribbon */
.masterplan-ribbon-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1340px;
    margin: -10px auto 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.masterplan-ribbon-card {
    background: rgba(10, 11, 14, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(224, 178, 87, 0.35);
    border-radius: 14px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    gap: 10px;
    flex-wrap: nowrap;
}

.mp-ribbon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.mp-ribbon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(224, 178, 87, 0.3));
}

.mp-ribbon-icon svg {
    width: 24px;
    height: 24px;
}

.mp-ribbon-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mp-ribbon-num {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.15;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.mp-ribbon-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.mp-ribbon-divider {
    width: 1px;
    height: 34px;
    background: rgba(224, 178, 87, 0.25);
    flex-shrink: 0;
}

/* Lifestyle Amenities Bottom Section */
.amenities-bottom-section {
    position: relative;
    width: 100%;
    padding: 70px 0 50px 0;
    background-color: #050608;
    overflow: hidden;
}

.amenities-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.amenities-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.95;
}

.amenities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #050608 0%, transparent 15%, transparent 80%, #050608 100%);
}

.amenities-content-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    text-align: center;
}

.amenities-header {
    margin-bottom: 32px;
}

.amenities-title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.amenities-title-wrap .gold-line {
    display: inline-block;
    width: 65px;
    height: 1.5px;
    background: #d4a753;
}

.amenities-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #dfac48;
    text-transform: uppercase;
    margin: 0;
}

.amenities-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 6px;
}

/* 6 Cards Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}

.amenity-card {
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(223, 172, 72, 0.38);
    background: #0c0d10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

.amenity-card:hover {
    transform: translateY(-4px);
    border-color: #dfac48;
    box-shadow: 0 12px 30px rgba(223, 172, 72, 0.25);
}

.amenity-img-wrap {
    width: 100%;
    height: 130px;
    overflow: hidden;
}

.amenity-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.amenity-card:hover .amenity-img-wrap img {
    transform: scale(1.08);
}

.amenity-card-meta {
    padding: 10px 6px;
    background: #0c0d10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 52px;
}

.amenity-card-meta h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0 0 2px 0;
    line-height: 1.25;
}

.amenity-card-meta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin: 0;
}

.amenities-cta-wrap {
    margin-top: 10px;
    margin-bottom: 15px;
}

.btn-explore-bfc-play {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 32px;
    border: 1px solid rgba(223, 172, 72, 0.85);
    border-radius: 25px;
    color: #dfac48 !important;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-decoration: none !important;
    letter-spacing: 1px;
}

.btn-explore-bfc-play:hover {
    background: #dfac48;
    color: #07080a !important;
    box-shadow: 0 0 25px rgba(223, 172, 72, 0.5);
    transform: translateY(-2px);
    text-decoration: none !important;
}

.amenities-footer-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
}

.af-left {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #94a3b8;
    text-transform: uppercase;
}

.af-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.af-right .gold-line {
    display: inline-block;
    width: 45px;
    height: 1.5px;
    background: #d4a753;
}

.af-right-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #dfac48;
    text-transform: uppercase;
    line-height: 1.35;
}

/* Master Plan Responsive Adjustments */
@media (max-width: 1200px) {
    .masterplan-container,
    .masterplan-ribbon-wrapper,
    .amenities-content-container {
        padding: 0 30px;
    }
    .masterplan-headline {
        font-size: 40px;
    }
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .amenity-img-wrap {
        height: 140px;
    }
    .masterplan-ribbon-card {
        flex-wrap: wrap;
        gap: 15px;
    }
    .mp-ribbon-divider {
        display: none;
    }
}

@media (max-width: 991px) {
    .masterplan-container {
        flex-direction: column;
        padding: 0 20px;
    }
    .masterplan-left {
        max-width: 100%;
    }
    .masterplan-right-accents {
        min-height: auto;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        margin-top: 25px;
    }
    .masterplan-ribbon-wrapper,
    .amenities-content-container {
        padding: 0 20px;
    }
    .masterplan-ribbon-card {
        justify-content: center;
        gap: 15px 25px;
    }
}

@media (max-width: 768px) {
    .masterplan-top {
        min-height: auto;
        padding: 50px 0 30px 0;
    }
    .masterplan-headline {
        font-size: 32px;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenity-img-wrap {
        height: 120px;
    }
    .amenities-footer-details {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .af-right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .masterplan-badges {
        justify-content: center;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .amenity-img-wrap {
        height: 160px;
    }
}

/* ==========================================================================
   BANGKOK FILMS - GLOBAL VISION (A BRIGHTER TOMORROW TOGETHER) SECTION STYLES
   ========================================================================== */

.bfc-global-vision-section {
    position: relative;
    width: 100%;
    background-color: #050608;
    overflow: hidden;
    border-top: 1px solid rgba(224, 178, 87, 0.18);
    padding: 70px 0 50px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.gv-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gv-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.gv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.88) 32%, rgba(5, 6, 8, 0.35) 58%, rgba(5, 6, 8, 0.08) 78%, rgba(5, 6, 8, 0.25) 100%),
                linear-gradient(180deg, #050608 0%, transparent 12%, transparent 85%, #050608 100%);
}

.gv-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.gv-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.gv-left-content {
    max-width: 530px;
}

.gv-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #d4a753;
    text-transform: uppercase;
}

.gv-tag .gold-line {
    display: inline-block;
    width: 45px;
    height: 1.5px;
    background: #d4a753;
}

.gv-headline {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.gv-subtags {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    color: #d1d5db;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.gv-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #c4cad4;
    line-height: 1.65;
    margin-bottom: 26px;
    font-weight: 400;
    max-width: 480px;
}

.gv-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-join-movement {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #08080a !important;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f7d58a 0%, #e0b257 50%, #c49332 100%);
    box-shadow: 0 4px 18px rgba(224, 178, 87, 0.45);
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
}

.btn-join-movement:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(224, 178, 87, 0.65);
    color: #000000 !important;
    text-decoration: none !important;
}

.btn-explore-vision {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #ffffff !important;
    text-transform: uppercase;
    background: rgba(10, 11, 14, 0.65);
    border: 1.5px solid rgba(224, 178, 87, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-explore-vision:hover {
    background: #dfac48;
    color: #07080a !important;
    box-shadow: 0 0 20px rgba(224, 178, 87, 0.45);
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Right Content */
.gv-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    min-height: 380px;
    text-align: right;
}

.gv-top-words {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4a753;
    line-height: 1.6;
    text-transform: uppercase;
    text-align: right;
}

.gv-quote-box {
    margin-top: 50px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.gv-quote-text {
    font-family: 'Georgia', 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: #e2b963;
    line-height: 1.35;
    margin: 0 0 8px 0;
    max-width: 210px;
}

.gold-line-short {
    display: inline-block;
    width: 40px;
    height: 1.5px;
    background: #e2b963;
}

/* Floating Stats Ribbon */
.gv-ribbon-wrapper {
    width: 100%;
    margin-top: 35px;
}

.gv-ribbon-card {
    background: rgba(10, 11, 14, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(224, 178, 87, 0.45);
    border-radius: 14px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    flex-wrap: nowrap;
}

.gv-ribbon-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
}

.gv-ribbon-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(224, 178, 87, 0.4));
}

.gv-ribbon-icon svg {
    width: 30px;
    height: 30px;
}

.gv-ribbon-info {
    display: flex;
    flex-direction: column;
}

.gv-ribbon-num {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.gv-ribbon-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 3px;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.gv-ribbon-divider {
    width: 1px;
    height: 40px;
    background: rgba(224, 178, 87, 0.3);
    flex-shrink: 0;
}

.gv-ribbon-actions {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #d4a753;
    line-height: 1.45;
    text-transform: uppercase;
    padding-left: 10px;
    white-space: nowrap;
}

/* Footer Meta Line */
.gv-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    width: 100%;
}

.gv-footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.gv-footer-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.gv-footer-left .gold-line {
    display: inline-block;
    width: 40px;
    height: 1.5px;
    background: #d4a753;
}

.gv-footer-brand-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
}

.gv-footer-right {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #94a3b8;
    text-transform: uppercase;
}

/* Global Vision Responsive */
@media (max-width: 1200px) {
    .gv-container {
        padding: 0 30px;
    }
    .gv-headline {
        font-size: 40px;
    }
    .gv-ribbon-card {
        flex-wrap: wrap;
        gap: 15px;
    }
    .gv-ribbon-divider {
        display: none;
    }
}

@media (max-width: 991px) {
    .bfc-global-vision-section {
        padding: 60px 0 30px 0;
    }
    .gv-container {
        padding: 0 20px;
    }
    .gv-top-row {
        flex-direction: column;
        gap: 30px;
    }
    .gv-left-content {
        max-width: 100%;
    }
    .gv-right-content {
        min-height: auto;
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: flex-end;
    }
    .gv-quote-box {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .gv-headline {
        font-size: 32px;
    }
    .gv-ribbon-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    .gv-ribbon-item {
        justify-content: flex-start;
        width: 100%;
    }
    .gv-ribbon-actions {
        padding-left: 0;
        margin-top: 10px;
    }
    .gv-footer-meta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .gv-footer-left {
        justify-content: center;
    }
}

/* ==========================================================================
   BANGKOK FILMS - BFC PLAY 9 FLOOR STUDIO TOWERS (ICONIC LIVING) STYLES
   ========================================================================== */

.bfc-iconic-living-section {
    position: relative;
    width: 100%;
    min-height: 720px;
    background-color: #050608;
    overflow: hidden;
    border-top: 1px solid rgba(224, 178, 87, 0.18);
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.il-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.il-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% center;
}

.il-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.92) 38%, rgba(5, 6, 8, 0.50) 60%, rgba(5, 6, 8, 0.10) 80%, rgba(5, 6, 8, 0.25) 100%),
                linear-gradient(180deg, #050608 0%, transparent 12%, transparent 88%, #050608 100%);
}

.il-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 70px 50px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}

.il-content-right {
    width: 100%;
    max-width: 590px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.il-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3.5px;
    color: #d4a753;
    text-transform: uppercase;
}

.il-tag .gold-line {
    display: inline-block;
    width: 45px;
    height: 1.5px;
    background: #d4a753;
}

.il-headline {
    font-family: 'Montserrat', 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.il-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #c4cad4;
    line-height: 1.65;
    margin-bottom: 28px;
    font-weight: 400;
}

.il-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
    width: 100%;
    margin-bottom: 35px;
}

.il-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.il-circle-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #dfac48;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 11, 14, 0.85);
    backdrop-filter: blur(6px);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(223, 172, 72, 0.2);
    transition: all 0.3s ease;
}

.il-feature-item:hover .il-circle-icon {
    transform: scale(1.08);
    border-color: #f7d58a;
    box-shadow: 0 6px 18px rgba(223, 172, 72, 0.4);
}

.il-feature-text {
    display: flex;
    flex-direction: column;
}

.il-feature-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin: 0 0 3px 0;
    line-height: 1.2;
}

.il-feature-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.4px;
    margin: 0;
    line-height: 1.3;
}

.il-bottom-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-explore-studios {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #08080a !important;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f7d58a 0%, #e0b257 50%, #c49332 100%);
    box-shadow: 0 4px 18px rgba(224, 178, 87, 0.45);
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
}

.btn-explore-studios:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(224, 178, 87, 0.65);
    color: #000000 !important;
    text-decoration: none !important;
}

.il-lifestyle-tag {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4a753;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Iconic Living Responsive */
@media (max-width: 1200px) {
    .il-container {
        padding: 60px 30px;
    }
    .il-headline {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .bfc-iconic-living-section {
        min-height: auto;
    }
    .il-overlay {
        background: linear-gradient(180deg, rgba(5, 6, 8, 0.75) 0%, rgba(5, 6, 8, 0.95) 40%, rgba(5, 6, 8, 0.98) 100%);
    }
    .il-container {
        justify-content: center;
        padding: 50px 20px;
    }
    .il-content-right {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .il-headline {
        font-size: 32px;
    }
    .il-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .il-bottom-action {
        flex-direction: column;
        align-items: flex-start;
    }
    .il-lifestyle-tag {
        text-align: left;
    }
}

/* ==========================================================================
   BANGKOK FILMS - MAIN LUXURY FOOTER STYLES
   ========================================================================== */

.bfc-main-footer {
    position: relative;
    width: 100%;
    background-color: #050608;
    overflow: hidden;
    border-top: 1px solid rgba(224, 178, 87, 0.25);
    padding: 80px 0 35px 0;
    box-sizing: border-box;
}

.footer-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.85;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.82) 50%, rgba(5, 6, 8, 0.92) 100%);
}

.footer-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.1fr 1.1fr 1.3fr;
    gap: 35px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-brand-header {
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.footer-gold-divider {
    width: 110px;
    height: 1.5px;
    background: #d4a753;
    margin-top: 12px;
}

.footer-brand-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #c4cad4;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 320px;
    font-weight: 400;
}

.footer-brand-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4a753;
    text-transform: uppercase;
}

.footer-brand-tagline .gold-line {
    display: inline-block;
    width: 35px;
    height: 1.5px;
    background: #d4a753;
}

/* Social Buttons */
.footer-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #d4a753;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4a753 !important;
    font-size: 14px;
    background: rgba(10, 11, 14, 0.7);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-social-btn:hover {
    background: #d4a753;
    color: #07080a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(212, 167, 83, 0.45);
}

.footer-social-btn svg {
    fill: currentColor;
}

/* Column Titles */
.footer-col-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #d4a753;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}

.footer-col-title .gold-line {
    display: inline-block;
    width: 35px;
    height: 1.5px;
    background: #d4a753;
}

/* Links List */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list li {
    margin: 0;
    padding: 0;
}

.footer-links-list li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    color: #c4cad4;
    text-decoration: none !important;
    transition: all 0.25s ease;
    font-weight: 400;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #f7d58a !important;
    transform: translateX(4px);
}

/* Contact & Auth Column */
.footer-contact-col {
    border-left: 1px solid rgba(212, 167, 83, 0.25);
    padding-left: 35px;
}

.footer-auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #08080a !important;
    background: linear-gradient(135deg, #f7d58a 0%, #e0b257 50%, #c49332 100%);
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 3px 12px rgba(224, 178, 87, 0.35);
}

.footer-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(224, 178, 87, 0.55);
    color: #000000 !important;
}

.footer-btn-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #ffffff !important;
    background: rgba(10, 11, 14, 0.6);
    border: 1.5px solid rgba(224, 178, 87, 0.8);
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-btn-signup:hover {
    background: #dfac48;
    color: #07080a !important;
    box-shadow: 0 0 16px rgba(224, 178, 87, 0.4);
    transform: translateY(-2px);
}

.footer-btn-arrow {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.footer-btn-login:hover .footer-btn-arrow,
.footer-btn-signup:hover .footer-btn-arrow {
    transform: translateX(3px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(212, 167, 83, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(10, 11, 14, 0.7);
    margin-top: 2px;
}

.footer-contact-icon svg {
    width: 14px;
    height: 14px;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #c4cad4;
    line-height: 1.4;
}

.footer-contact-text strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-contact-text span {
    font-size: 10.5px;
    color: #94a3b8;
}

.footer-contact-text a {
    color: #c4cad4;
    text-decoration: none !important;
    transition: color 0.2s;
}

.footer-contact-text a:hover {
    color: #f7d58a !important;
}

/* Bottom Copyright Row */
.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 167, 83, 0.25);
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    color: #94a3b8;
    letter-spacing: 0.8px;
}

.footer-bottom-divider {
    flex: 1;
    height: 1px;
    background: rgba(212, 167, 83, 0.2);
    margin: 0 15px;
}

.footer-bottom-tagline {
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #d4a753;
    text-transform: uppercase;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-container {
        padding: 0 30px;
    }
    .footer-grid {
        grid-template-columns: 1.4fr 1.1fr 1.1fr 1.2fr;
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-contact-col {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 576px) {
    .bfc-main-footer {
        padding: 60px 0 30px 0;
    }
    .footer-container {
        padding: 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .footer-bottom-divider {
        display: none;
    }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & POLISH OPTIMIZATIONS (GLOBAL ACROSS ALL SECTIONS)
   ========================================================================== */

/* Mobile Sticky Bottom Auth Bar */
.mobile-sticky-auth-bar {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 75px !important;
    }

    .mobile-sticky-auth-bar {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: rgba(8, 9, 12, 0.96) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-top: 1px solid rgba(224, 178, 87, 0.35) !important;
        padding: 6px 12px !important;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.7) !important;
        box-sizing: border-box !important;
    }

    .mobile-sticky-auth-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }

    .mobile-sticky-btn {
        flex: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        padding: 11px 16px !important;
        border-radius: 8px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 13px !important;
        font-weight: 800 !important;
        letter-spacing: 0.8px !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        transition: all 0.25s ease !important;
    }

    .mobile-sticky-login {
        background: linear-gradient(135deg, #f7d58a 0%, #e0b257 50%, #c49332 100%) !important;
        color: #08080a !important;
        border: none !important;
        box-shadow: 0 4px 14px rgba(224, 178, 87, 0.4) !important;
    }

    .mobile-sticky-signup {
        background: rgba(15, 16, 20, 0.85) !important;
        color: #ffffff !important;
        border: 1.5px solid rgba(224, 178, 87, 0.85) !important;
    }

    /* Navbar Mobile Fix */
    .bfc-navbar {
        padding: 10px 16px !important;
        flex-wrap: nowrap !important;
    }

    .bfc-navbar .logo {
        flex-shrink: 0 !important;
    }

    .bfc-navbar .main-logo-img {
        height: 44px !important;
    }

    .header-right-actions {
        gap: 10px !important;
    }

    .btn-join-now {
        padding: 6px 12px !important;
        font-size: 11.5px !important;
    }

    /* Hero Section Mobile Fix */
    .hero-overlay {
        background: linear-gradient(180deg, rgba(8, 8, 10, 0.94) 0%, rgba(8, 8, 10, 0.88) 35%, rgba(8, 8, 10, 0.92) 75%, #0b0c10 100%) !important;
    }

    .bfc-hero-section {
        padding-top: 130px !important;
        padding-bottom: 40px !important;
        min-height: auto !important;
    }

    .hero-content-container {
        padding: 0 20px !important;
    }

    .hero-tagline {
        font-size: 11px !important;
        letter-spacing: 2px !important;
        margin-bottom: 12px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    .hero-main-title {
        font-size: 28px !important;
        line-height: 1.15 !important;
        margin-bottom: 14px !important;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.95) !important;
    }

    .hero-subtext {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 22px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
    }

    .hero-cta-group {
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 28px !important;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        box-sizing: border-box !important;
    }

    .hero-features-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px 12px !important;
        width: 100% !important;
    }

    .hero-feature-item {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .hero-feature-text {
        font-size: 10px !important;
        text-align: left !important;
    }

    /* Hero Stats Card 2x2 Grid Fix */
    .hero-stats-container {
        padding: 0 20px !important;
        margin-top: 30px !important;
    }

    .hero-stats-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px 12px !important;
        padding: 22px 18px !important;
        border-radius: 14px !important;
    }

    .stats-item {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .stats-number {
        font-size: 16px !important;
    }

    .stats-label {
        font-size: 8.5px !important;
    }

    .stats-brand-text {
        grid-column: span 2 !important;
        text-align: center !important;
        padding-top: 10px !important;
        border-top: 1px solid rgba(224, 178, 87, 0.2) !important;
        width: 100% !important;
    }

    /* More Than Entertainment Mobile Fix */
    .bfc-more-than-section {
        padding: 60px 0 50px 0 !important;
    }

    .more-than-container {
        padding: 0 20px !important;
    }

    .more-than-headline {
        font-size: 30px !important;
    }

    .more-than-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        width: 100% !important;
    }

    /* Master Plan Section Mobile Fix */
    .masterplan-top {
        padding: 50px 0 25px 0 !important;
    }

    .masterplan-overlay {
        background: linear-gradient(180deg, rgba(5, 6, 8, 0.95) 0%, rgba(5, 6, 8, 0.88) 45%, rgba(5, 6, 8, 0.82) 100%) !important;
    }

    .masterplan-container {
        padding: 0 20px !important;
    }

    .masterplan-headline {
        font-size: 28px !important;
        line-height: 1.15 !important;
    }

    .masterplan-subtext {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
    }

    .masterplan-badges {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 10px !important;
        width: 100% !important;
        margin-top: 18px !important;
    }

    .mp-badge {
        width: 100% !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 8px !important;
    }

    .mp-badge-text {
        font-size: 9.5px !important;
    }

    /* Master Plan Stats Ribbon Mobile Fix (Resolve All Overlapping Bug!) */
    .masterplan-ribbon-wrapper {
        padding: 0 20px !important;
        margin-top: 15px !important;
    }

    .masterplan-ribbon-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px 12px !important;
        padding: 20px 16px !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .mp-ribbon-item {
        width: 100% !important;
        justify-content: flex-start !important;
        gap: 10px !important;
        flex: none !important;
    }

    .mp-ribbon-num {
        font-size: 13px !important;
    }

    .mp-ribbon-label {
        font-size: 8px !important;
    }

    .mp-ribbon-divider {
        display: none !important;
    }

    /* Lifestyle Amenities Grid Mobile Fix */
    .amenities-content-container {
        padding: 0 20px !important;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .amenity-img-wrap {
        height: 110px !important;
    }

    /* Iconic Living (9 Floor Studio Towers) Mobile Fix */
    .bfc-iconic-living-section {
        padding: 50px 0 !important;
        min-height: auto !important;
    }

    .il-container {
        padding: 0 20px !important;
        justify-content: center !important;
    }

    .il-headline {
        font-size: 28px !important;
        line-height: 1.15 !important;
    }

    .il-features-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .il-bottom-action {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
    }

    .btn-explore-studios {
        width: 100% !important;
        justify-content: center !important;
    }

    .il-lifestyle-tag {
        text-align: center !important;
    }

    /* Global Vision Section Mobile Fix */
    .bfc-global-vision-section {
        padding: 50px 0 !important;
        min-height: auto !important;
    }

    .gv-container {
        padding: 0 20px !important;
    }

    .gv-headline {
        font-size: 28px !important;
        line-height: 1.15 !important;
    }

    .gv-cta-group {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .btn-join-movement,
    .btn-explore-vision {
        width: 100% !important;
        justify-content: center !important;
    }

    .gv-ribbon-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px 12px !important;
        padding: 22px 18px !important;
        width: 100% !important;
    }

    .gv-ribbon-item {
        justify-content: flex-start !important;
        gap: 10px !important;
    }

    .gv-ribbon-num {
        font-size: 16px !important;
    }

    .gv-ribbon-label {
        font-size: 8.5px !important;
    }

    .gv-ribbon-divider {
        display: none !important;
    }

    .gv-ribbon-actions {
        grid-column: span 2 !important;
        text-align: center !important;
        padding: 10px 0 0 0 !important;
        border-top: 1px solid rgba(224, 178, 87, 0.2) !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 8px !important;
        flex-wrap: wrap !important;
    }
}

/* ==========================================================================
   MOBILE SIDE DRAWER NAVIGATION STYLES
   ========================================================================== */

.drawer-backdrop {
    display: none;
}

.drawer-header,
.drawer-footer-actions {
    display: none;
}

@media (min-width: 992px) {
    .drawer-links-body {
        display: flex !important;
        align-items: center !important;
        gap: 32px !important;
    }

    .drawer-links-body a {
        color: #e5e7eb !important;
        font-size: 14.5px !important;
        font-weight: 600 !important;
        font-family: 'Montserrat', sans-serif !important;
        text-transform: capitalize !important;
        letter-spacing: 0.3px !important;
        transition: all 0.25s ease !important;
        position: relative !important;
        padding: 4px 0 !important;
        text-decoration: none !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .drawer-links-body a:hover,
    .drawer-links-body a.active {
        color: #dfac48 !important;
        background: transparent !important;
        padding-left: 0 !important;
    }

    .drawer-links-body a.active::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        bottom: -2px !important;
        left: 0 !important;
        width: 100% !important;
        height: 2px !important;
        background: #dfac48 !important;
        border-radius: 2px !important;
    }
}

@media (max-width: 991px) {
    body.drawer-open {
        overflow: hidden !important;
        height: 100vh !important;
        position: fixed !important;
        width: 100% !important;
    }

    .drawer-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 99990;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .drawer-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .bfc-nav-links {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        width: 280px !important;
        max-width: 82vw !important;
        height: 100% !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #0b0c10 !important;
        border-left: 1px solid rgba(224, 178, 87, 0.35) !important;
        z-index: 99995 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 16px 16px !important;
        box-sizing: border-box !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.3s !important;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.9) !important;
        overflow-y: auto !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .bfc-nav-links.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .drawer-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-bottom: 12px !important;
        border-bottom: 1px solid rgba(224, 178, 87, 0.2) !important;
        margin-bottom: 10px !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .drawer-logo-img {
        height: 34px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    .drawer-close-btn {
        background: rgba(224, 178, 87, 0.12) !important;
        border: 1px solid rgba(224, 178, 87, 0.4) !important;
        color: #dfac48 !important;
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 14px !important;
        cursor: pointer !important;
        transition: all 0.25s ease !important;
        line-height: 1 !important;
    }

    .drawer-close-btn:hover {
        background: #dfac48 !important;
        color: #07080a !important;
        transform: rotate(90deg) !important;
    }

    .drawer-links-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        flex: 0 1 auto !important;
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .drawer-links-body a {
        display: flex !important;
        align-items: center !important;
        padding: 8px 12px !important;
        color: #e2e8f0 !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-radius: 6px !important;
        transition: all 0.2s ease !important;
        letter-spacing: 0.3px !important;
        border-left: 3px solid transparent !important;
    }

    .drawer-links-body a:hover,
    .drawer-links-body a.active {
        background: rgba(224, 178, 87, 0.1) !important;
        color: #dfac48 !important;
        border-left-color: #dfac48 !important;
        padding-left: 14px !important;
    }

    .drawer-links-body a.active::after {
        display: none !important;
    }

    .drawer-footer-actions {
        display: flex !important;
        gap: 8px !important;
        padding-top: 14px !important;
        border-top: 1px solid rgba(224, 178, 87, 0.2) !important;
        margin-top: auto !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .drawer-btn-login {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 9px 8px !important;
        border-radius: 6px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 11.5px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        color: #dfac48 !important;
        border: 1px solid rgba(224, 178, 87, 0.7) !important;
        text-decoration: none !important;
        background: rgba(10, 11, 14, 0.6) !important;
        transition: all 0.25s ease !important;
    }

    .drawer-btn-login:hover {
        background: rgba(224, 178, 87, 0.2) !important;
    }

    .drawer-btn-signup {
        flex: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 9px 8px !important;
        border-radius: 6px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 11.5px !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        color: #08080a !important;
        background: linear-gradient(135deg, #f7d58a 0%, #e0b257 50%, #c49332 100%) !important;
        text-decoration: none !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(224, 178, 87, 0.35) !important;
        transition: all 0.25s ease !important;
    }

    .drawer-btn-signup:hover {
        box-shadow: 0 6px 18px rgba(224, 178, 87, 0.55) !important;
    }
}

/* Global Mobile Viewport & Drawer Containment Fix */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    position: relative !important;
}

/* ==========================================================================
   Luxury Legal Pages (Privacy Policy & Terms & Conditions)
   ========================================================================== */
.bfc-legal-page-hero {
    position: relative;
    padding: 120px 20px 60px;
    background: #07080a;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(224, 178, 87, 0.2);
}

.bfc-legal-page-hero .hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bfc-legal-page-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.bfc-legal-page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 8, 10, 0.7) 0%, rgba(7, 8, 10, 0.98) 100%);
    z-index: 2;
}

.bfc-legal-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.legal-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(224, 178, 87, 0.12);
    border: 1px solid rgba(224, 178, 87, 0.35);
    border-radius: 30px;
    color: #f7d58a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.bfc-legal-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    line-height: 1.15;
}

.bfc-legal-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.bfc-legal-section {
    padding: 50px 20px 80px;
    background: #07080a;
}

.bfc-legal-container {
    max-width: 1050px;
    margin: 0 auto;
}

.legal-document-card {
    background: #11141d;
    border: 1px solid rgba(224, 178, 87, 0.22);
    border-radius: 20px;
    padding: 40px 45px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.legal-document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e0b257 50%, transparent 100%);
}

.legal-content-body {
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.8;
}

.legal-content-body p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.82);
}

.legal-content-body p.lead {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 18px;
}

.legal-content-body h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: #f7d58a;
    letter-spacing: 0.8px;
    margin-top: 32px;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(224, 178, 87, 0.2);
    display: block;
    width: 100%;
}

.legal-content-body strong {
    color: #ffffff;
    font-weight: 700;
}

.legal-content-body ul, 
.legal-content-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content-body .terms-list-clean {
    list-style: none !important;
    padding-left: 0 !important;
}

.legal-content-body .terms-list-clean > li {
    margin-bottom: 24px !important;
}

.legal-content-body .terms-sub-list {
    list-style: none !important;
    padding-left: 12px !important;
    margin-top: 8px !important;
    margin-bottom: 12px !important;
}

.legal-content-body .terms-sub-list > li {
    margin-bottom: 10px !important;
}

.legal-content-body li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.legal-content-body li strong {
    color: #f7d58a;
}

@media (max-width: 768px) {
    .bfc-legal-page-hero {
        padding: 100px 15px 40px;
    }

    .bfc-legal-hero-title {
        font-size: 2.2rem;
    }

    .legal-document-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .legal-content-body {
        font-size: 13px;
    }
}









