/* ===================================
   PREMIUM CONSTRUCTION WEBSITE - 2025
   Ros Smart Developers
   Ultra-Modern Complete Redesign
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Brand Colors */
    --primary-navy: #15204E;
    --primary-orange: #E24A1C;
    --navy-light: #1E2F66;
    --navy-dark: #0D1530;
    --orange-light: #FF6B35;
    --orange-dark: #C43E15;
    
    /* Extended Palette */
    --construction-gold: #F5A623;
    --steel-gray: #2C3E50;
    --concrete: #95A5A6;
    --safety-yellow: #F39C12;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #15204E 0%, #1E2F66 100%);
    --gradient-orange: linear-gradient(135deg, #E24A1C 0%, #FF6B35 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(21,32,78,0.95) 0%, rgba(21,32,78,0.8) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(21,32,78,0.98) 0%, rgba(30,47,102,0.95) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(21,32,78,0.08);
    --shadow-md: 0 4px 16px rgba(21,32,78,0.12);
    --shadow-lg: 0 8px 32px rgba(21,32,78,0.16);
    --shadow-xl: 0 16px 48px rgba(21,32,78,0.24);
    --shadow-orange: 0 4px 20px rgba(226,74,28,0.25);
    --shadow-orange-lg: 0 8px 32px rgba(226,74,28,0.35);
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===================================
   Reset & Base
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-navy);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 900;
    letter-spacing: -2px;
}

h2 { 
    font-size: clamp(2rem, 4.5vw, 3.5rem); 
    font-weight: 800;
    letter-spacing: -1.5px;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
}

p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ===================================
   Section Styling
   =================================== */
.section-tag {
    display: inline-block;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-orange);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    position: relative;
    padding-bottom: 24px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-orange);
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Premium Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-orange);
    color: var(--white);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-orange-lg);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background: var(--gradient-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn-submit {
    width: 100%;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 20px;
    font-size: 1.05rem;
}

/* ===================================
   Modern Premium Navigation
   =================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    padding: 18px 0 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    position: relative;
    background: linear-gradient(135deg, rgba(21, 32, 78, 0.4) 0%, rgba(13, 21, 48, 0.48) 100%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 60px;
    box-shadow: 0 12px 40px rgba(13, 21, 48, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.22),
                inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

/* Liquid-glass sheen across the top of the pill */
.nav-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 35%, transparent 60%);
    pointer-events: none;
}

.logo {
    position: relative;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 18px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 4px 14px rgba(13, 21, 48, 0.18);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2px;
    align-items: center;
    flex: 1;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    position: relative;
    padding: 12px 22px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    z-index: 1;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--orange-light);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(226, 74, 28, 0.4);
}

.nav-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.16);
    flex-shrink: 0;
}

.mobile-cta {
    display: none;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    background: var(--gradient-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 15px rgba(226, 74, 28, 0.3);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.nav-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 74, 28, 0.5);
}

.nav-cta-btn:hover::before {
    left: 100%;
}

.nav-cta-btn i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid transparent;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-orange);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: #15204E;
    color: var(--white);
    margin-top: -120px;
    padding: 190px 0 140px;
    position: relative;
    overflow: hidden;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--off-white));
    z-index: 2;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 C300,80 600,80 900,40 L1200,0 L1200,120 L0,120 Z" fill="%23F8F9FA"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 3;
}

/* Featured image bar overlaid onto the hero */
.hero-strip {
    position: relative;
    z-index: 5;
    margin-top: -170px;
}

.hero-strip-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    background: var(--white);
    padding: 14px;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(13, 21, 48, 0.18);
}

