/* -------------------------------------------------------------
   BHARTI MICROCONCRETE - LUXURY ARCHITECTURAL SURFACES
   MASTER STYLESHEET (VANILLA CSS)
   ------------------------------------------------------------- */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* CSS Variables for Design Tokens */
:root {
    /* Color Palette (Theme Mapped) */
    --color-dark: #FFFFFF; /* Pure White background */
    --color-dark-80: rgba(255, 255, 255, 0.85); /* White glassmorphism base */
    --color-dark-50: rgba(255, 255, 255, 0.5);
    --color-gold: #C1121F; /* Primary Red */
    --color-gold-hover: #8F0D16; /* Dark Red */
    --color-gold-20: rgba(193, 18, 31, 0.2); /* Accent Red transparency */
    --color-grey: #333333; /* Charcoal text */
    --color-grey-dark: #FAFAFA; /* Off White background */
    --color-grey-light: #555555; /* Changed from light grey to dark grey for readable text on white cards */
    --color-white: #111111; /* Dark Text headings */
    --color-pure-white: #111111; /* Dark Text headings */

    /* Real Brand Specific Colors */
    --color-primary-red: #C1121F;
    --color-secondary-red: #E21B2D;
    --color-dark-red: #8F0D16;
    --color-accent-red: #E21B2D;
    --color-pure-white-real: #FFFFFF;
    --color-soft-white-real: #FAFAFA;
    --color-dark-text-real: #111111;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-max-width: 1320px;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
}

/* -------------------------------------------------------------
   BASE RESET & GENERIC STYLES
   ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-index: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-soft-white-real);
    color: var(--color-white);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-soft-white-real);
    color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

/* Luxury Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-soft-white-real);
}
::-webkit-scrollbar-thumb {
    background: var(--color-grey-light);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-pure-white);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    color: inherit;
}

button {
    cursor: pointer;
}

/* -------------------------------------------------------------
   UTILITY CLASSES & GRID SYSTEM
   ------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.section-padding {
    padding: 7.5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4.5rem 0;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header .subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: inline-block;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--color-grey);
    font-size: 1.1rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-header h2 {
        font-size: 2.25rem;
    }
    .section-header p {
        font-size: 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px; /* Fix height to 54px */
    padding: 0 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: var(--transition-medium);
    position: relative;
    z-index: 1;
}

.btn-gold {
    background-color: var(--color-primary-red);
    color: var(--color-pure-white-real);
    border: 1px solid var(--color-primary-red);
}

.btn-gold:hover {
    background-color: var(--color-dark-red);
    color: var(--color-pure-white-real);
    border-color: var(--color-dark-red);
    box-shadow: 0 10px 20px rgba(193, 18, 31, 0.2);
}

.btn-outline {
    background-color: var(--color-pure-white-real);
    border: 1px solid var(--color-primary-red);
    color: var(--color-primary-red);
}

.btn-outline:hover {
    border-color: var(--color-dark-red);
    color: var(--color-pure-white-real);
    background-color: var(--color-dark-red);
    box-shadow: 0 10px 20px rgba(193, 18, 31, 0.15);
}

.btn-text-gold {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text-gold span {
    transition: var(--transition-fast);
}

.btn-text-gold:hover span {
    transform: translateX(5px);
}

/* Typography styles */
.text-gold { color: var(--color-gold); }
.text-grey { color: var(--color-grey); }

/* Glassmorphism panel */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-medium);
}

.glass-card:hover {
    border-color: var(--color-gold-20);
    background: rgba(255, 255, 255, 0.05);
}

/* -------------------------------------------------------------
   HEADER & NAVIGATION BAR
   ------------------------------------------------------------- */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* Increased z-index to match UX requirement */
    border-bottom: 1px solid rgba(193, 18, 31, 0.08);
    background: rgba(255, 255, 255, 0.92); /* Frosted glass white base */
    backdrop-filter: blur(18px); /* Backdrop blur */
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02), 0 1px 3px rgba(0, 0, 0, 0.02); /* Soft premium shadow */
    transform: translateY(0);
    transition:
        transform 0.4s ease,
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        -webkit-backdrop-filter 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Auto-Hide Sticky Header Class States */
.navbar-wrapper.header-hidden {
    transform: translateY(-100%) !important;
}

.navbar-wrapper.header-visible {
    transform: translateY(0) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-bottom: 1px solid rgba(193, 18, 31, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
    background-image: none !important;
}

.navbar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-bottom-color: rgba(193, 18, 31, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.navbar-container {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    padding: 1rem 0;
    transition: var(--transition-medium);
}

.navbar-logo {
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
}

.nav-menu {
    justify-self: center !important;
}

#nav-cta-btn {
    justify-self: end !important;
}

@media (max-width: 992px) {
    .navbar-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.navbar-wrapper.scrolled .navbar-container {
    /* Kept identical to prevent header layout jumps */
}

/* Brand Logo */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-pure-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-main span {
    color: var(--color-gold);
}

.logo-sub {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.45em;
    color: var(--color-grey);
    margin-top: -3px;
}

.logo-img {
    width: auto;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    display: block;
    transition: var(--transition-medium);
}

.logo-img:hover {
    /* Clean floating logo without drop shadows or filters on hover */
    filter: none;
}

.navbar-logo img,
.footer-logo img {
    width: auto;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    border: none;
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #333333 !important;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-medium);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* -------------------------------------------------------------
   MEGA DROPDOWN MENU
   ------------------------------------------------------------- */
.has-mega-menu {
    position: static; /* Required for full width menu */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    border-bottom: 2px solid var(--color-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

/* Trigger mega menu on hover */
.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 3.5rem;
}

/* Mega Menu Left Column */
.mega-menu-banner {
    position: relative;
    background: linear-gradient(rgba(142, 14, 18, 0.25), rgba(142, 14, 18, 0.92)), url('../../new-img/5.jpeg') no-repeat center center;
    background-size: cover;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Fallback textured background using gradients when image is missing */
.mega-menu-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #C1121F 0%, #8F0D16 100%);
    opacity: 0.95;
    z-index: -1;
}

.mega-menu-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--color-pure-white-real) !important;
}

.mega-menu-banner p {
    font-size: 0.85rem;
    color: #e5e5e5 !important;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Mega Menu Right Column Grid */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mega-menu-card {
    padding: 1.25rem;
    background-color: var(--color-soft-white-real);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mega-menu-card:hover {
    border-color: var(--color-gold-20);
    background-color: var(--color-pure-white-real);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 18, 31, 0.04);
}

.mega-menu-card h4 {
    font-size: 1.1rem;
    color: var(--color-pure-white);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.mega-menu-card:hover h4 {
    color: var(--color-gold);
}

.mega-menu-card h4 svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-gold);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-medium);
}

.mega-menu-card:hover h4 svg {
    opacity: 1;
    transform: translateX(0);
}

.mega-menu-card p {
    font-size: 0.75rem;
    color: var(--color-grey);
    font-weight: 300;
}

#nav-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px; /* Explicit consistent height of 56px */
    padding: 0 1.75rem; /* Optical horizontal sizing padding */
    font-size: 0.75rem; /* Crisp, readable layout */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1; /* Reset default text block line-height offsets */
    box-sizing: border-box;
}

/* Mobile & Tablet Nav Toggles */
.nav-toggles {
    display: none;
    align-items: center;
}

@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
    }
    #nav-cta-btn {
        display: none !important;
    }
    .nav-toggles {
        display: flex !important;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 1001;
    cursor: pointer;
    padding: 10px; /* Touch target enlargement */
    box-sizing: content-box; /* Preserves exact dimensions of inner lines */
    transition: var(--transition-medium);
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--color-gold); /* Gold luxury tone */
    transition: var(--transition-medium);
    display: block;
}

/* Active hamburger states - precise centering animation */
.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Fullscreen Luxury Menu Overlay */
body.menu-open {
    overflow: hidden;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 140px; /* Non-centered top spacing to prevent logo overlap */
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 40px;
    background: var(--color-soft-white-real); /* Soft white luxury background */
    overflow-y: auto; /* Allow scroll if list exceeds screen height */
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth momentum scrolling on iOS */
    overscroll-behavior: contain;
    z-index: 99999; /* Stack above everything including sticky header */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* Smooth luxury fade-up */
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.6s;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    min-height: max-content;
    padding-bottom: 120px;
    width: 100%;
}

.mobile-menu a {
    white-space: nowrap; /* Prevent horizontal wrapping line breaks */
}

.mobile-menu > a,
.mobile-nav > a,
.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 42px) !important; /* Premium main menu hierarchy */
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
    text-transform: uppercase;
    padding: 0.15rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 100%;
    color: #111111 !important;
    transition: var(--transition-fast);
    white-space: nowrap !important;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 36px !important; /* Improved menu breathing space */
    align-items: flex-start; /* Left-aligned typography */
    width: 100%;
    overflow: visible; /* Prevent clipping */
}

.menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 36px !important;
    color: var(--color-primary-red) !important;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
    transition: var(--transition-fast);
}

.menu-close:hover {
    color: var(--color-dark-red) !important;
}

.menu-logo {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10001;
}

.menu-logo img {
    height: 52px !important;
    width: auto !important;
    object-fit: contain;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--color-gold);
}

.services-toggle svg {
    transition: transform 0.3s ease !important;
    align-self: center !important; /* Vertically center dropdown arrow */
}

.services-toggle.active svg {
    transform: rotate(180deg) !important;
}

/* Mobile accordion content panel / Services Dropdown */
.services-dropdown {
    display: none;
    flex-direction: column;
    gap: 20px; /* Improved submenu spacing */
    margin-top: 28px;
    padding-left: 22px;
    margin-bottom: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.08); /* Luxury divider line */
    overflow: visible; /* Remove all overflow clipping */
    height: auto; /* Remove all fixed/max-height constraints */
    opacity: 0;
    transform: translateY(-8px);
}

@keyframes slideDownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-dropdown.active {
    display: flex;
    animation: slideDownFadeIn 0.35s ease forwards; /* Smooth slide-down & fade-in */
}

.services-dropdown a,
.mobile-accordion-link {
    display: block !important;
    font-size: 18px !important; /* Elegant 18px submenu typography */
    line-height: 1.5 !important;
    opacity: 0.72 !important; /* Luxury softer opacity */
    font-weight: 500 !important;
    letter-spacing: -0.3px !important;
    color: #555555 !important;
    font-family: var(--font-body) !important;
    transition: all 0.3s ease !important; /* Smooth transform transition */
    white-space: normal !important;
}

.services-dropdown a:hover,
.mobile-accordion-link:hover {
    color: #C1121F !important;
    opacity: 1 !important;
    transform: translateX(4px) !important; /* Tap push shift animation */
}

.menu-cta {
    margin-top: 48px !important; /* Luxury CTA spacing */
    display: flex;
    flex-direction: column;
    gap: 16px !important;
    width: 100%;
    max-width: 300px;
}

.menu-cta .btn {
    height: 52px !important; /* Equal height */
    font-size: 13px !important; /* Premium typography */
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: var(--transition-medium);
}

.mobile-cta-primary {
    background-color: var(--color-gold) !important;
    color: var(--color-dark) !important;
    border: 1px solid var(--color-gold) !important;
}

.mobile-cta-primary:hover {
    background-color: var(--color-gold-hover) !important;
    border-color: var(--color-gold-hover) !important;
}

.mobile-cta-secondary {
    background-color: transparent !important;
    color: var(--color-pure-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important; /* Subtle white border */
}

.mobile-cta-secondary:hover {
    border-color: var(--color-pure-white) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* -------------------------------------------------------------
   HOME PAGE HERO SECTION
   ------------------------------------------------------------- */
.hero-section,
.hero-content,
.hero-text-wrapper {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(193, 18, 31, 0.15); /* Luxury red bottom border */
    padding-top: 120px;
    padding-bottom: 80px;
    background-position: center center;
    background-size: cover;
}

.hero-section::before {
    display: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--color-soft-white-real)); /* Smooth bottom visual fade to soft white body background */
    z-index: 2;
    pointer-events: none;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.85) contrast(1.05);
    background: #FFFFFF;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.40)
        ),
        linear-gradient(
            to right,
            rgba(193, 18, 31, 0.08),
            transparent
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin-top: 4rem;
}

.hero-content .tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-content h1,
.hero-title {
    font-size: clamp(42px, 9vw, 72px); /* Responsive luxury sizing */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 0.95;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    color: var(--color-pure-white-real) !important; /* Force white text contrast */
}

.hero-content p,
.hero-description {
    font-size: 1.15rem;
    color: #e5e5e5 !important; /* Force light text contrast */
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-actions,
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-text-wrapper {
    max-width: 100%;
}

.hero-btn {
    /* inherits general button styles */
}

.mobile-header {
    /* fallback handled by general layout */
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 5rem;
        padding: 0 24px;
    }
    .hero-content h1 {
        margin-bottom: 1.25rem;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------
   TRUST SECTION STRIP
   ------------------------------------------------------------- */
.trust-strip {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E8E8E8;
    padding: 2.5rem 0;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
}

@media (max-width: 992px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 576px) {
    .trust-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* -------------------------------------------------------------
   ABOUT PREVIEW SECTION (Storytelling Grid)
   ------------------------------------------------------------- */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-preview-text h3 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-preview-text p {
    color: var(--color-grey);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-preview-text blockquote {
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-white);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.about-preview-visuals {
    position: relative;
    padding-bottom: 40px;
}

.about-image-primary {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-grey-dark);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    aspect-ratio: 4/5;
    background: radial-gradient(circle at center, #444 0%, #222 100%);
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    z-index: 3;
    border: 3px solid var(--color-dark);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    aspect-ratio: 1/1;
    background: radial-gradient(circle at center, #666 0%, #333 100%);
}

@media (max-width: 992px) {
    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .about-preview-visuals {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* -------------------------------------------------------------
   SERVICES PREVIEW GRID
   ------------------------------------------------------------- */
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    height: 480px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: var(--transition-slow);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%) brightness(0.65);
    z-index: 1;
    transition: var(--transition-slow);
}

/* CSS fallback background patterns for missing service images */
.service-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FAFAFA;
    opacity: 0.9;
    z-index: -1;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17,17,17,0) 40%, rgba(17,17,17,0.95) 100%);
    z-index: 2;
    transition: var(--transition-slow);
}

.service-card-content {
    position: relative;
    z-index: 3;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-medium);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--color-grey-light);
    margin-bottom: 1.5rem;
    opacity: 0;
    transition: var(--transition-medium);
    font-weight: 300;
}

.service-card-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-medium);
}

/* Hover States for Service Card */
.service-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.service-card:hover .service-card-bg {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(0.5);
}

.service-card:hover .service-card-content {
    transform: translateY(0);
}

.service-card:hover p,
.service-card:hover .service-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover h3 {
    color: var(--color-gold);
}

@media (max-width: 992px) {
    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-preview-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        height: 400px;
    }
}

/* -------------------------------------------------------------
   LUXURY SERVICES SECTION (WHAT WE OFFER)
   ------------------------------------------------------------- */
.luxury-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ==================================================
   LUXURY SERVICE CARDS — ALL STATES DEFAULT & HOVER
   ================================================== */
.luxury-service-card,
.luxury-service-card:hover,
.luxury-service-card.active,
.luxury-service-card:focus,
.luxury-service-card:focus-within,
.section-padding .luxury-service-card {
    background: #FFFFFF !important;
    border: 1px solid #E5E5E5 !important;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.luxury-service-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.luxury-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.luxury-service-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(193, 18, 31, 0.15);
    background: rgba(193, 18, 31, 0.02);
    color: var(--color-primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.luxury-service-icon svg {
    width: 22px;
    height: 22px;
}

.luxury-service-badge,
.luxury-service-card .luxury-service-badge,
.section-padding .luxury-service-card .luxury-service-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #C1121F !important;
    background: rgba(193, 18, 31, 0.07) !important;
    border: 1px solid rgba(193, 18, 31, 0.22) !important;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Service Title — Default, Focus, Active, Unhovered */
.luxury-service-title,
.luxury-service-card .luxury-service-title,
.luxury-service-card h3,
.luxury-service-card.active .luxury-service-title,
.luxury-service-card:focus .luxury-service-title,
.luxury-service-card:focus-within .luxury-service-title,
.section-padding .luxury-service-card .luxury-service-title,
.section-padding .luxury-service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600 !important;
    color: #111111 !important;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Service Description — Default, Hover, Focus, Active */
.luxury-service-description,
.luxury-service-card .luxury-service-description,
.luxury-service-card p,
.luxury-service-card:hover .luxury-service-description,
.luxury-service-card:hover p,
.luxury-service-card.active .luxury-service-description,
.luxury-service-card:focus .luxury-service-description,
.luxury-service-card:focus-within .luxury-service-description,
.section-padding .luxury-service-card .luxury-service-description,
.section-padding .luxury-service-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.8 !important;
    color: #5A5A5A !important;
    margin: 0;
    font-weight: 400 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Explore Link — Default */
.luxury-service-link,
.luxury-service-card .luxury-service-link,
.section-padding .luxury-service-card .luxury-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #C1121F !important;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.luxury-service-link svg {
    transition: transform 0.3s ease;
}

/* Hover States */
.luxury-service-card:hover {
    transform: translateY(-6px);
    border-color: #C1121F !important;
    background: #FFFFFF !important;
    box-shadow: 0 16px 45px rgba(193, 18, 31, 0.12) !important;
}

.luxury-service-card:hover .luxury-service-title,
.luxury-service-card:hover h3 {
    color: #C1121F !important;
}

.luxury-service-card:hover .luxury-service-icon {
    background: #C1121F;
    color: #FFFFFF;
    border-color: #C1121F;
}

.luxury-service-card:hover .luxury-service-link {
    color: #8F0D16 !important;
}

.luxury-service-card:hover .luxury-service-link svg {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .luxury-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .luxury-services-grid {
        grid-template-columns: 1fr;
    }
    .luxury-service-card {
        min-height: auto;
    }
}

/* -------------------------------------------------------------
   BUILT TO PERFORM SECTION (WHY MICROCONCRETE)
   ------------------------------------------------------------- */
.perform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.perform-card {
    flex: 0 1 calc(33.333% - 1.34rem);
    min-width: 320px;
    box-sizing: border-box;
    background: var(--color-pure-white-real);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 3rem 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.perform-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(193, 18, 31, 0.2);
    background: rgba(193, 18, 31, 0.08); /* Light red background */
    color: var(--color-primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(169, 29, 34, 0.05);
}

.perform-icon svg {
    width: 26px;
    height: 26px;
}

.perform-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-pure-white);
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.perform-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: black;
    margin: 0;
    font-weight: 300;
}

