/* ==========================================================================
   ANAM INTERIORS - LUXURY MODEL STYLESHEET
   Matches Reference Mockup Design Pixel-for-Pixel
   ========================================================================== */

:root {
    --gold-primary: #C5A880;
    --gold-hover: #b38f65;
    --gold-light: #f5efe6;
    --gold-dark: #8c6d46;
    --gold-gradient: linear-gradient(135deg, #d4bb9b 0%, #b8966c 100%);
    --gold-glow: rgba(197, 168, 128, 0.25);
    
    --dark-bg: #111111;
    --dark-surface: #181818;
    --dark-card: #202020;
    --dark-border: rgba(255, 255, 255, 0.08);
    
    --light-bg: #FAF9F6;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --text-light-muted: #A0A0A0;
    --border-light: #EBEBEB;
    
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 15px 40px rgba(197, 168, 128, 0.15);
}

/* Base Global Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.font-serif {
    font-family: var(--font-heading);
}

.gold-accent {
    color: var(--gold-primary);
}

.section-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    color: #111111 !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1px solid var(--gold-primary);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: var(--white) !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-outline-light:hover {
    background: var(--white);
    color: #111111 !important;
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================================================
   1. NAVIGATION / HEADER
   ========================================================================== */
.luxury-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    transition: var(--transition-smooth);
}

.luxury-header.sticky {
    position: fixed;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.luxury-nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
}

.brand-logo-wrap img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.brand-text-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-text-logo .brand-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-primary);
    line-height: 1;
}

.brand-text-logo .brand-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: #cccccc;
    text-transform: uppercase;
    margin-top: 4px;
}

.luxury-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.luxury-nav-menu li {
    position: relative;
}

.luxury-nav-menu li a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #e5e5e5;
    position: relative;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
}

.luxury-nav-menu li a:hover,
.luxury-nav-menu li a.active {
    color: var(--gold-primary);
}

.luxury-nav-menu li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.luxury-nav-menu li > a:hover::after,
.luxury-nav-menu li > a.active::after {
    width: 100%;
}

/* Luxury Dropdown Navigation */
.luxury-nav-menu .nav-item-dropdown {
    position: relative !important;
    display: inline-block;
    padding: 10px 0;
}

.luxury-nav-menu .nav-item-dropdown .nav-arrow {
    font-size: 0.65rem;
    margin-left: 6px;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.luxury-nav-menu .nav-item-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.luxury-nav-menu .dropdown-menu-luxury {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 275px;
    background: #0e0e0e;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 168, 128, 0.35);
    border-radius: 6px;
    padding: 8px 0;
    margin: 0;
    list-style: none !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
    z-index: 99999;
}

/* Invisible bridge so mouse hover never drops */
.luxury-nav-menu .dropdown-menu-luxury::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
    background: transparent;
}

.luxury-nav-menu .nav-item-dropdown:hover > .dropdown-menu-luxury,
.luxury-nav-menu .nav-item-dropdown:focus-within > .dropdown-menu-luxury,
.luxury-nav-menu .dropdown-menu-luxury.is-open {
    display: block !important;
}

.luxury-nav-menu .dropdown-menu-luxury li {
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    width: 100% !important;
}

.dropdown-menu-luxury li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 22px !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    color: #e0e0e0 !important;
    border-left: 3px solid transparent;
    transition: all 0.2s ease !important;
    background: transparent !important;
    white-space: nowrap;
    text-decoration: none !important;
}

.dropdown-menu-luxury li a i {
    color: var(--gold-primary);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
    transition: transform 0.2s ease;
}

.dropdown-menu-luxury li a::after {
    display: none !important;
}

.dropdown-menu-luxury li a:hover,
.dropdown-menu-luxury li a.active {
    color: #ffffff !important;
    background: rgba(197, 168, 128, 0.15) !important;
    border-left-color: var(--gold-primary) !important;
    padding-left: 26px !important;
}

.dropdown-menu-luxury li a:hover i {
    transform: scale(1.2);
}

