/**
 * Premier Building Communities
 * Main Stylesheet
 * Design: Elegant, Professional Real Estate
 */

/* ============================================
   CSS Variables (Brand Colors from Logo)
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #E63946;
    --primary-dark: #9B2335;
    --primary-darker: #6B1A27;

    /* Secondary */
    --secondary: #1D3C34;
    --secondary-light: #2D5A4E;

    /* Neutrals */
    --black: #1A1A1A;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #E5E5E5;
    --off-white: #F5F5F5;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);

    /* Border Radius */
    --radius: 4px;
    --radius-lg: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

.lead {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ============================================
   Layout & Container
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 40px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-gray {
    background-color: var(--off-white);
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark p {
    color: var(--gray-light);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

.section-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline-dark:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.header.scrolled .nav-link {
    color: var(--black);
}

.header.scrolled .logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    transition: var(--transition);
}

.header.scrolled .header-inner {
    padding: 15px 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 45px;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--white);
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    transition: var(--transition);
}

.header.scrolled .lang-switch {
    color: var(--black);
    border-color: var(--gray-lighter);
}

.lang-switch:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--white);
}

.header.scrolled .header-phone {
    color: var(--black);
}

/* Body when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background-color: var(--black);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1.2s ease, transform 1.2s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.exiting {
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 1s ease, transform 1s ease;
}

/* Ken Burns Effect Container */
.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide.active .hero-image img {
    animation: kenBurns 8s ease-out forwards;
}

/* Ken Burns Animation */
@keyframes kenBurns {
    0% {
        transform: scale(1.1) translate(0, 0);
    }
    100% {
        transform: scale(1.2) translate(-2%, -2%);
    }
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-statement {
    font-size: clamp(1rem, 1.5vw, 1.25rem) !important;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1px;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    background-color: var(--white);
}

/* Performance Optimizations */
.hero-slide,
.hero-image img {
    will-change: transform, opacity;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-image img {
        animation: none !important;
        transition: none !important;
    }
}

/* Page Hero (Shorter) */
.page-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.6) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
}

/* ============================================
   Introduction Strip
   ============================================ */
.intro-strip {
    text-align: center;
    border-bottom: 1px solid var(--gray-lighter);
}

.intro-strip p {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   Why Premier / Features
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    stroke: var(--white);
}

.feature-card h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ============================================
   Projects Grid
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 15px;
}

.project-location svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.project-link:hover svg {
    transform: translateX(5px);
}

/* Project Filter */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background-color: transparent;
    border: 2px solid var(--gray-lighter);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   Modern Filter Bar
   ============================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-bottom: 50px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.filter-select,
.filter-search {
    padding: 12px 14px;
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--gray-dark);
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 4 6 8 10 4'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.filter-select:focus,
.filter-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.filter-select:hover {
    border-color: var(--gray);
}

.filter-search-group {
    flex: 1;
    min-width: 200px;
}

.filter-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-search {
    width: 100%;
    padding-right: 36px;
    background-image: none;
}

.filter-search::placeholder {
    color: var(--gray-light);
}

.filter-search-group svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    pointer-events: none;
}

/* ============================================
   Filter Bar Responsive
   ============================================ */
@media (max-width: 1200px) {
    .filter-bar {
        gap: 15px;
        padding: 25px;
    }

    .filter-group {
        min-width: 150px;
        flex: 0 1 calc(50% - 8px);
    }

    .filter-search-group {
        flex: 0 1 calc(50% - 8px);
    }
}