.hero-strip-bar img {
    flex: 1 1 160px;
    min-width: 140px;
    height: 165px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.hero-strip-bar img:hover {
    transform: scale(1.04);
}

@media (max-width: 600px) {
    .hero-strip {
        margin-top: -90px;
    }

    .hero-strip-bar {
        gap: 10px;
        padding: 10px;
    }

    .hero-strip-bar img {
        height: 120px;
        min-width: 120px;
    }
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(226, 74, 28, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.hero-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 900;
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: -3px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 span {
    display: block;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 48px;
    color: rgba(255,255,255,0.85);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-cta .btn {
    padding: 18px 40px;
    font-size: 1.05rem;
    gap: 10px;
}

/* The default navy .btn-secondary vanishes against the navy hero background */
.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Legacy hero-stats styles (for backward compatibility) */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-info {
    text-align: left;
}

.stat-info h4 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    white-space: nowrap;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    padding: 120px 0;
    background: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 70px;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--gradient-orange);
    transition: height 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 24px 48px rgba(226, 74, 28, 0.2);
}

.stat-card:hover::after {
    height: 6px;
}

.stat-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.2;
}

.decoration-line {
    width: 32px;
    height: 2px;
    background: var(--primary-orange);
}

.decoration-circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.stat-number-box {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 20px;
}

.stat-count {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--primary-navy);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-plus {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Montserrat', sans-serif;
}

.stat-divider {
    width: 50px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 2px;
    margin-bottom: 24px;
    transition: width 0.4s ease;
}

.stat-card:hover .stat-divider {
    width: 80px;
}

.stat-details {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-details i {
    font-size: 2rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-details i {
    transform: scale(1.1) rotate(5deg);
}

.stat-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.stat-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Legacy stat styles for backwards compatibility */
.stat-visual {
    position: relative;
    padding: 50px 40px 30px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a2d5f 100%);
    z-index: 1;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.stat-bar-fill {
    height: 100%;
    background: var(--gradient-orange);
    border-radius: 10px;
    width: 0;
    animation: fillBar 2s ease-in-out forwards;
    position: relative;
    overflow: hidden;
}

.stat-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes fillBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.stat-number-large {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-align: center;
}

.stat-number-large .accent {
    color: var(--primary-orange);
}

.stat-info-bottom {
    padding: 36px 40px 44px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-badge {
    width: 56px;
    height: 56px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(226, 74, 28, 0.25);
    position: relative;
    top: -48px;
    margin-bottom: -28px;
}

.stat-info-bottom h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.stat-info-bottom p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(226, 74, 28, 0.3);
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-number .accent {
    color: var(--primary-orange);
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

/* Construction Showcase */
.construction-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.showcase-content h3 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.showcase-features i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.construction-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    background: #15204E;
    margin-top: -120px;
    padding: 240px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 120px;
    height: 5px;
    background: var(--gradient-orange);
    margin: 32px auto 0;
    border-radius: 10px;
    box-shadow: var(--shadow-orange);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ---- Split header variant (two-column with image) ---- */
.page-header-split {
    text-align: left;
}

.page-header-split .page-header-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.page-header-split h1::after {
    margin-left: 0;
    margin-right: auto;
}

.page-header-split p {
    margin: 0;
    max-width: 520px;
}

.page-header-media {
    position: relative;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.page-header-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    display: block;
}

/* Decorative orange frame peeking from the top-right corner */
.page-header-media::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 130px;
    height: 130px;
    border: 3px solid rgba(226,74,28,0.55);
    border-radius: 16px;
    z-index: -1;
}

@media (max-width: 900px) {
    .page-header-split .page-header-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .page-header-split h1::after {
        margin-left: auto;
        margin-right: auto;
    }

    .page-header-split p {
        margin: 0 auto;
    }

    .page-header-media img {
        height: 280px;
    }

    .page-header-media::before {
        display: none;
    }
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: 80px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(21,32,78,0.08);
    transition: var(--transition-base);
    border: 1px solid rgba(21,32,78,0.08);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--gradient-orange);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 28px rgba(21,32,78,0.12);
    border-color: var(--primary-orange);
}

.service-card:hover::before {
    height: 4px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(226,74,28,0.08) 0%, rgba(226,74,28,0.12) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-bounce);
}

.service-card:hover .service-icon {
    background: var(--gradient-orange);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(226,74,28,0.3);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-orange);
    transition: var(--transition-base);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
}

.service-card p {
    line-height: 1.7;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ===================================
   Why Choose Us
   =================================== */
.why-choose-us {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(226, 74, 28, 0.03), rgba(21, 32, 78, 0.05));
    z-index: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-card {
    background: var(--white);
    padding: 0;
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(21, 32, 78, 0.08);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(21, 32, 78, 0.06);
}

.card-number {
    background: linear-gradient(135deg, var(--primary-navy), #1a2a5e);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    opacity: 0.9;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    flex: 1;
    background: var(--white);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b3d);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-text h3 {
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
    font-weight: 700;
}

.why-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.why-images {
    position: relative;
    height: 100%;
    min-height: 550px;
}

.image-collage {
    position: relative;
    width: 100%;
    height: 100%;
}

.collage-large {
    position: relative;
    width: 85%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(21, 32, 78, 0.15);
}

.collage-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(21, 32, 78, 0.85), transparent);
    padding: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.collage-large:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.overlay-content i {
    font-size: 2rem;
    color: var(--primary-orange);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
}

.collage-small {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 12px 40px rgba(21, 32, 78, 0.2);
}

.collage-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(21, 32, 78, 0.15);
    border: 3px solid var(--primary-orange);
}

.badge-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-orange);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-size: 0.85rem;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* ===================================
   Testimonials
   =================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-header {
    margin-bottom: 60px;
}

.testimonials-section .section-tag {
    background: rgba(226,74,28,0.1);
    color: var(--primary-orange);
}

.testimonials-section h2 {
    color: var(--primary-navy);
}

.testimonials-section .section-subtitle {
    color: var(--text-secondary);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    background: var(--primary-navy);
    padding: 50px 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(21,32,78,0.15);
    animation: slideIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), #ff6b3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.quote-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 2px solid rgba(255,255,255,0.15);
}

.author-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.author-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: #FFB800;
    font-size: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-navy);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(21,32,78,0.2);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    font-size: 1.2rem;
    color: var(--white);
    transition: var(--transition-base);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(21,32,78,0.2);
    cursor: pointer;
    transition: var(--transition-base);
}

.indicator:hover {
    background: rgba(21,32,78,0.4);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-orange);
    width: 32px;
    border-radius: 6px;
}

/* ===================================
   Properties Info
   =================================== */
.properties-info {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 2px solid var(--light-gray);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* ===================================
   Properties Header
   =================================== */
.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.properties-header h2 {
    margin-bottom: 0;
    color: var(--primary-navy);
}

.count-badge {
    background: var(--gradient-orange);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-orange);
}

/* ===================================
   Properties
   =================================== */
.properties-section {
    padding: 120px 0;
    background: var(--white);
}