/* Hover States for Feature Cards */
.perform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(169, 29, 34, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.perform-card:hover::before {
    opacity: 1;
}

.perform-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary-red);
    box-shadow: 0 15px 35px rgba(193, 18, 31, 0.08), 0 0 20px rgba(193, 18, 31, 0.02);
}

.perform-card:hover .perform-title {
    color: var(--color-primary-red);
}

.perform-card:hover .perform-icon {
    background: rgba(193, 18, 31, 0.15); /* Brighter red glow */
    border-color: var(--color-primary-red);
    box-shadow: 0 0 15px rgba(193, 18, 31, 0.15);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .perform-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .perform-card {
        flex: 0 1 100%;
        min-width: auto;
    }
}

/* -------------------------------------------------------------
   PROJECTS MASONRY PORTFOLIO
   ------------------------------------------------------------- */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-grey-light);
    transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(193, 18, 31, 0.02);
}

.projects-masonry {
    column-count: 3;
    column-gap: 2rem;
    width: 100%;
}

.project-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-image {
    width: 100%;
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

/* CSS gradient fallbacks for empty images */
.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #555 0%, #222 100%);
    opacity: 0.9;
    z-index: -1;
}

/* Vary heights for visual masonry heights if ratios are different */
.project-item:nth-child(2n) .project-image {
    aspect-ratio: 4/5;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 50%, rgba(17, 17, 17, 0.95) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-medium);
    z-index: 2;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover .project-image {
    transform: scale(1.06);
}

.project-overlay h4 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.project-overlay .project-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-size: 0.8rem;
    color: var(--color-grey-light);
    font-weight: 300;
}

@media (max-width: 992px) {
    .projects-masonry {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .projects-masonry {
        column-count: 1;
    }
}

/* -------------------------------------------------------------
   CLIENTS SECTION (Infinite Horizontal Scroll)
   ------------------------------------------------------------- */
.clients-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.01);
}

.clients-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
    gap: 5rem;
}

.clients-marquee-track:hover {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 180px;
    opacity: 0.35;
    transition: var(--transition-medium);
}

.logo-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-medium);
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}

.logo-item:hover img {
    filter: drop-shadow(0 0 8px rgba(193, 18, 31, 0.45)) brightness(1.2);
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* -------------------------------------------------------------
   TESTIMONIAL SECTION
   ------------------------------------------------------------- */
.testimonial-swiper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    padding: 3rem 2rem 2.5rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition-slow);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--color-gold);
    line-height: 1;
    position: absolute;
    top: -5px;
    left: 20px;
    opacity: 0.1;
    pointer-events: none;
}

.card-quote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--color-grey-light);
    font-weight: 300;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.card-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-grey-dark) 0%, #FFFFFF 100%);
    border: 1px solid rgba(193, 18, 31, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-pure-white);
    margin-bottom: 0.2rem;
}

.author-meta {
    font-size: 0.75rem;
    color: var(--color-gold);
    opacity: 0.85;
    letter-spacing: 0.05em;
}

.card-stars {
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Swiper Pagination Elongated Gold Custom Bullets */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
    width: 8px !important;
    height: 8px !important;
    transition: var(--transition-medium) !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-gold) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* -------------------------------------------------------------
   FINAL CTA SECTION
   ------------------------------------------------------------- */
.final-cta-section {
    position: relative;
    text-align: center;
    background: linear-gradient(rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.9)), url('../../img/new-1.png') no-repeat center center;
    background-size: cover;
    border-top: 1px solid rgba(193, 18, 31, 0.15);
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C1121F;
    opacity: 1;
    z-index: -1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--color-grey-light);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .cta-content p {
        font-size: 1rem;
    }
}

/* -------------------------------------------------------------
   INNER PAGE HERO WRAPPER
   ------------------------------------------------------------- */
.inner-hero {
    position: relative;
    padding: 12rem 0 6rem 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(193, 18, 31, 0.12); /* Luxury gold bottom border */
}

.inner-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--color-soft-white-real)); /* Smooth bottom visual fade */
    z-index: 1;
    pointer-events: none;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, #C1121F 0%, #8F0D16 100%); /* Premium red gradient */
    opacity: 0.95;
    z-index: -1;
}

.inner-hero-content {
    max-width: 800px;
}

.inner-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-pure-white-real) !important; /* Force white text contrast */
}

.inner-hero p {
    font-size: 1.15rem;
    color: var(--color-grey);
    font-weight: 300;
}

.inner-breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-grey);
    margin-bottom: 1rem;
}

.inner-breadcrumbs a:hover {
    color: var(--color-gold);
}

.inner-breadcrumbs .separator {
    color: var(--color-grey-dark);
}

@media (max-width: 768px) {
    .inner-hero {
        padding: 9rem 0 4rem 0;
    }
    .inner-hero h1 {
        font-size: 2.5rem;
    }
}

/* -------------------------------------------------------------
   ABOUT US PAGE STYLING
   ------------------------------------------------------------- */
.about-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 7.5rem;
}

.about-story-row:nth-child(even) {
    direction: rtl;
}

.about-story-row:nth-child(even) .about-story-text {
    direction: ltr;
}

.about-story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-story-text p {
    color: var(--color-grey);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.about-story-img {
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 16/10;
    background: radial-gradient(circle at center, #555 0%, #222 100%);
}

@media (max-width: 992px) {
    .about-story-row {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 4.5rem;
    }
    .about-story-row:nth-child(even) {
        direction: ltr;
    }
}

/* -------------------------------------------------------------
   SERVICES PAGE STYLING
   ------------------------------------------------------------- */
.services-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card-full {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    border: 1px solid #E5E5E5 !important;
    background-color: #FFFFFF !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-full:hover {
    border-color: #C1121F !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 15px 45px rgba(193, 18, 31, 0.12) !important;
    transform: translateY(-6px);
}

.service-card-full-img {
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

.service-card-full-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #444 0%, #222 100%);
    opacity: 0.9;
    z-index: -1;
}

.service-card-full-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-full-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111111 !important;
    font-weight: 700 !important;
}

.service-card-full-content p {
    color: #555555 !important;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 400 !important;
    line-height: 1.8 !important;
}

.service-card-full-content .text-gold {
    display: inline-block;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em !important;
    color: #C1121F !important;
    background: rgba(193, 18, 31, 0.08) !important;
    border: 1px solid rgba(193, 18, 31, 0.20) !important;
    padding: 0.35rem 0.75rem !important;
    border-radius: 100px !important;
    margin-bottom: 1rem !important;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .services-grid-page {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-card-full {
        grid-template-columns: 1fr;
    }
    .service-card-full-content {
        padding: 1.75rem;
    }
}

/* -------------------------------------------------------------
   DYNAMIC SERVICE DETAIL PAGE STYLING
   ------------------------------------------------------------- */
.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
}

.detail-main h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.detail-main p {
    color: var(--color-grey-light);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.detail-features {
    margin: 3.5rem 0;
}

.detail-features h3, .detail-applications h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.features-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.features-item span {
    font-size: 1rem;
    color: var(--color-white);
    font-weight: 300;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-box {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-box-gold {
    border-color: var(--color-gold);
    background-color: rgba(193, 18, 31, 0.02);
}

.sidebar-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-grey-light);
    font-weight: 300;
}

.benefits-list li {
    position: relative;
    padding-left: 1.25rem;
}

.benefits-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--color-gold);
}