@media (max-width: 992px) {
    .filter-bar {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        align-items: stretch;
    }

    .filter-group,
    .filter-search-group {
        min-width: auto;
        flex: 1;
    }

    .filter-select,
    .filter-search {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .filter-bar {
        padding: 16px;
        gap: 12px;
    }

    .filter-group label,
    .filter-search-group label {
        font-size: 0.8125rem;
        margin-bottom: 6px;
    }

    .filter-select,
    .filter-search {
        padding: 10px 12px;
        font-size: 0.875rem;
        background-position: right 10px center;
        padding-right: 32px;
    }

    .filter-search-group svg {
        right: 10px;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background-color: var(--black);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(107, 26, 39, 0.9) 0%,
        rgba(155, 35, 53, 0.85) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-content h2 {
    margin-bottom: 1.5rem;
}

.about-intro-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-image img {
    width: 100%;
    height: auto;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--gray-lighter);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 50px 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.timeline-item h4 {
    margin-bottom: 10px;
}

.timeline-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Vision & Mission */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    padding: 50px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    border-radius: 50%;
}

.vm-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.vm-card h3 {
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 1.125rem;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ============================================
   Single Project Page
   ============================================ */
.project-hero {
    min-height: 70vh;
}

.project-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.project-hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.project-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.project-hero-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
}

.project-hero-location svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

/* Project Overview */
.project-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.project-description h2 {
    margin-bottom: 1.5rem;
}

.project-description p {
    font-size: 1.0625rem;
    line-height: 1.9;
}

.project-specs {
    background-color: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.project-specs h3 {
    font-size: 1.25rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: var(--gray);
}

.spec-value {
    font-weight: 600;
    color: var(--black);
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background-color: rgba(0,0,0,0.3);
}

/* Project CTA */
.project-cta {
    text-align: center;
    padding: 80px 0;
    background-color: var(--off-white);
}

.project-cta h2 {
    margin-bottom: 2rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background-color: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}

.form-control::placeholder {
    color: var(--gray-light);
}

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

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
}

.form-submit {
    margin-top: 10px;
}

/* Contact Info */
.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.contact-info-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info-content p {
    margin-bottom: 0;
}

.contact-info-content a {
    color: var(--gray);
}

.contact-info-content a:hover {
    color: var(--primary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link svg {
    width: 22px;
    height: 22px;
    stroke: var(--gray);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
}

.social-link:hover svg {
    stroke: var(--white);
}

/* Map */
.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Footer
   ============================================ */
/* ============================================
   Footer - Minimal Clean Design
   ============================================ */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Logo Section */
.footer-logo-section {
    flex: 0 0 auto;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Language Toggle */
.footer-lang-section {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.footer-lang-toggle {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lang-current {
    color: var(--white);
}

.lang-separator {
    color: rgba(255,255,255,0.5);
    margin: 0 12px;
}

.lang-switch {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.lang-switch:hover {
    color: var(--white);
    border-bottom-color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-lang-section {
        justify-content: center;
        text-align: center;
    }

    .footer-logo-img {
        height: 70px;
    }
}

/* ============================================
   WhatsApp Float Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

/* ============================================
   Animations (AOS alternative)
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .features-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-intro-image {
        order: -1;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .project-overview {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Timeline mobile */
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .header-inner {
        padding: 15px 20px;
    }

    .header-phone {
        display: none;
    }

    .container-fluid {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .project-hero {
        min-height: 50vh;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .header,
    .footer,
    .whatsapp-float {
        display: none;
    }

    .section {
        padding: 30px 0;
    }

    a {
        color: var(--black);
    }
}

/* ============================================
   Premium Gallery Section
   ============================================ */
.gallery-premium {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-header p {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 300;
}

.gallery-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, rgba(29, 60, 52, 0.05) 100%);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Remove scrollbar for cleaner look while keeping functionality */
.gallery-container::-webkit-scrollbar {
    height: 6px;
}

.gallery-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Gallery Item */
.gallery-item {
    flex: 0 0 200px;
    aspect-ratio: 0.6 / 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.4s ease;
    will-change: transform;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
    will-change: background;
    z-index: 2;
}

.gallery-content {
    color: var(--white);
    text-align: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: opacity;
    padding: 20px;
}

.gallery-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    color: var(--white);
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.gallery-content .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-content .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hover States */
.gallery-item:hover .gallery-image img {
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
}

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

/* Focus state for accessibility */
.gallery-item:focus-within .gallery-image img {
    transform: scale(1);
}

.gallery-item:focus-within .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.gallery-item:focus-within .gallery-content {
    opacity: 1;
}

/* Accessibility - Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    .gallery-image img,
    .gallery-overlay,
    .gallery-content {
        transition: none;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-item {
        flex: 0 0 180px;
    }

    .gallery-premium {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 160px;
    }

    .gallery-container {
        gap: 15px;
        padding: 15px;
    }

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

    .gallery-header h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 140px;
    }

    .gallery-container {
        gap: 12px;
        padding: 12px;
    }

    .gallery-content h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .gallery-premium {
        padding: 60px 0;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-header h2 {
        font-size: 1.5rem;
    }

    .gallery-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 120px;
    }

    .gallery-container {
        gap: 10px;
        padding: 10px;
        border-radius: 12px;
    }

    .gallery-content h3 {
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 6px 16px;
        font-size: 0.75rem;
    }

    .gallery-premium {
        padding: 40px 0;
    }

    .gallery-header {
        margin-bottom: 20px;
    }

    .gallery-header h2 {
        font-size: 1.25rem;
    }

    .gallery-header p {
        font-size: 0.9rem;
    }
}

/* ============================================
   Clients Logo Slider
   ============================================ */
.clients-slider {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.slider-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
}

.slider-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 60px;
    width: fit-content;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}

.logo-item {
    flex: 0 0 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    opacity: 0.7;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Logo Slider Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RTL Support */
html[dir="rtl"] .slider-track {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .clients-slider {
        padding: 60px 0;
    }

    .slider-title-wrapper {
        margin-bottom: 40px;
    }

    .slider-track {
        gap: 40px;
        animation: scroll-left 40s linear infinite;
    }

    html[dir="rtl"] .slider-track {
        animation: scroll-right 40s linear infinite;
    }

    .logo-item {
        flex: 0 0 120px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .clients-slider {
        padding: 40px 0;
    }

    .slider-title-wrapper {
        margin-bottom: 30px;
    }

    .slider-title {
        font-size: 1.5rem;
    }

    .slider-track {
        gap: 30px;
        animation: scroll-left 50s linear infinite;
    }

    html[dir="rtl"] .slider-track {
        animation: scroll-right 50s linear infinite;
    }

    .logo-item {
        flex: 0 0 100px;
        height: 60px;
    }
}

/* ============================================
   Premium CTA Section
   ============================================ */
.cta-premium {
    position: relative;
    min-height: 60vh;
    background-image: url('../images/cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-premium .container {
    position: relative;
    z-index: 2;
}

.cta-premium .cta-content {
    color: var(--white);
    max-width: 600px;
    padding: 40px;
    text-align: left;
}

.cta-premium h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-premium p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.6;
}

.cta-premium .btn {
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-premium {
        min-height: 50vh;
        background-attachment: scroll;
    }

    .cta-premium .cta-content {
        text-align: center;
        max-width: 100%;
        padding: 30px;
    }

    .cta-premium h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .cta-premium p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .cta-premium {
        min-height: 45vh;
    }

    .cta-premium .cta-content {
        padding: 20px;
    }

    .cta-premium h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .cta-premium p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
    padding: 100px 40px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav a {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--black);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-lighter);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-lang-switch {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-lang-switch:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Show mobile menu toggle and hide nav on tablet/mobile */
@media (max-width: 992px) {
    .mobile-menu {
        display: block;
    }
}

/* ============================================
   Project Actions Header (Logo & Buttons)
   ============================================ */
.project-actions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--gray-lighter);
}

.actions-left {
    flex: 1;
}

.project-logo {
    max-width: 200px;
}

.project-logo img {
    max-width: 100%;
    height: auto;
}

.actions-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-outline {
    padding: 12px 28px;
    background-color: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

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

.amenities-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.amenities-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--black);
    flex-shrink: 0;
    width: 200px;
    margin: 0;
    line-height: 1.2;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px 30px;
    flex: 1;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-8px);
}

.amenity-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
}

.amenity-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--gray-dark);
    stroke-width: 1.5;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon svg {
    stroke: var(--primary);
    stroke-width: 2;
}

.amenity-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
    line-height: 1.4;
    margin: 0;
    word-break: break-word;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    transition: var(--transition);
}

.service-card h4 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0;
}

/* ============================================
   Project Location & Map
   ============================================ */
.project-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-map iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ============================================
   Register Interest Section
   ============================================ */
.register-interest-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.register-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.register-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray);
}

.register-form {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.register-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.register-form input,
.register-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background-color: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: var(--transition);
}

.register-form input:focus,
.register-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
}