.properties-section .section-header h2,
.properties-section .section-subtitle {
    color: var(--primary-navy);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.property-card {
    background: var(--primary-navy);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
    border: 2px solid transparent;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.property-badge.for-rent {
    background: linear-gradient(135deg, #00C853, #00E676);
    color: var(--white);
}

.property-badge.for-sale {
    background: var(--gradient-orange);
    color: var(--white);
}

.property-badge.commercial {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: var(--white);
}

.property-badge.land {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
    color: var(--white);
}

.property-details {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.property-location i {
    color: var(--primary-orange);
    font-size: 0.95rem;
}

.property-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    line-height: 1.3;
}

.property-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    flex-grow: 1;
}

.property-features {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.property-features .feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.property-features .feature i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.property-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.property-footer .btn-call {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* ===================================
   Properties CTA
   =================================== */
.properties-cta {
    background: var(--primary-navy);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   No Properties Message
   =================================== */
.no-properties {
    text-align: center;
    padding: 100px 40px;
    max-width: 600px;
    margin: 0 auto;
}

.no-properties-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    background: var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-properties-icon i {
    font-size: 48px;
    color: var(--primary-orange);
}

.no-properties h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-weight: 700;
}

.no-properties p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.no-properties-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.no-properties-actions .btn {
    padding: 14px 32px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.no-properties-actions .btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.no-properties-actions .btn-secondary:hover {
    background: var(--primary-navy);
    color: var(--white);
}

/* ===================================
   Projects
   =================================== */
.projects-section {
    padding: 120px 0;
    background: var(--off-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(21, 32, 78, 0.06);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(21, 32, 78, 0.12);
}

.project-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--off-white);
}

.project-image img,
.project-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img,
.project-card:hover .project-image video {
    transform: scale(1.05);
}

.project-info {
    padding: 24px 20px;
}

.project-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-navy);
    line-height: 1.4;
}

.project-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Optional location / status line on admin-managed projects */
.project-info .project-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.82rem;
}

.project-info .project-meta i {
    color: var(--primary-orange);
    margin-right: 4px;
}

.project-info .project-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(255, 92, 0, 0.1);
    color: var(--primary-orange);
    font-weight: 700;
    text-transform: capitalize;
    font-size: 0.75rem;
}

/* ===================================
   Process Section
   =================================== */
.process-section {
    padding: 120px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 56px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 110px;
    height: 110px;
    background: var(--gradient-orange);
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 36px;
    box-shadow: var(--shadow-orange-lg);
    transition: var(--transition-bounce);
    font-family: 'Montserrat', sans-serif;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(15deg);
}

.process-step h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===================================
   Project Videos Carousel
   =================================== */
.project-videos-section {
    padding: 80px 0;
    background: var(--off-white);
}

.project-videos-section .section-header {
    margin-bottom: 60px;
}

.videos-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
    overflow: hidden;
}

.videos-wrapper {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    scroll-behavior: smooth;
}

.video-slide {
    flex: 0 0 320px;
    min-width: 320px;
    max-width: 320px;
}


.video-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(21,32,78,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(21,32,78,0.18);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sound is force-muted via JS; hide the mute/volume UI so controls don't imply it can be turned on */
video::-webkit-media-controls-mute-button,
video::-webkit-media-controls-volume-slider,
video::-webkit-media-controls-volume-slider-container {
    display: none !important;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(21,32,78,0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    pointer-events: none;
}

.video-container:hover .video-play-overlay {
    opacity: 1;
    background: rgba(21,32,78,0.15);
}

.video-play-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.video-info {
    text-align: center;
    margin-top: 16px;
}

.video-info h3 {
    color: var(--primary-navy);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.video-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(21,32,78,0.15);
    z-index: 10;
    opacity: 0.9;
}

.video-carousel-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 24px rgba(226,74,28,0.4);
    opacity: 1;
}

.video-carousel-btn i {
    font-size: 1.1rem;
    color: var(--primary-navy);
    transition: var(--transition-base);
}

.video-carousel-btn:hover i {
    color: var(--white);
}

.video-carousel-btn.prev {
    left: 10px;
}

.video-carousel-btn.next {
    right: 10px;
}

.video-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.5);
}

.video-carousel-btn:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
}

.video-carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.video-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.video-indicator:hover {
    background: var(--orange-light);
    transform: scale(1.3);
}

.video-indicator.active {
    background: var(--primary-orange);
    width: 28px;
    border-radius: 5px;
    border-color: var(--primary-orange);
}

.video-indicator:hover {
    background: var(--primary-orange);
    transform: scale(1.2);
}

.video-indicator.active {
    background: var(--primary-orange);
    width: 32px;
    border-radius: 5px;
    border-color: var(--primary-orange);
}

/* ===================================
   Contact
   =================================== */