.nav-cta-btn {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    padding-left: 18px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-submenu li a {
    font-size: 1rem !important;
    color: #bbbbbb !important;
    font-family: var(--font-body) !important;
    text-transform: capitalize !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.mobile-submenu li a:hover,
.mobile-submenu li a.active {
    color: var(--gold-primary) !important;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.luxury-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 190px !important;
    padding-bottom: 120px !important;
    display: block !important;
}

.luxury-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(10, 10, 10, 0.92) 0%, 
        rgba(10, 10, 10, 0.75) 45%, 
        rgba(10, 10, 10, 0.3) 100%
    );
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero-text-block {
    max-width: 650px;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 16px;
    display: inline-block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

/* Hero Feature Pills */
.hero-features-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e5e5e5;
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-feature-item i,
.hero-feature-item svg {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.hero-btn-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ==========================================================================
   3. ABOUT / WELCOME SECTION
   ========================================================================== */
.luxury-about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-col .section-title {
    font-size: 2.7rem;
    margin-bottom: 24px;
}

.about-lead-p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 35px;
}

.about-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.about-badge .badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

/* About Collage Grid */
.about-collage-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 16px;
}

.about-collage-main {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 420px;
    box-shadow: var(--shadow-card);
}

.about-collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-collage-main:hover img {
    transform: scale(1.04);
}

.about-collage-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-collage-sub {
    border-radius: 8px;
    overflow: hidden;
    height: 202px;
    box-shadow: var(--shadow-card);
}

.about-collage-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-collage-sub:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.luxury-services-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 24px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 168, 128, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.35;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   5. PROJECTS SECTION
   ========================================================================== */
.luxury-projects-section {
    padding: 100px 0;
    background: var(--white);
}

.projects-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 45px;
}

.project-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.project-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover .project-img-wrap img {
    transform: scale(1.08);
}

.project-info {
    padding: 18px 20px;
    background: var(--white);
}

.project-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.project-cat {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.projects-cta-wrap {
    text-align: center;
}

/* ==========================================================================
   6. STATS COUNTER STRIP
   ========================================================================== */
.luxury-stats-strip {
    background: #0f0f0f;
    padding: 50px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.2);
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

.stats-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    opacity: 0.9;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.82rem;
    color: #aaaaaa;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   7. PROCESS SECTION
   ========================================================================== */
.luxury-process-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.process-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    align-items: center;
}

.process-image-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 440px;
}

.process-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content-wrap .section-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #e2d7c9;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-primary);
    color: #111;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 0 0 4px var(--light-bg);
    transition: var(--transition-smooth);
}

.process-step:hover .step-node {
    background: #111;
    color: var(--gold-primary);
    transform: scale(1.15);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ==========================================================================
   8. CTA BANNER SECTION
   ========================================================================== */
.luxury-cta-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.luxury-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.8) 50%, 
        rgba(10, 10, 10, 0.4) 100%
    );
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text-wrap {
    max-width: 680px;
}

.cta-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 10px;
    display: block;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
}

.cta-action-wrap {
    flex-shrink: 0;
}

/* ==========================================================================
   9. LUXURY FOOTER
   ========================================================================== */
.luxury-footer {
    background: #0d0d0d;
    color: #cccccc;
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: #999999;
    line-height: 1.7;
    margin: 20px 0 24px 0;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-social-links a:hover {
    background: var(--gold-primary);
    color: #111;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list li a {
    font-size: 0.9rem;
    color: #aaaaaa;
    transition: var(--transition-smooth);
}

.footer-links-list li a:hover {
    color: var(--gold-primary);
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.5;
}

.footer-contact-list li i,
.footer-contact-list li svg {
    color: var(--gold-primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777777;
    flex-wrap: wrap;
    gap: 15px;
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .luxury-nav-menu,
    .nav-cta-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .about-container,
    .process-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .projects-grid,
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .about-collage-grid {
        grid-template-columns: 1fr;
    }
    
    .about-collage-main {
        min-height: 280px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 2000;
    display: none;
    flex-direction: column;
    padding: 40px 24px;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    text-transform: uppercase;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--gold-primary);
}

/* ==========================================================================
   10. INNER PAGE HERO / BANNER
   ========================================================================== */
.inner-page-hero {
    position: relative;
    min-height: 52vh;
    padding: 200px 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.inner-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.75) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.inner-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.inner-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.inner-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 780px;
    margin: 0 auto 28px auto;
    line-height: 1.7;
    font-weight: 400;
}

.breadcrumb-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.88rem;
    color: #cccccc;
}