.sidebar-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-nav-link {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--color-grey);
}

.sidebar-nav-link:hover, .sidebar-nav-link.active {
    color: var(--color-gold);
    border-bottom-color: rgba(193, 18, 31, 0.2);
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

/* -------------------------------------------------------------
   CONTACT PAGE & INQUIRY FORM
   ------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
}

.contact-form-wrapper h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    color: var(--color-grey);
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-control {
    width: 100%;
    position: relative;
}

.form-control input,
.form-control textarea,
.form-control select {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-grey-dark);
    font-size: 0.95rem;
    color: var(--color-pure-white);
    background-color: transparent;
    transition: var(--transition-fast);
}

.form-control textarea {
    min-height: 120px;
    resize: none;
}

/* Focus styles */
.form-control input:focus,
.form-control textarea:focus,
.form-control select:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.form-control label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 0.95rem;
    color: var(--color-grey);
    pointer-events: none;
    transition: var(--transition-medium);
}

/* Floating labels effect */
.form-control input:focus ~ label,
.form-control input:not(:placeholder-shown) ~ label,
.form-control textarea:focus ~ label,
.form-control textarea:not(:empty) ~ label,
.form-control select:focus ~ label,
.form-control select:not([value=""]) ~ label {
    top: -10px;
    font-size: 0.75rem;
    color: var(--color-gold);
}

/* Alert response banners */
.form-response {
    display: none;
    padding: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    border: 1px solid;
}

.form-response.success {
    display: block;
    background-color: rgba(193, 18, 31, 0.05);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.form-response.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.05);
    border-color: #dc3545;
    color: #dc3545;
}

/* Contact Info Sidebar */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-gold-20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-info-text p, .contact-info-text a {
    color: var(--color-grey);
    font-size: 0.95rem;
    font-weight: 300;
}

.contact-info-text a:hover {
    color: var(--color-gold);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .form-group-full {
        grid-column: span 1;
    }
}

/* Google Map Embed Container */
.map-section {
    width: 100%;
    height: 450px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(90%) contrast(1.2);
}

/* -------------------------------------------------------------
   LUXURY FOOTER
   ------------------------------------------------------------- */
.footer {
    background-color: #FFFFFF !important;
    border-top: 1px solid #E8E8E8 !important;
    padding: 80px 0 50px 0 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr; /* Custom widths for balanced alignment */
    gap: 4.5rem; /* Expanded spacing between columns */
    margin-bottom: 6rem;
}

@media (min-width: 993px) {
    .footer-col {
        position: relative;
    }
    .footer-col:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 10%;
        right: -2.25rem;
        height: 80%;
        width: 1px;
        background: rgba(255, 255, 255, 0.06); /* Subtle vertical divider lines */
    }
}

.footer-logo-desc {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.footer .logo {
    display: inline-block;
    align-self: flex-start; /* Prevent logo image stretching */
}

.footer .logo-img {
    width: auto;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    transition: var(--transition-medium);
}

.footer-logo-desc p {
    color: #8c8c8c; /* Softer text color for luxury readability */
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}.footer-col h4 {
    font-family: var(--font-heading); /* Serif font for heading elegance */
    font-size: 1.15rem; /* Serif size rhythm */
    font-weight: 500;
    color: var(--color-pure-white-real); /* Force pure white */
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--color-accent-red); /* Minimal red accent line */
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem; /* Expanded spacing between links */
}

.footer-links a {
    color: #e5e5e5; /* Light grey text on red background */
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--transition-medium);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent-red);
    transform: translateX(4px); /* Minimal luxury slide on hover */
}

.footer-contact-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Thin white-tinted divider */
    padding-top: 1.75rem;
}

.footer-contact-cta h4 {
    font-family: var(--font-body);
    font-size: 0.75rem; /* Sleek small sub-heading */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-pure-white-real); /* Force white */
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.footer-contact-cta h4::after {
    display: none; /* Hide underline for sub-heading */
}

.contact-cta-link {
    color: #e5e5e5;
    font-size: 0.85rem;
    font-weight: 300;
    transition: var(--transition-fast);
}

.contact-cta-link:hover {
    color: var(--color-accent-red);
    transform: none;
}

.footer-newsletter p {
    color: #8c8c8c;
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(193, 18, 31, 0.2); /* Gold accent underline */
    padding-bottom: 0.25rem;
    transition: var(--transition-medium);
}

.newsletter-form:focus-within {
    border-bottom-color: var(--color-gold);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.75rem 0;
    font-size: 0.85rem;
    color: var(--color-pure-white);
    background: transparent;
}

.newsletter-form input::placeholder {
    color: #555555;
    font-weight: 300;
}

.newsletter-btn {
    padding: 0.75rem 0.5rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    color: var(--color-pure-white);
    transform: scale(1.05);
}

/* Footer Bottom Strip */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Thin luxury divider line */
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.65); /* Copyright text default color */
    font-size: 0.75rem;
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-accent-red);
}

.footer-bottom .credit-link {
    color: var(--color-accent-red);
    text-decoration: none;
    position: relative;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-bottom .credit-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #FFFFFF;
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.footer-bottom .credit-link:hover {
    color: #FFFFFF !important;
}

.footer-bottom .credit-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%; /* Circle social icons for architecture studio feel */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c8c8c;
    transition: var(--transition-medium);
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(193, 18, 31, 0.05);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* -------------------------------------------------------------
   RESPONSIVE BOTTOM CTA STRIP (Redesigned with Premium Glassmorphism)
   ------------------------------------------------------------- */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Compact professional height */
    background: rgba(17, 17, 17, 0.85); /* Luxury dark glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(193, 18, 31, 0.35); /* Elegant gold border */
    z-index: 990;
    grid-template-columns: 1fr 1fr; /* Equal width */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-btn {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* Better typography spacing and proper icon alignment */
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-white);
    transition: var(--transition-fast);
}

.mobile-sticky-btn.btn-wsp {
    border-right: 1px solid rgba(255, 255, 255, 0.08); /* Minimal vertical separator */
}

.mobile-sticky-btn.btn-wsp:hover {
    color: #25D366;
    background-color: rgba(37, 211, 102, 0.05); /* Subtle glass green glow */
}

.mobile-sticky-btn.btn-call {
    color: var(--color-gold);
}

.mobile-sticky-btn.btn-call:hover {
    color: var(--color-pure-white);
    background-color: rgba(193, 18, 31, 0.05); /* Subtle glass gold glow */
}

.mobile-sticky-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    transition: var(--transition-fast);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: grid;
    }
    body {
        padding-bottom: 60px !important; /* Offset for sticky bottom menu */
    }
    
    /* Consistent Mobile Spacing & Card Padding overrides */
    .why-grid {
        gap: 20px !important;
    }
    .why-card {
        padding: 24px !important;
        gap: 20px !important;
    }
    .services-preview-grid {
        gap: 20px !important;
    }
    .service-card {
        padding: 24px !important;
        height: 380px !important;
    }
    .project-overlay {
        padding: 24px !important;
    }
    .projects-masonry {
        column-count: 1 !important;
        column-gap: 0 !important;
    }
    .project-item {
        margin-bottom: 20px !important;
    }
    .form-grid {
        gap: 20px !important;
    }
    .contact-grid {
        gap: 40px !important;
    }
}

/* -------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (Desktop / Tablet)
   ------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 991;
    transition: var(--transition-medium);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .floating-whatsapp {
        display: none; /* Hide in favor of bottom sticky cta on mobile */
    }
}

/* -------------------------------------------------------------
   MATERIAL & FINISH EXPERIENCE SECTION
   ------------------------------------------------------------- */
.material-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.material-experience-card {
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.material-experience-card.card-wide {
    grid-column: span 2;
    height: 350px;
}

.material-visual {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: var(--transition-slow);
}

.texture-concrete {
    background: #FFFFFF;
}
.texture-seamless {
    background: #FAFAFA;
}
.texture-designer {
    background: #FFF5F5;
}

.texture-concrete::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(rgba(193, 18, 31, 0.03) 10%, transparent 80%);
    opacity: 0.8;
}

.texture-seamless::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px) 0 0 / 40px 100%;
    opacity: 0.15;
}

.texture-designer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at bottom right, rgba(193, 18, 31, 0.05) 0%, transparent 70%);
}

.material-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.1) 40%, rgba(17, 17, 17, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    transition: var(--transition-slow);
    z-index: 2;
}

.material-text {
    transform: translateY(20px);
    transition: var(--transition-slow);
}

.material-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

.material-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--color-pure-white);
    transition: var(--transition-medium);
}

.material-text p {
    font-size: 0.9rem;
    color: var(--color-grey-light);
    font-weight: 300;
    opacity: 0.8;
    transition: var(--transition-medium);
}