.contact-section {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(226, 74, 28, 0.15);
    border-color: var(--primary-orange);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
    margin-top: 12px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.contact-link:hover {
    gap: 12px;
}

.contact-link i {
    font-size: 0.9rem;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-content {
    padding: 48px 40px;
}

.form-content h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.form-content p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form-compact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-compact .form-group {
    margin-bottom: 20px;
}

.contact-form-compact input,
.contact-form-compact textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.contact-form-compact input:focus,
.contact-form-compact textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(226, 74, 28, 0.1);
}

.contact-form-compact textarea {
    resize: vertical;
}

.contact-form-compact .btn {
    width: 100%;
    margin-top: 8px;
}

/* Form Message Styles */
.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.success i {
    color: #28a745;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.error i {
    color: #dc3545;
}

.form-message i {
    font-size: 20px;
}

.map-container {
    position: relative;
    min-height: 500px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
}

/* Legacy contact styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 48px;
    color: var(--primary-navy);
}

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.contact-numbers {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 48px;
    font-family: 'Montserrat', sans-serif;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.contact-form {
    background: var(--white);
    padding: 56px 48px;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.contact-form:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-navy);
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    transition: var(--transition-base);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(226,74,28,0.1);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

/* ===================================
   Booking Page
   =================================== */
.booking-section {
    padding: 80px 0;
    background: var(--off-white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-orange);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.info-card h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
}

.info-list li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--off-white);
    border-radius: 12px;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateX(5px);
}

.phone-link i {
    color: var(--primary-orange);
    transition: color 0.3s ease;
}

.phone-link:hover i {
    color: var(--white);
}

.booking-form-container {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 92, 0, 0.1);
}

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

.checkbox-group {
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 16px;
    border: none;
    cursor: pointer;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: -8px;
}

.form-note i {
    color: var(--primary-orange);
}

.price-display {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    animation: slideDown 0.3s ease;
}