.register-form input::placeholder,
.register-form textarea::placeholder {
    color: var(--gray-light);
}

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

/* ============================================
   Responsive Design - New Sections
   ============================================ */
@media (max-width: 1200px) {
    .project-actions-header {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        border-bottom: 1px solid var(--gray-lighter);
    }

    .actions-right {
        justify-content: flex-start;
        width: 100%;
    }

    .amenities-wrapper {
        gap: 60px;
    }

    .amenities-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .register-interest-wrapper {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .project-actions-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .actions-right {
        justify-content: center;
    }

    .amenities-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }

    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px 25px;
    }

    .amenities-title {
        flex-shrink: 0;
        width: 150px;
        font-size: 1.8rem;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
    }

    .amenity-icon svg {
        width: 44px;
        height: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .register-interest-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .register-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .project-actions-header {
        padding-bottom: 30px;
        margin-bottom: 40px;
    }

    .actions-right {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .actions-right button,
    .actions-right a {
        width: 100%;
    }

    .project-logo {
        max-width: 150px;
    }

    .amenities-section {
        padding: 60px 0;
    }

    .amenities-wrapper {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }

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

    .amenities-title {
        font-size: 1.8rem;
        width: 120px;
        flex-shrink: 0;
    }

    .amenity-icon {
        width: 60px;
        height: 60px;
    }

    .amenity-icon svg {
        width: 40px;
        height: 40px;
    }

    .amenity-label {
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .project-map iframe {
        height: 350px;
    }

    .register-form {
        padding: 30px;
    }

    .register-form form {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .amenities-section {
        padding: 50px 0;
    }

    .amenities-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .amenities-title {
        font-size: 1.6rem;
        width: 100%;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        width: 100%;
    }

    .amenity-icon {
        width: 55px;
        height: 55px;
    }

    .amenity-icon svg {
        width: 36px;
        height: 36px;
    }

    .amenity-label {
        font-size: 0.8rem;
    }
}

/* ============================================
   Partners / Trusted Partners Section
   Infinite Loop Carousel - Professional Design
   ============================================ */

.partners-grid .slider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 97%;
    overflow: hidden;
    border-radius: 16px;
    backdrop-filter: blur(7.4px);
    -webkit-backdrop-filter: blur(7.4px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

    0% {
        transform: translateX(80%);
    }

    100% {
        transform: translateX(-20%);
    }
}

.slider-items img {
    width: 12%;
    margin: 20px;

}