/* Card Hover Animations */
.material-experience-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.material-experience-card:hover .material-visual {
    transform: scale(1.04);
}

.material-experience-card:hover .material-text {
    transform: translateY(0);
}

.material-experience-card:hover .material-text h3 {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .material-experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .material-experience-card {
        height: 300px;
    }
    .material-experience-card.card-wide {
        grid-column: span 1;
        height: 300px;
    }
    .material-overlay {
        padding: 24px;
    }
    .material-text {
        transform: translateY(0);
    }
}

/* Detail Image Showcase */
.detail-image-showcase {
    margin: 3rem 0;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    .detail-image-showcase {
        margin: 2rem 0;
        aspect-ratio: 4/3;
    }
}

/* Craftsmanship Collage on About Page */
@media (max-width: 991px) {
    .craftsmanship-grid {
        grid-template-columns: 1fr !important;
        gap: 3.5rem !important;
    }
    .craftsmanship-collage {
        margin-top: 2rem;
    }
    .craftsmanship-collage .collage-img {
        margin-top: 0 !important; /* Reset offset layouts on mobile for neatness */
    }
}

/* -------------------------------------------------------------
   DETAIL PAGE GALLERY GRID (LUXURY SECTION IMPROVEMENTS)
   ------------------------------------------------------------- */
.detail-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    background: #FAFAFA;
}

.gallery-item.item-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0) 50%);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 500;
}

/* Fallback gradient styling for detail image showcase */
.detail-image-showcase {
    background: #FAFAFA !important;
}

@media (max-width: 768px) {
    .detail-gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }
    .gallery-item {
        aspect-ratio: 16/10;
    }
    .gallery-item.item-large {
        grid-row: auto;
    }
    .gallery-overlay {
        opacity: 1;
        padding: 1.25rem 1rem;
    }
}

/* Alternating service cards layout on desktop */
@media (min-width: 993px) {
    .services-grid-page .service-card-full:nth-child(even) {
        direction: rtl;
    }
    .services-grid-page .service-card-full:nth-child(even) .service-card-full-content {
        direction: ltr;
    }
}

/* Responsive adjustments for overlapping visual collages on About page */
@media (max-width: 768px) {
    .about-story-visuals {
        height: 320px !important;
        margin-top: 1.5rem;
    }
    .about-story-primary-wrap {
        height: 260px !important;
    }
    .about-story-secondary-wrap {
        height: 140px !important;
    }
}

/* -------------------------------------------------------------
   LUXURY BRAND IMPROVEMENTS (HOVER ZOOMS, COLLAGES, SHADOWS)
   ------------------------------------------------------------- */

/* Homepage Trust Strip Dividers */
@media (min-width: 993px) {
    .trust-item {
        position: relative;
        padding-right: 2.5rem;
    }
    .trust-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(193, 18, 31, 0.15); /* Gold divider line */
    }
}

/* About Page Overlapping Collages Styling */
.about-story-visuals {
    position: relative;
    height: 420px;
    width: 100%;
}

.about-story-primary-wrap {
    position: absolute;
    top: 0;
    width: 85%;
    height: 350px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(193, 18, 31, 0.12); /* Subtle gold accent border */
    transition: var(--transition-slow);
}

.about-story-primary-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.1) 0%, rgba(17, 17, 17, 0.5) 100%);
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.about-story-primary-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-primary-wrap:hover {
    border-color: rgba(193, 18, 31, 0.35);
    box-shadow: 0 40px 80px -10px rgba(193, 18, 31, 0.15), 0 30px 60px -15px rgba(0, 0, 0, 0.8);
}

.about-story-primary-wrap:hover img {
    transform: scale(1.05);
}

.about-story-secondary-wrap {
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
    border: 3px solid var(--color-dark);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75);
    z-index: 2;
    transition: var(--transition-slow);
}

.about-story-secondary-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story-secondary-wrap:hover {
    box-shadow: 0 35px 70px -10px rgba(193, 18, 31, 0.2), 0 25px 50px -12px rgba(0, 0, 0, 0.85);
}

.about-story-secondary-wrap:hover img {
    transform: scale(1.08);
}

/* Positioning rules for mirrored rows */
.visuals-left .about-story-primary-wrap {
    left: 0;
}
.visuals-left .about-story-secondary-wrap {
    right: 0;
}

.visuals-right .about-story-primary-wrap {
    right: 0;
}
.visuals-right .about-story-secondary-wrap {
    left: 0;
}

/* Clients Case Study Visual Container */
.case-study-visual {
    height: 300px;
    border: 1px solid rgba(193, 18, 31, 0.12); /* Subtle gold border */
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition-slow);
}

.case-study-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-visual::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.7) 100%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.8s ease;
}

.case-study-visual:hover {
    border-color: rgba(193, 18, 31, 0.35);
    box-shadow: 0 30px 60px rgba(193, 18, 31, 0.1), 0 20px 40px rgba(0, 0, 0, 0.7);
}

.case-study-visual:hover img {
    transform: scale(1.06);
}

/* Service Detail Gallery Item Hover Border Accent */
.gallery-item {
    transition: border-color var(--transition-slow), box-shadow var(--transition-slow);
}
.gallery-item:hover {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(193, 18, 31, 0.1), 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Services Page Card Hover Zoom */
.service-card-full-img img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card-full:hover .service-card-full-img img {
    transform: scale(1.06);
}

/* -------------------------------------------------------------
   MOBILE HEADER REDESIGN & HERO SPACING POLISH
   ------------------------------------------------------------- */
@media (max-width: 768px) {
    /* Spacious and aligned mobile header container */
    .navbar-container {
        padding: 0 !important; /* Forces alignment with padding on elements */
    }

    /* BMC Logo Fix: aspect ratio contain, custom size, spacing, box-sizing content-box */
    .logo-img {
        height: 48px !important;
        width: auto;
        object-fit: contain;
        padding-left: 24px !important;
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        box-sizing: content-box !important;
    }

    /* Balanced right padding for hamburger touch target */
    .nav-toggles {
        padding-right: 14px !important; /* Total 24px spacing from screen boundary: 14px container + 10px hamburger touch padding */
    }

    /* Hero section spacing adjustments to prevent heading starting too close to navbar */
    .inner-hero {
        padding: 140px 0 60px 0 !important; /* Enforces 140px top space on mobile heroes */
    }

    /* Tighten typography for mobile hero heading */
    .inner-hero h1 {
        font-size: 2.25rem !important;
        line-height: 1.05 !important;
        margin-bottom: 1rem !important;
    }

    /* Text block width limits & editorial heights */
    .inner-hero p {
        font-size: 1rem !important;
        max-width: 320px !important; /* Editorial 320px limits */
        line-height: 1.7 !important; /* Balanced 1.7 editorial height */
    }

    /* Homepage hero adjustments: vertical flex centering layout, safe top spacing */
    .hero-section {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        height: auto !important;
        min-height: 92vh !important; /* Premium height adjustment */
        padding-top: 120px !important;
        padding-bottom: 80px !important;
        background-position: 65% center !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .hero-section::before {
        display: none !important;
    }

    .hero-video-fallback {
        object-position: 65% center !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 32px !important;
        padding-right: 32px !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-text-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .hero-title {
        font-size: clamp(52px, 8vw, 68px) !important; /* Stable responsive typography */
        line-height: 0.90 !important;
        letter-spacing: -2px !important;
        margin-bottom: 28px !important;
        max-width: 100% !important;
        word-break: normal !important;
    }

    .hero-title span {
        display: inline !important; /* Prevent bad word breaks inside spans */
    }

    .hero-description {
        font-size: 18px !important;
        line-height: 1.7 !important;
        max-width: 90% !important;
        margin-bottom: 40px !important;
        opacity: 0.9 !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        margin-top: 20px !important;
    }

    .hero-btn {
        height: 58px !important;
        font-size: 14px !important;
        letter-spacing: 2px !important;
    }

    .mobile-header {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    /* Enforce 16px / 24px / 48px mobile spacing hierarchy */
    .about-story-row {
        gap: 24px !important;
        margin-bottom: 48px !important;
    }
    .services-preview-grid, .why-grid, .material-experience-grid {
        gap: 24px !important;
    }
    .section-header {
        margin-bottom: 24px !important;
    }
    .section-padding {
        padding: 48px 24px !important; /* Left/right padding 24px, vertical spacing 48px */
    }
    .about-preview-grid {
        gap: 24px !important;
    }
}

/* Breadcrumbs Spacing and Typographical Styling (Global overrides) */
.inner-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 12px !important; /* Exact 12px breadcrumbs */
    text-transform: uppercase;
    letter-spacing: 2px !important; /* Exact 2px spacing */
    color: var(--color-grey);
    opacity: 0.8; /* Higher baseline opacity for readability in glass container */
    background: rgba(255, 255, 255, 0.02); /* Subtle glass base overlay */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Soft border boundary */
    backdrop-filter: blur(8px); /* Subtle glass blur */
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 1.25rem !important; /* Spacious padding */
    border-radius: 100px !important; /* Pill capsule styling */
    margin-bottom: 2rem !important; /* Breathable spacing from header */
}

.inner-breadcrumbs a {
    transition: var(--transition-fast);
}

.inner-breadcrumbs a:hover {
    color: var(--color-gold);
    opacity: 1;
}

.inner-breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.25) !important;
}

/* Clamped technical section heading size */
.detail-main h2 {
    font-size: clamp(42px, 8vw, 58px) !important;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* -------------------------------------------------------------
   ABOUT PAGE REDESIGN STYLES
   ------------------------------------------------------------- */
.about-redesign-section {
    background-color: var(--color-dark);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.about-redesign-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3.5rem;
}

@media (max-width: 992px) {
    .about-redesign-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-story-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-story-text-p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-grey-light);
    font-weight: 300;
    margin: 0;
}

.about-story-text-p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-pure-white);
    font-weight: 400;
}