.price-display.free {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.price-display.paid {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffeaa7;
}

.price-display i {
    font-size: 1.2rem;
}

.form-message {
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.form-message i {
    font-size: 1.3rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Booking Page */
@media (max-width: 992px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-form-container {
        padding: 24px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .info-card {
        padding: 24px;
    }
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-navy);
    padding: 80px 0 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer > .container {
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 70px;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
    transition: var(--transition-base);
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    width: 20px;
}

.footer-links h4,
.footer-services h4,
.footer-cta h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-cta h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-orange);
    border-radius: 10px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links ul li a i {
    font-size: 0.7rem;
    color: var(--primary-orange);
    transition: var(--transition-base);
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-links ul li a:hover i {
    transform: translateX(3px);
}

.footer-services ul li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-services ul li i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-cta .btn {
    width: 100%;
    margin-bottom: 28px;
    justify-content: center;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--gradient-orange);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-orange);
}

.social-links a i {
    font-size: 1.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 28px;
    }
    
    .nav-links {
        gap: 2px;
    }

    .nav-links a {
        padding: 11px 15px;
        font-size: 0.76rem;
    }

    .nav-cta-btn {
        padding: 11px 20px;
        font-size: 0.76rem;
        gap: 7px;
    }

    .why-grid,
    .contact-wrapper {
        gap: 60px;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        background: linear-gradient(160deg, rgba(18, 28, 62, 0.99) 0%, rgba(10, 16, 38, 0.99) 100%);
        flex-direction: column;
        padding: 0 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.35s ease,
                    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0.45s;
        box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 26px;
        z-index: 999;
        gap: 6px;
    }

    .nav-links.active {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding: 16px 14px;
    }

    .nav-links li {
        width: 100%;
        animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        opacity: 0;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.06s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.12s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.18s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.24s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.30s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.36s; }
    .nav-links.active li:nth-child(7) { animation-delay: 0.42s; }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 24px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.92rem;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        border-radius: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.07);
        color: var(--white);
    }

    .nav-links a.active {
        background: rgba(255, 255, 255, 0.08);
        color: var(--orange-light);
        font-weight: 700;
        box-shadow: inset 0 0 0 1px rgba(226, 74, 28, 0.4);
    }

    .nav-cta-btn {
        display: none;
    }

    .nav-divider {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 6px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-cta a.mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 24px;
        background: var(--gradient-orange);
        color: var(--white);
        font-weight: 700;
        font-size: 0.92rem;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        border-radius: 14px;
        box-shadow: 0 8px 22px rgba(226, 74, 28, 0.4);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-cta a.mobile-cta-btn:hover {
        box-shadow: 0 10px 28px rgba(226, 74, 28, 0.55);
        transform: translateY(-2px);
    }

    .mobile-cta a.mobile-cta-btn i {
        font-size: 0.95rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--primary-orange);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--primary-orange);
    }
    
    .nav-wrapper {
        padding: 8px 8px 8px 10px;
        gap: 12px;
    }

    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo a {
        height: 48px;
        padding: 0 14px;
    }

    .logo img {
        height: 34px;
    }

    .hero {
        padding: 220px 0 120px;
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .hero p {
        font-size: 1.15rem;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .hero-stat-item {
        padding: 16px 24px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-info h4 {
        font-size: 1.6rem;
    }
    
    .page-header {
        padding: 220px 0 80px;
    }
    
    .stats-section,
    .services-section,
    .why-choose-us,
    .testimonials-section,
    .properties-section,
    .projects-section,
    .process-section,
    .contact-section {
        padding: 80px 0;
    }
    
    .construction-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .showcase-content {
        order: 1;
    }
    
    .construction-images {
        order: 2;
    }
    
    .stats-grid {
        gap: 24px;
        margin-bottom: 60px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .stat-card {
        padding: 32px 28px;
    }
    
    .stat-card .stat-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .stat-card .stat-icon i {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .filter-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .filter-btn {
        grid-column: 1 / -1;
    }
    
    .filter-group label {
        font-size: 0.9rem;
    }
    
    .properties-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .properties-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 28px;
    }
    
    .property-features {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .property-features .feature {
        font-size: 0.9rem;
    }
    
    .properties-cta {
        padding: 48px 32px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
    }
    
    .service-card {
        padding: 40px 32px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .why-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-grid {
        gap: 60px;
    }
    
    .why-images {
        order: -1;
        min-height: 0;
        height: auto;
    }

    .image-collage {
        height: auto;
    }

    .collage-large {
        width: 100%;
        height: 360px;
        border-radius: 20px;
    }

    .collage-small {
        width: 200px;
        height: 150px;
        bottom: 18px;
        right: 18px;
        border-width: 5px;
        border-radius: 16px;
    }
    
    .experience-badge {
        top: 24px;
        right: 24px;
        padding: 20px 24px;
        border-radius: 14px;
    }
    
    .badge-number {
        font-size: 2.4rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
    
    .overlay-content i {
        font-size: 1.7rem;
    }
    
    .overlay-content h4 {
        font-size: 1.15rem;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        flex-direction: row;
    }
    
    .card-number {
        min-width: 70px;
        font-size: 1.6rem;
    }
    
    .card-content {
        padding: 24px 20px;
    }
    
    .why-icon {
        width: 52px;
        height: 52px;
    }
    
    .why-icon i {
        font-size: 1.3rem;
    }
    
    .why-text h3 {
        font-size: 1.05rem;
    }
    
    .why-text p {
        font-size: 0.85rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .why-icon i {
        font-size: 1.6rem;
    }
    
    .testimonials-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-card {
        padding: 56px 40px;
    }
    
    .testimonial-text {
        font-size: 1.2rem;
        line-height: 1.7;
    }
    
    .quote-icon {
        width: 55px;
        height: 55px;
    }
    
    .quote-icon i {
        font-size: 1.4rem;
    }
    
    .projects-grid {
        gap: 28px;
    }
    
    .project-card {
        transition: transform 0.3s ease;
    }
    
    .project-card:hover {
        transform: translateY(-5px);
    }
    
    .project-info {
        padding: 24px 20px;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .videos-carousel {
        padding: 0 60px;
    }
    
    .videos-wrapper {
        gap: 20px;
    }
    
    .video-slide {
        flex: 0 0 280px;
        min-width: 280px;
        max-width: 280px;
    }
    
    .video-container {
        height: 440px;
    }
    
    .video-carousel-btn {
        width: 42px;
        height: 42px;
    }
    
    .video-carousel-btn i {
        font-size: 1rem;
    }
    
    .process-grid {
        gap: 48px;
    }
    
    .step-number {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-desc {
        margin: 0 auto;
        max-width: 600px;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-cta h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links ul li a,
    .footer-services ul li {
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-logo {
        height: 70px;
        margin: 0 auto 20px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 24px 0;
        font-size: 0.9rem;
    }
}

/* Mobile Devices */
@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: transparent;
    }

    .logo img {
        height: 32px;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 16px 24px;
    }
    
    .hero {
        padding: 150px 0 100px;
        text-align: center;
    }

    .hero-badge {
        padding: 10px 18px;
        gap: 10px;
        display: inline-flex;
        margin-bottom: 24px;
    }

    .hero-badge i {
        font-size: 1rem;
    }

    .hero-badge span {
        font-size: 0.78rem;
        letter-spacing: 0.4px;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }
    
    .hero h1 span {
        display: block;
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-bottom: 40px;
        line-height: 1.7;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 260px;
        padding: 13px 24px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 20px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stat-item {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-icon i {
        font-size: 1.3rem;
    }
    
    .stat-info h4 {
        font-size: 1.5rem;
    }
    
    .stat-info p {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 0.95rem;
    }
    
    .btn i {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 200px 0 60px;
        text-align: center;
    }
    
    .page-header h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
        margin-bottom: 16px;
    }
    
    .page-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .stats-section,
    .services-section,
    .why-choose-us,
    .testimonials-section,
    .properties-section,
    .projects-section,
    .process-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 50px;
    }
    
    .stat-card {
        padding: 40px 32px;
        text-align: center;
    }
    
    .stat-decoration {
        justify-content: center;
        margin: 0 auto 20px;
    }
    
    .stat-number-box {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .stat-count {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }
    
    .stat-plus {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .stat-divider {
        margin: 20px auto;
    }
    
    .stat-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    .stat-details i {
        font-size: 2rem;
        margin-right: 0;
    }
    
    .stat-text {
        text-align: center;
    }
    
    .stat-text h4 {
        font-size: 1.2rem;
    }
    
    .stat-text p {
        font-size: 0.95rem;
    }
    
    .stat-visual {
        padding: 40px 32px 24px;
    }
    
    .stat-bar {
        height: 6px;
        margin-bottom: 20px;
    }
    
    .stat-number-large {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .stat-info-bottom {
        padding: 32px 28px 40px;
    }
    
    .stat-badge {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        top: -40px;
        margin-bottom: -20px;
    }
    
    .stat-info-bottom h4 {
        font-size: 1.2rem;
    }
    
    .stat-info-bottom p {
        font-size: 0.95rem;
    }
    
    .stat-card {
        padding: 28px 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-card .stat-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
    }
    
    .stat-card .stat-icon i {
        font-size: 1.6rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .image-grid img {
        height: 240px;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .construction-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-content h3 {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .showcase-features {
        gap: 16px;
        margin: 28px 0;
    }
    
    .showcase-features li {
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 48px;
        text-align: center;
    }
    
    .section-tag {
        display: inline-block;
        margin-bottom: 12px;
    }
    
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .properties-filter {
        padding: 24px 0;
    }
    
    .filter-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .filter-select {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.95rem;
    }
    
    .filter-btn {
        grid-column: 1;
        padding: 16px 32px;
        width: 100%;
    }
    
    .properties-header {
        margin-bottom: 32px;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .properties-header h2 {
        text-align: center;
    }
    
    .properties-count {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .properties-grid,
    .projects-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 48px;
    }
    
    .property-card,
    .project-card,
    .service-card {
        width: 100%;
        max-width: 100%;
    }
    
    .property-image,
    .project-image {
        height: 240px;
        border-radius: 12px 12px 0 0;
    }
    
    .property-details {
        padding: 24px 20px;
    }
    
    .property-location {
        margin-bottom: 12px;
    }
    
    .property-details h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .property-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .property-features {
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .property-features .feature {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .property-features .feature i {
        font-size: 0.9rem;
    }
    
    .property-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        width: 100%;
    }
    
    .property-price {
        font-size: 1.6rem;
        width: 100%;
    }
    
    .property-price span {
        font-size: 1rem;
    }
    
    .property-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .properties-cta {
        padding: 40px 24px;
        text-align: center;
        border-radius: 16px;
    }
    
    .cta-content {
        margin-bottom: 28px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .services-section {
        text-align: center;
    }
    
    .service-card {
        padding: 36px 24px;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 20px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .stat-number {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }
    
    .why-choose-us {
        padding: 60px 0;
        text-align: left;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-images {
        order: -1;
        min-height: 0;
        height: auto;
    }

    .image-collage {
        height: auto;
    }

    .collage-large {
        width: 100%;
        height: 300px;
        border-radius: 16px;
    }
    
    .image-overlay {
        padding: 24px;
    }
    
    .overlay-content {
        gap: 10px;
    }
    
    .overlay-content i {
        font-size: 1.5rem;
    }
    
    .overlay-content h4 {
        font-size: 1.05rem;
    }
    
    .collage-small {
        width: 150px;
        height: 110px;
        bottom: 14px;
        right: 14px;
        border-width: 4px;
        border-radius: 12px;
    }
    
    .experience-badge {
        top: 16px;
        right: 16px;
        padding: 16px 20px;
        border-radius: 12px;
        border-width: 2px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-card {
        flex-direction: row;
    }
    
    .card-number {
        min-width: 60px;
        font-size: 1.4rem;
    }
    
    .card-content {
        padding: 18px 16px;
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }
    
    .why-icon i {
        font-size: 1.2rem;
    }
    
    .why-text h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .why-text p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-carousel {
        padding: 0 45px;
        max-width: 100%;
    }
    
    .testimonials-wrapper {
        padding: 0;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn:hover {
        transform: translateY(-50%);
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    .testimonial-slide {
        padding: 40px 28px;
    }
    
    .quote-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 24px;
    }
    
    .quote-icon i {
        font-size: 1.3rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 24px;
    }
    
    .author-info h4 {
        font-size: 1.05rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
    
    .rating {
        justify-content: center;
    }
    
    .rating i {
        font-size: 0.95rem;
    }
    
    .projects-section {
        padding: 60px 0;
    }
    
    .project-card {
        border-radius: 12px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-info {
        padding: 20px 18px;
    }
    
    .project-info h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    
    .project-info p {
        font-size: 0.85rem;
    }
    
    .videos-carousel {
        padding: 0 50px;
    }
    
    .videos-wrapper {
        gap: 16px;
    }
    
    .video-slide {
        flex: 0 0 260px;
        min-width: 260px;
        max-width: 260px;
    }
    
    .video-container {
        height: 420px;
    }
    
    .video-carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .video-carousel-btn i {
        font-size: 0.95rem;
    }
    
    .video-info {
        padding: 18px 16px;
    }
    
    .video-info h3 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .video-info p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .video-carousel-indicators {
        margin-top: 32px;
        gap: 10px;
    }
    
    .video-indicator {
        width: 10px;
        height: 10px;
    }
    
    .video-indicator.active {
        width: 32px;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-grid {
        gap: 40px;
    }
    
    .step-number {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
        margin: 0 auto 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .image-grid,
    .properties-grid,
    .projects-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .contact-card {
        padding: 36px 28px;
        text-align: center;
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        margin: 0 auto 20px;
    }
    
    .contact-icon i {
        font-size: 1.8rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .contact-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-content {
        padding: 40px 32px;
        border-radius: 16px 16px 0 0;
    }
    
    .form-content h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .form-content p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 28px;
    }
    
    .contact-form-compact .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .contact-form-compact button[type="submit"] {
        width: 100%;
        padding: 16px 32px;
        font-size: 1rem;
    }
    
    .map-container {
        min-height: 350px;
        border-radius: 0 0 16px 16px;
    }
    
    .contact-wrapper {
        gap: 40px;
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h2 {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .contact-numbers {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .contact-form {
        padding: 40px 28px;
    }
    
    .footer {
        padding: 48px 0 0;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1;
        max-width: 100%;
    }
    
    .footer-logo {
        height: 60px;
        margin: 0 auto 20px;
    }
    
    .footer-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 24px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-links,
    .footer-services,
    .footer-cta {
        text-align: center;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-cta h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-links ul,
    .footer-services ul {
        gap: 12px;
    }
    
    .footer-links ul li a,
    .footer-services ul li {
        font-size: 0.9rem;
    }
    
    .footer-cta p {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .footer-cta .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 24px;
    }
    
    .social-links {
        justify-content: center;
        gap: 16px;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 0;
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 12px;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .logo img {
        height: 30px;
    }

    .logo a {
        height: 44px;
        padding: 0 12px;
    }


    .section-tag {
        font-size: 0.7rem;
        padding: 8px 18px;
    }
    
    .section-header h2,
    h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 8px 14px;
        gap: 8px;
    }

    .hero-badge span {
        font-size: 0.72rem;
        letter-spacing: 0.3px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .achievement-circle {
        width: 70px;
        height: 70px;
    }
    
    .achievement-circle svg {
        width: 70px;
        height: 70px;
    }
    
    .achievement-circle svg circle {
        r: 30;
        stroke-dasharray: 189;
    }
    
    .achievement-number {
        font-size: 1rem;
    }
    
    .achievement-label {
        font-size: 0.75rem;
    }
    
    .stat-card,
    .service-card,
    .contact-card {
        padding: 32px 20px;
    }
    
    .stat-count {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .stat-plus {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .stat-details i {
        font-size: 1.8rem;
    }
    
    .stat-text h4 {
        font-size: 1.1rem;
    }
    
    .service-icon,
    .why-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .why-icon i,
    .contact-icon i {
        font-size: 1.6rem;
    }
    
    .service-card h3,
    .why-text h3,
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .why-card {
        flex-direction: row;
        align-items: stretch;
        text-align: left;
        padding: 0;
    }

    .card-number {
        min-width: 50px;
        font-size: 1.2rem;
    }

    .card-content {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 16px 14px;
    }

    .why-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0;
        border-radius: 11px;
    }

    .why-icon i {
        font-size: 1.15rem;
    }

    .why-text h3 {
        font-size: 0.98rem;
        margin-bottom: 3px;
    }

    .why-text p {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .image-grid img,
    .property-image,
    .project-image {
        height: 220px;
    }
    
    .property-details h3,
    .project-info h3 {
        font-size: 1.2rem;
    }
    
    .property-price {
        font-size: 1.5rem;
    }
    
    .properties-cta,
    .form-content {
        padding: 32px 20px;
    }
    
    .cta-content h3,
    .form-content h3 {
        font-size: 1.5rem;
    }
    
    .testimonials-carousel {
        padding: 0 40px;
    }
    
    .testimonials-wrapper {
        padding: 0;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn i {
        font-size: 0.9rem;
    }
    
    .videos-wrapper {
        padding: 0;
    }
    
    .video-carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .video-carousel-btn i {
        font-size: 0.9rem;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    .video-carousel-indicators {
        margin-top: 28px;
        gap: 8px;
    }
    
    .video-indicator {
        width: 8px;
        height: 8px;
    }
    
    .video-indicator.active {
        width: 28px;
    }
    
    .testimonial-slide {
        padding: 36px 24px;
    }
    
    .quote-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
    }
    
    .quote-icon i {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .testimonial-author {
        padding-top: 20px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .rating i {
        font-size: 0.9rem;
    }
    
    .carousel-indicators {
        margin-top: 32px;
        gap: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .process-grid {
        gap: 36px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-numbers {
        font-size: 1.3rem;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-logo {
        height: 55px;
    }
    
    .footer-grid {
        gap: 36px;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-cta h4 {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .footer-links ul li a,
    .footer-services ul li {
        font-size: 0.85rem;
    }
    
    .footer-cta .btn {
        font-size: 0.9rem;
        padding: 14px 28px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 20px 0;
        font-size: 0.8rem;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 6px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }
    
    .logo img {
        height: 28px;
    }

    .hero {
        padding: 140px 0 90px;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }
    
    .hero-cta {
        gap: 14px;
        margin-bottom: 40px;
    }
    
    .hero-cta .btn {
        padding: 12px 22px;
        font-size: 0.85rem;
    }
    
    .hero-achievements {
        gap: 32px;
        margin-top: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .achievement-item {
        flex-direction: row;
        align-items: center;
        gap: 24px;
        width: 100%;
        max-width: 300px;
    }
    
    .achievement-circle {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }
    
    .achievement-number {
        font-size: 1.2rem;
    }
    
    .achievement-label {
        font-size: 1rem;
        margin-top: 0;
        text-align: left;
        font-weight: 700;
    }
    
    .section-header h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 32px 20px;
    }
    
    .stat-count {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .stat-plus {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .testimonials-carousel {
        padding: 0 32px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-btn i {
        font-size: 0.85rem;
    }
    
    .testimonial-slide {
        padding: 32px 20px;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .quote-icon i {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.75rem;
    }
    
    .rating i {
        font-size: 0.85rem;
    }
    
    .carousel-indicators {
        margin-top: 28px;
        gap: 8px;
    }
    
    .videos-carousel {
        padding: 0 32px;
    }
    
    .video-carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .video-carousel-btn i {
        font-size: 0.85rem;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
    
    .video-carousel-indicators {
        margin-top: 24px;
        gap: 6px;
    }
    
    .video-indicator {
        width: 7px;
        height: 7px;
    }
    
    .video-indicator.active {
        width: 24px;
    }
}

/* ===================================
   Architecture Page
   =================================== */
.arch-marquee-section {
    padding: 70px 0 24px;
    background: var(--white);
    overflow: hidden;
}

.arch-marquee-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-navy);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.arch-marquee-title::before {
    content: '';
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: var(--gradient-orange);
    flex-shrink: 0;
}

.arch-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.arch-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: archScroll 60s linear infinite;
    will-change: transform;
}

.arch-marquee-track.reverse {
    animation-direction: reverse;
}

.arch-marquee-section-2 {
    padding-top: 16px;
    padding-bottom: 40px;
}

.arch-marquee:hover .arch-marquee-track {
    animation-play-state: paused;
}

.arch-cell {
    flex: 0 0 auto;
    height: 300px;
    margin-right: 22px;
    border-radius: 18px;
    overflow: hidden;
}

.arch-cell img {
    height: 100%;
    width: auto;
    display: block;
}

@keyframes archScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .arch-marquee-track {
        animation: none;
        overflow-x: auto;
    }
}

/* Gallery */
.arch-gallery-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.arch-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.arch-row {
    position: relative;
}

.arch-row-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.arch-row-track::-webkit-scrollbar {
    display: none;
}

.arch-gallery-item {
    position: relative;
    flex: 0 0 calc((100% - 3 * 14px) / 4);
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
}

.arch-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.arch-row-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary-navy);
    color: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(13, 21, 48, 0.28);
    transition: all 0.3s ease;
    z-index: 5;
}

.arch-row-btn:hover {
    background: var(--gradient-orange);
    box-shadow: 0 10px 26px rgba(226, 74, 28, 0.45);
}

.arch-row-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

.arch-row-btn.prev { left: -18px; }
.arch-row-btn.next { right: -18px; }

/* Lightbox */
.arch-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 28, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 40px;
}

.arch-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.arch-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.arch-lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arch-lightbox-close:hover {
    background: var(--gradient-orange);
}

.arch-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.arch-lightbox-nav:hover {
    background: var(--gradient-orange);
    border-color: transparent;
}

.arch-lightbox-nav.prev { left: 30px; }
.arch-lightbox-nav.next { right: 30px; }

@media (max-width: 968px) {
    .arch-gallery-item {
        flex: 0 0 calc((100% - 2 * 14px) / 3);
    }

    .arch-row-btn.prev { left: -8px; }
    .arch-row-btn.next { right: -8px; }

    .arch-cell {
        height: 240px;
    }
}

@media (max-width: 640px) {
    .arch-marquee-section {
        padding: 50px 0 18px;
    }

    .arch-marquee-section-2 {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .arch-marquee-title {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .arch-gallery-section {
        padding: 40px 0 70px;
    }

    .arch-cell {
        height: 180px;
        margin-right: 14px;
        border-radius: 14px;
    }

    .arch-gallery {
        gap: 12px;
    }

    .arch-row-track {
        gap: 12px;
    }

    .arch-gallery-item {
        flex: 0 0 calc((100% - 12px) / 2);
    }

    .arch-row-btn {
        width: 38px;
        height: 38px;
    }

    .arch-lightbox-nav { width: 44px; height: 44px; }
    .arch-lightbox-nav.prev { left: 12px; }
    .arch-lightbox-nav.next { right: 12px; }
    .arch-lightbox { padding: 16px; }
}

@media (max-width: 420px) {
    .arch-gallery-item {
        flex: 0 0 calc((100% - 10px) / 1.7);
    }
}

/* ===================================
   Project Lightbox (Images + Videos)
   =================================== */
.project-card[data-media] {
    cursor: pointer;
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 28, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-card[data-media]:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay i {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 12, 28, 0.92);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 40px;
}

.project-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.project-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.project-lightbox-video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    outline: none;
}

.project-lightbox-close {
    position: absolute;
    top: 24px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.project-lightbox-close:hover {
    background: var(--gradient-orange);
}

.project-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.project-lightbox-nav:hover {
    background: var(--gradient-orange);
    border-color: transparent;
}

.project-lightbox-nav.prev { left: 30px; }
.project-lightbox-nav.next { right: 30px; }

.project-lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 500;
}

@media (max-width: 640px) {
    .project-lightbox-nav { width: 44px; height: 44px; }
    .project-lightbox-nav.prev { left: 12px; }
    .project-lightbox-nav.next { right: 12px; }
    .project-lightbox { padding: 16px; }
    .project-card-overlay i { font-size: 2.2rem; }
}

/* ===================================
   Smooth Cross-Page Transitions
   =================================== */
@view-transition {
    navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none;
    }
}

/* ===================================
   Legal Pages (Terms, Privacy)
   =================================== */
.legal-section {
    padding: 80px 0 100px;
    background: var(--white);
}

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-primary);
    line-height: 1.75;
}

.legal-effective {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-content h2 {
    color: var(--primary-navy);
    font-size: 1.35rem;
    margin: 44px 0 14px;
    scroll-margin-top: 100px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 14px;
    color: var(--text-primary);
}

.legal-content ul {
    margin: 0 0 16px;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-orange);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-contact-block {
    background: var(--off-white);
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
    padding: 24px 28px;
    margin-top: 20px;
}

.legal-contact-block p {
    margin-bottom: 6px;
}

@media (max-width: 640px) {
    .legal-section {
        padding: 50px 0 70px;
    }

    .legal-content h2 {
        font-size: 1.15rem;
        margin: 34px 0 12px;
    }
}