.breadcrumb-luxury a {
    color: #ffffff;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.breadcrumb-luxury a:hover {
    color: var(--gold-primary);
}

.breadcrumb-luxury .separator {
    color: var(--gold-primary);
    font-size: 0.75rem;
}

.breadcrumb-luxury .current {
    color: var(--gold-primary);
    font-weight: 600;
}

/* Grand Hero for About Page */
.about-luxury-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 190px !important;
    padding-bottom: 120px !important;
    display: block !important;
}

.about-luxury-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(10, 10, 10, 0.94) 0%, 
        rgba(10, 10, 10, 0.82) 50%, 
        rgba(10, 10, 10, 0.45) 100%
    );
    z-index: 1;
}

/* ==========================================================================
   11. ABOUT PAGE COMPONENTS
   ========================================================================== */
.about-intro-section {
    padding: 100px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-vision-box {
    background: var(--light-bg);
    border-left: 4px solid var(--gold-primary);
    padding: 24px 28px;
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
}

.about-vision-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-vision-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.about-pillars-section {
    padding: 90px 0;
    background: var(--light-bg);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    position: relative;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 168, 128, 0.4);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(197, 168, 128, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   12. PORTFOLIO & PROJECT GALLERY COMPONENTS
   ========================================================================== */
.gallery-section {
    padding: 80px 0 100px 0;
    background: var(--white);
}

.filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #111;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-subtle);
    cursor: pointer;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.4) 60%, rgba(10, 10, 10, 0.1) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: var(--transition-smooth);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cat {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 6px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.gallery-zoom-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.9);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    align-self: flex-start;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-zoom-icon {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    margin-top: 15px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 3001;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   13. CONTACT PAGE COMPONENTS
   ========================================================================== */
.contact-main-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.2fr;
    gap: 60px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 26px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-subtle);
    transform: translateY(-3px);
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a:hover {
    color: var(--gold-dark);
}

.whatsapp-quick-card {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    border-radius: 8px;
    padding: 24px 28px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.whatsapp-quick-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.whatsapp-quick-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 4px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Luxury Form */
.contact-form-wrap {
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 45px 40px;
    box-shadow: var(--shadow-subtle);
}

.contact-form-wrap .section-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-form-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-control-luxury {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control-luxury:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

textarea.form-control-luxury {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    width: 100%;
    height: 420px;
    background: #e5e5e5;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

/* ==========================================================================
   14. DEDICATED SERVICE PAGES COMPONENTS
   ========================================================================== */
.service-detail-section {
    padding: 100px 0;
    background: var(--white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 440px;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-scope-section {
    padding: 90px 0;
    background: var(--light-bg);
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.scope-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 35px 28px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.scope-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 168, 128, 0.4);
}

.scope-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.scope-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.scope-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-flow-section {
    padding: 90px 0;
    background: var(--white);
}

.related-services-strip {
    padding: 80px 0;
    background: var(--dark-bg);
    color: var(--white);
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.related-service-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 30px 24px;
    transition: var(--transition-smooth);
    text-align: center;
    color: var(--white);
    display: block;
}

.related-service-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    background: var(--dark-surface);
}

.related-service-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.related-service-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 8px;
}

.related-service-card p {
    font-size: 0.85rem;
    color: #999999;
}

/* ==========================================================================
   15. ADDITIONAL RESPONSIVE RULES FOR INNER PAGES
   ========================================================================== */
@media (max-width: 991px) {
    .about-intro-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pillars-grid,
    .scope-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inner-hero-title {
        font-size: 2.6rem;
    }
    
    .luxury-hero,
    .about-luxury-hero,
    .inner-page-hero {
        padding-top: 170px !important;
        padding-bottom: 80px !important;
    }
}

@media (max-width: 767px) {
    .inner-hero-title {
        font-size: 2.1rem;
    }
    
    .luxury-hero,
    .about-luxury-hero,
    .inner-page-hero {
        padding-top: 150px !important;
        padding-bottom: 70px !important;
        min-height: auto !important;
    }
    
    .hero-tagline {
        font-size: 0.78rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .pillars-grid,
    .scope-grid,
    .gallery-grid,
    .related-services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrap {
        padding: 30px 20px;
    }
    
    .whatsapp-quick-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