/* 2x2 Cards Grid */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
}

.about-premium-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 100%;
    box-sizing: border-box;
}

.about-premium-card:hover {
    transform: translateY(-5px);
    border-color: rgba(193, 18, 31, 0.35);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(193, 18, 31, 0.02);
}

.about-card-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(193, 18, 31, 0.15);
    background: rgba(193, 18, 31, 0.02);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-premium-card:hover .about-card-icon {
    background: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}

.about-card-icon svg {
    width: 20px;
    height: 20px;
}

.about-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-pure-white);
    margin: 0;
    letter-spacing: -0.2px;
}

.about-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-grey-light);
    margin: 0;
    font-weight: 300;
}

.about-redesign-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-pure-white);
    margin: 1.25rem 0 2rem 0;
    letter-spacing: -0.02em;
}

/* Why Choose Section styling specifically for About Page */
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

@media (max-width: 992px) {
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-why-grid {
        grid-template-columns: 1fr;
    }
}

.about-why-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.4s ease;
}

.about-why-card:hover {
    border-color: var(--color-gold);
    background: #FFFFFF;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(193, 18, 31, 0.05);
}

.about-why-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(193, 18, 31, 0.2);
    background: rgba(193, 18, 31, 0.05);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.about-why-card:hover .about-why-icon {
    background: var(--color-gold);
    color: #FFFFFF;
    border-color: var(--color-gold);
}

.about-why-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
}

.about-why-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555555;
    margin: 0;
    font-weight: 300;
}

/* -------------------------------------------------------------
   SERVICE DETAIL LUXURY GALLERY & LIGHTBOX
   ------------------------------------------------------------- */
.luxury-gallery-section {
    background-color: #FFFFFF;
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    margin-top: 2rem;
}

.service-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.service-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
    transition: all 0.4s ease;
}

/* Hover effects background gradient overlay */
.service-gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85));
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-gallery-item:hover::before {
    opacity: 1;
}

.service-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 1px rgba(255, 255, 255, 0.1);
}

.service-gallery-item:hover img {
    transform: scale(1.05);
}

.service-gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.75rem;
    box-sizing: border-box;
    z-index: 3;
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.service-gallery-item:hover .service-gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.service-gallery-tag {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.service-gallery-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-pure-white);
    margin: 0;
}

/* Responsiveness Constraints */
@media (max-width: 768px) {
    .service-gallery-grid {
        gap: 1.25rem;
    }
}

@media (max-width: 576px) {
    .service-gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns where possible */
        gap: 1rem;
    }
    .service-gallery-info {
        padding: 1.5rem 1.25rem;
        opacity: 1;
        transform: translateY(0);
    }
    .service-gallery-item::before {
        opacity: 0.7;
    }
}

@media (max-width: 480px) {
    .service-gallery-grid {
        grid-template-columns: 1fr; /* 1 column stacked if needed */
    }
}

/* Fullscreen Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.95);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 100002;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #FFFFFF;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100002;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 100001;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content img.fade-in {
    opacity: 1;
}

.lightbox-caption {
    margin-top: 1.5rem;
    text-align: center;
    width: 100%;
}

#lightbox-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.5rem;
}

#lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-pure-white);
    margin: 0;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
    }
    .lightbox-prev {
        left: 12px;
    }
    .lightbox-next {
        right: 12px;
    }
    .lightbox-close {
        top: 12px;
        right: 12px;
        font-size: 2rem;
    }
    #lightbox-title {
        font-size: 1.1rem;
    }
}

/* Gallery Premium Divider */
.gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 5rem auto 4rem auto;
    width: 100%;
    max-width: 800px;
}

.divider-line {
    flex: 1;
    height: 1px;
}

.gallery-divider .divider-line:first-of-type {
    background: linear-gradient(to left, rgba(193, 18, 31, 0.25), rgba(255, 255, 255, 0));
}

.gallery-divider .divider-line:last-of-type {
    background: linear-gradient(to right, rgba(193, 18, 31, 0.25), rgba(255, 255, 255, 0));
}

.divider-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.05em;
    color: var(--color-grey-light);
    white-space: nowrap;
}

/* Gallery After CTA styling */
.gallery-cta {
    margin-top: 5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 3.5rem 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.gallery-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-pure-white);
}

.gallery-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .gallery-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    .gallery-cta-buttons .btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------
   BMC FINISH STUDIO SECTION
   ------------------------------------------------------------- */
.finish-studio-section {
    background-color: var(--color-dark);
}

.finish-studio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.finish-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.finish-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 18px;
}

.finish-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.finish-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.25rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 70%, rgba(10, 10, 10, 0) 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.finish-category {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold); /* Custom Red theme color */
    display: block;
    margin-bottom: 0.25rem;
}

.finish-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #FFFFFF;
    margin: 0 0 0.25rem 0;
    font-weight: 500;
    line-height: 1.3;
}

.finish-recommendation {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    font-weight: 300;
}

/* Hover effects */
.finish-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(193, 18, 31, 0.35);
    transform: translateY(-5px);
}

.finish-card:hover .finish-img {
    transform: scale(1.08);
}

.finish-card:hover .finish-info {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox Premium Customizations */
.finish-lightbox-content {
    max-width: 90vw;
    width: auto;
    max-height: 90vh;
}

.finish-lightbox-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 1050px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.finish-lightbox-image-side {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #FAFAFA;
}

.finish-lightbox-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.finish-lightbox-image-side img.fade-in {
    opacity: 1;
}

.finish-lightbox-info-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.finish-lightbox-category {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.75rem;
}

.finish-lightbox-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.finish-lightbox-divider {
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, var(--color-gold), transparent);
    margin-bottom: 1.5rem;
}

.finish-lightbox-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.finish-lightbox-spec {
    background: #FAFAFA;
    border: 1px solid #E8E8E8;
    padding: 1.25rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.finish-lightbox-spec strong {
    color: #111111;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.finish-lightbox-spec span {
    color: #555555;
    font-weight: 300;
}

.finish-lightbox-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.finish-lightbox-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsiveness Constraints */
@media (max-width: 1200px) {
    .finish-studio-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .finish-studio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .finish-info {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 80%, rgba(10, 10, 10, 0) 100%);
        padding: 1.25rem 1rem 1rem 1rem;
    }
    
    .finish-name {
        font-size: 1rem;
    }
    
    .finish-lightbox-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        width: 90vw;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .finish-lightbox-image-side {
        max-height: 250px;
    }
    
    .finish-lightbox-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .finish-studio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .finish-image-wrapper {
        border-radius: 12px;
    }
    
    .finish-card {
        border-radius: 12px;
    }
    
    .finish-info {
        padding: 0.75rem;
    }
    
    .finish-name {
        font-size: 0.9rem;
    }
    
    .finish-category {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }
    
    .finish-recommendation {
        font-size: 0.65rem;
    }
    
    .finish-lightbox-grid {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .finish-lightbox-title {
        font-size: 1.5rem;
    }
    
    .finish-lightbox-desc {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .finish-lightbox-spec {
        padding: 1rem;
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
    }
    
    .finish-lightbox-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .finish-lightbox-actions .btn {
        width: 100%;
    }
}

/* -------------------------------------------------------------
   VISUAL HIERARCHY & CONTRAST REFINEMENTS
   ------------------------------------------------------------- */

/* 1. Header Red Logo Filter */
.navbar-logo img,
.menu-logo img,
.footer-logo img {
    filter: brightness(0) saturate(100%) invert(16%) sepia(87%) saturate(6361%) hue-rotate(355deg) brightness(90%) contrast(106%) !important;
}

/* 2. Button styling refinements */
.btn-gold {
    background-color: var(--color-primary-red) !important;
    color: var(--color-pure-white-real) !important;
    border: 1px solid var(--color-primary-red) !important;
}

.btn-gold:hover {
    background-color: var(--color-dark-red) !important;
    color: var(--color-pure-white-real) !important;
    border-color: var(--color-dark-red) !important;
}

/* Secondary outline button styling on dark background zones */
.hero-section .btn-outline,
.inner-hero .btn-outline,
.final-cta-section .btn-outline,
.lightbox-overlay .btn-outline,
footer .btn-outline,
.footer .btn-outline,
.gallery-cta .btn-outline,
section[style*="background-color: #FFFFFF"] .btn-outline,
section[style*="background-color: var(--color-dark-red)"] .btn-outline {
    background-color: transparent !important;
    border: 1px solid #FFFFFF !important;
    color: #FFFFFF !important;
}

.hero-section .btn-outline:hover,
.inner-hero .btn-outline:hover,
.final-cta-section .btn-outline:hover,
.lightbox-overlay .btn-outline:hover,
footer .btn-outline:hover,
.footer .btn-outline:hover,
.gallery-cta .btn-outline:hover,
section[style*="background-color: #FFFFFF"] .btn-outline:hover,
section[style*="background-color: var(--color-dark-red)"] .btn-outline:hover {
    background-color: var(--color-dark-red) !important;
    border-color: var(--color-dark-red) !important;
    color: #FFFFFF !important;
}

/* Navbar Consultation CTA button - Red outline for light background readability */
#nav-cta-btn.btn-outline {
    background-color: #FFFFFF !important;
    border: 1px solid var(--color-primary-red) !important;
    color: var(--color-primary-red) !important;
}

#nav-cta-btn.btn-outline:hover {
    background-color: var(--color-primary-red) !important;
    color: #FFFFFF !important;
    border-color: var(--color-primary-red) !important;
    box-shadow: 0 10px 20px rgba(193, 18, 31, 0.15) !important;
}

/* Mobile Nav Drawer WhatsApp Button readability */
.mobile-cta-secondary.btn-outline {
    background-color: transparent !important;
    border: 1px solid var(--color-primary-red) !important;
    color: var(--color-primary-red) !important;
}

.mobile-cta-secondary.btn-outline:hover {
    background-color: var(--color-primary-red) !important;
    color: #FFFFFF !important;
    border-color: var(--color-primary-red) !important;
}

/* 3. High Contrast Readability on Dark Backgrounds */
.hero-section,
.inner-hero,
.final-cta-section,
.lightbox-overlay,
footer,
.footer,
.material-overlay,
.gallery-cta {
    color: #FFFFFF !important;
}

/* Headings on dark backgrounds must be pure white (excluding cards with white backgrounds) */
.hero-section h1,
.hero-section h2,
.hero-section h3,
.inner-hero h1,
.inner-hero h2,
.inner-hero h3,
.final-cta-section h1,
.final-cta-section h2,
.final-cta-section h3,
footer h1,
footer h2,
footer h3,
footer h4,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.material-text h3,
.gallery-cta h3 {
    color: #FFFFFF !important;
}

/* Paragraph and description texts on dark backgrounds must be high-contrast light grey (excluding cards) */
.hero-section p,
.hero-description,
.inner-hero p,
.final-cta-section p,
.lightbox-overlay p,
footer p,
.footer p,
.material-text p,
.gallery-cta p {
    color: #E5E5E5 !important;
    opacity: 1 !important;
}

/* Taglines and subtitles on dark backgrounds should use clear high-contrast light red instead of dark red */
.hero-content .tagline,
.inner-hero .subtitle,
.material-tag {
    color: #FFA5A5 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* =============================================================
   HOMEPAGE LUXURY REDESIGN STYLES
   ============================================================= */

/* 1. Typography */
.hero-title,
.section-header h2,
.promise-section h2,
.luxury-service-title,
.finish-name,
.why-card h3,
.timeline-content h3,
.final-cta-section h2 {
    font-family: var(--font-heading) !important;
}

/* 2. Hero Section Refinements */
@keyframes scrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes floatIndicator {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -8px); }
    100% { transform: translate(-50%, 0); }
}

.hero-scroll-indicator {
    animation: floatIndicator 3s ease-in-out infinite;
}

/* 3. Stats Strip */
.stats-section {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stats-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    letter-spacing: -1.5px;
}

.stat-plus {
    color: rgba(255,255,255,0.85);
}

/* 4. Promise Section (Editorial Split) */
.promise-editorial-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.promise-left h2 {
    font-weight: 300 !important;
    letter-spacing: -1px;
}

.promise-right p {
    font-weight: 400;
}

/* 5. Services Section (Large Image Cards & Luxury Hover) */
.luxury-services-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.luxury-service-card {
    background: var(--color-white);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.luxury-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.luxury-service-card:hover img {
    transform: scale(1.06);
}

.luxury-service-link svg {
    transition: transform 0.3s ease;
}

.luxury-service-link:hover svg {
    transform: translateX(5px);
}

/* 6. Finish Sample Section (Masonry/Grid Showcase & Lightbox compatibility) */
.finish-studio-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.finish-card {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.finish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.finish-card:hover img {
    transform: scale(1.05);
}

/* 7. Why Choose Us (Minimal White Cards, Red Icons, Thin Borders) */
.why-grid {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.why-card {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

/* 8. Process Section (Horizontal Timeline & Scroll Animations) */
.process-timeline {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.timeline-num {
    width: 3.2rem;
    height: 3.2rem;
    background: var(--color-white-bg);
    border: 1px solid rgba(193, 18, 31, 0.2);
    color: var(--color-primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:hover .timeline-num {
    background: var(--color-primary-red);
    color: var(--color-white);
    border-color: var(--color-primary-red);
    box-shadow: 0 8px 20px rgba(193, 18, 31, 0.25);
    transform: scale(1.05);
}

.timeline-content h3 {
    letter-spacing: -0.5px;
}

/* 9. Responsiveness Adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem !important;
    }
    .luxury-services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
    .finish-studio-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 992px) {
    .promise-editorial-grid {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2.5rem !important;
    }
    .process-timeline {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        padding-top: 0 !important;
    }
    .timeline-line {
        display: none !important;
    }
    .timeline-item {
        flex-direction: row !important;
        text-align: left !important;
        align-items: flex-start !important;
        gap: 1.5rem !important;
    }
    .timeline-num {
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.25rem !important;
    }
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .luxury-services-grid {
        grid-template-columns: 1fr !important;
    }
    .finish-studio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .why-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Hero Typography Redesign */
.hero-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 300 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px !important;
    text-transform: none !important;
}

.hero-description {
    font-family: 'Inter', sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.8 !important;
}

/* Red & White Theme Color & Typography Alignment */
.trust-strip,
.about-preview-text,
.services-section,
.finish-studio-section,
.why-section,
.perform-card,
.material-experience-card,
.testimonials-section,
.final-cta-section {
    color: #555555 !important;
}

.trust-strip h2, .trust-strip h3,
.about-preview-text h2, .about-preview-text h3,
.services-section h2, .services-section h3,
.finish-studio-section h2, .finish-studio-section h3,
.why-section h2, .why-section h3,
.perform-card h2, .perform-card h3,
.material-experience-card h2, .material-experience-card h3,
.testimonials-section h2, .testimonials-section h3,
.final-cta-section h2, .final-cta-section h3 {
    color: #111111 !important;
}

.trust-label,
.about-preview-text p,
.luxury-service-description,
.finish-recommendation,
.perform-description,
.material-text p,
.card-quote,
.author-meta,
.final-cta-section p {
    color: #555555 !important;
    opacity: 1 !important;
}

/* Red brand accents */
.text-gold,
.services-section .subtitle,
.finish-studio-section .subtitle,
.why-section .subtitle,
.testimonials-section .subtitle,
.material-tag,
.finish-category,
.luxury-service-badge,
.trust-stars,
.trust-number {
    color: #C1121F !important;
}

.timeline-num {
    border: 1px solid rgba(193, 18, 31, 0.3) !important;
    color: #C1121F !important;
}

.timeline-item:hover .timeline-num {
    background: #C1121F !important;
    color: #FFFFFF !important;
    border-color: #C1121F !important;
}

/* Force hero overlays to remain high contrast white for text readability */
.hero-title,
.hero-title span {
    color: #FFFFFF !important;
}

.hero-description {
    color: rgba(255,255,255,0.85) !important;
}

.hero-content .tagline {
    color: #FFA5A5 !important;
}

/* Premium Red & White Footer Styling */
.footer {
    background-color: #FFFFFF !important;
    border-top: 1px solid #E8E8E8 !important;
    color: #111111 !important;
    padding: 80px 0 50px 0 !important; /* Fixed padding: Top 80px, Bottom 50px */
}

.footer-top-cta-strip {
    background-color: #C1121F;
    padding: 3.5rem 0;
    width: 100%;
}

.footer-cta-btn {
    background-color: #FFFFFF;
    color: #C1121F !important;
    border: 1px solid #FFFFFF;
    padding: 1.15rem 2.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta-btn:hover {
    background-color: #FCEBEC !important;
    color: #C1121F !important;
    border-color: #FCEBEC !important;
    box-shadow: 0 8px 25px rgba(193, 18, 31, 0.1);
    transform: translateY(-2px);
}

.cta-btn-white {
    background-color: #FFFFFF !important;
    color: #C1121F !important;
    border: none !important;
    padding: 1rem 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.cta-btn-white:hover {
    background-color: #FCEBEC !important;
    color: #C1121F !important;
    box-shadow: 0 8px 25px rgba(193, 18, 31, 0.1) !important;
    transform: translateY(-2px) !important;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Consistently equal column widths */
    gap: 3rem !important;
    align-items: start !important; /* Top baseline alignment */
    margin-bottom: 4rem !important;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important; /* Headings Weight 600 */
    color: #111111 !important; /* Headings Color #111111 */
    margin: 0;
}

.footer-col p {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    color: #555555 !important; /* Body text color #555555 */
    line-height: 1.8 !important;
}

.footer-links-list a,
.footer-contact-details,
.footer-contact-details a,
.footer-social-links a,
.footer-bottom-bar,
.footer-bottom-bar a {
    color: #555555 !important; /* Body text color #555555 */
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.footer-links-list a:hover,
.footer-contact-details a:hover,
.footer-social-links a:hover,
.footer-bottom-bar a:hover {
    color: #C1121F !important; /* Hover state Brand Red */
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3rem !important;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .footer-top-cta-strip .container {
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    .footer-cta-btn {
        width: 100% !important;
        text-align: center !important;
    }
    .footer-bottom-bar {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

/* New Homepage Sections Styling */
.material-new-section h2,
.how-we-work-section h2,
.why-bharti-section h2 {
    font-family: 'Cormorant Garamond', serif !important;
}

.material-image-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08) !important;
}

.material-image-frame:hover .hover-zoom-img {
    transform: scale(1.04);
}

@media (max-width: 992px) {
    .material-new-section .about-preview-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
}

/* Footer Bottom Bar Typography & Contrast Overrides */
.footer-bottom-bar p {
    color: #333333 !important;
    font-weight: 500 !important;
    opacity: 1 !important;
}

.footer-bottom-bar a {
    color: #333333 !important;
    font-weight: 500 !important;
    opacity: 1 !important;
    transition: color 0.3s ease !important;
}

.footer-bottom-bar a:hover {
    color: #C1121F !important;
}

/* Built To Perform Section - Premium Redesign */
.why-section .section-header h2.editorial-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(48px, 6vw, 72px) !important; /* 72px desktop */
    font-weight: 300 !important;
    line-height: 1.15 !important;
    margin-bottom: 2rem !important;
    color: #111111 !important;
}

.why-section .section-header p {
    max-width: 600px !important; /* Description width 600px max */
    margin: 0 auto !important;
    text-align: center !important;
}

.perform-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important; /* Desktop: 3 cards first row, 2 cards second row centered */
    gap: 2.5rem !important;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.perform-card {
    flex: 0 1 calc(33.333% - 2.5rem) !important;
    min-width: 320px !important;
    background: #FFFFFF !important; /* White background */
    border: 1px solid #E5E5E5 !important; /* Border 1px solid #E5E5E5 */
    border-radius: 18px !important; /* Border radius 18px */
    box-shadow: 0 18px 45px rgba(0,0,0,.06) !important; /* Shadow */
    padding: 40px !important; /* Padding 40px */
    min-height: 330px !important; /* Minimum height 330px */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
}

/* Thin red line appears at bottom on hover */
.perform-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #C1121F;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.perform-card:hover {
    transform: translateY(-12px) !important; /* Lift card */
    box-shadow: 0 25px 60px rgba(0,0,0,0.12) !important; /* Increase shadow */
    border-color: rgba(193, 18, 31, 0.15) !important;
}

.perform-card:hover::after {
    width: 100%;
}

.perform-icon {
    width: 64px !important; /* Size 64px */
    height: 64px !important;
    background: rgba(193, 18, 31, 0.08) !important; /* Background BMC Red with opacity */
    border-radius: 50% !important; /* Circular icon holders */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #C1121F !important; /* Icon Color */
    margin-bottom: 2.25rem !important;
    transition: background-color 0.4s ease, color 0.4s ease, transform 0.4s ease !important;
}

.perform-icon svg {
    width: 28px !important;
    height: 28px !important;
    transition: transform 0.4s ease !important;
}

/* Icon hover states */
.perform-card:hover .perform-icon {
    background-color: #C1121F !important; /* Background becomes Red */
    color: #FFFFFF !important; /* Icon becomes White */
    transform: scale(1.05); /* Icon scales slightly */
}

.perform-card:hover .perform-icon svg {
    transform: scale(1.1);
}

.perform-title {
    font-family: 'Cormorant Garamond', serif !important;
    color: #111111 !important; /* Headings Color #111111 */
    font-weight: 700 !important; /* Weight 700 */
    font-size: 28px !important; /* Size 28px */
    margin-bottom: 1.25rem !important;
    line-height: 1.3 !important;
}

.perform-description {
    font-family: 'Inter', sans-serif !important;
    color: #666666 !important; /* Description Color #666666 */
    line-height: 1.8 !important; /* Line height 1.8 */
    font-size: 17px !important; /* Font size 17px */
    margin: 0 !important;
}

/* Tablet (2 columns) */
@media (max-width: 1024px) {
    .perform-card {
        flex: 0 1 calc(50% - 2.5rem) !important;
    }
}

/* Mobile (1 column) */
@media (max-width: 768px) {
    .perform-card {
        flex: 0 1 100% !important;
    }
}

/* ==========================================================================
   HOMEPAGE LAYOUT AND STRUCTURE REBUILD (STATS, LOGO GRID, ABOUT GRID)
   ========================================================================== */

/* 1. Statistics Section Rebuild */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    box-sizing: border-box;
}

.stat-number-wrapper {
    color: #C1121F !important; /* BMC Red */
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    line-height: 1;
}

.stat-suffix {
    line-height: 1;
}

.stat-label {
    color: #333333 !important; /* Dark charcoal label */
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0.5rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1.5rem;
    }
    .stat-number-wrapper {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.25rem;
    }
    .stat-item:last-child {
        grid-column: span 2;
        margin-top: 0.5rem;
    }
    .stat-number-wrapper {
        font-size: 2.5rem;
    }
    .stat-label {
        font-size: 0.7rem;
    }
}

/* 2. Clients Logo Showcase Grid */
.clients-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem 2rem;
    align-items: center;
    justify-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.client-logo-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.client-logo-card img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    border-color: #C1121F;
    box-shadow: 0 6px 20px rgba(193, 18, 31, 0.04);
}

.client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 1200px) {
    .clients-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .clients-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem 1.25rem;
    }
    .client-logo-card {
        height: 80px;
        padding: 0.75rem;
    }
}

@media (max-width: 768px) {
    .clients-logo-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem 1rem !important;
    }
    .client-logo-card {
        height: 75px;
        padding: 0.5rem;
    }
}

/* 3. About Section Spacing Adjustments & Theme Optimization */
.about-image-primary {
    border: 1px solid #E5E5E5 !important;
    background-color: #FFFFFF !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    aspect-ratio: 1.2 / 1 !important; /* Balanced landscapish ratio */
    background: none !important;
}

.about-image-secondary {
    position: absolute;
    bottom: -20px !important;
    right: -20px !important;
    width: 55% !important;
    z-index: 3;
    border: 4px solid #FFFFFF !important; /* Premium white border override */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08) !important;
    aspect-ratio: 1 / 1 !important;
    background: none !important;
}

/* Catalogue Section Responsive Wrap */
@media (max-width: 768px) {
    .catalogue-card {
        grid-template-columns: 1fr !important;
    }
    .catalogue-image-side {
        height: 300px !important;
        min-height: auto !important;
    }
    .catalogue-details-side {
        padding: 3rem 1.5rem !important;
    }
}

/* Instagram Showcase Styles */
.instagram-swiper {
    width: 100%;
    padding: 2rem 0;
}
.instagram-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.instagram-card:hover img {
    transform: scale(1.05);
}
.instagram-card:hover .instagram-card-overlay {
    opacity: 1 !important;
}

/* General Swiper responsiveness check */
.swiper-slide {
    flex-shrink: 0;
}

