﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Spacing Scale */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 6rem;     /* 96px */
    --space-4xl: 8rem;     /* 128px */
    
    /* Typography Scale */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    
    /* Light Theme Colors */
    --color-primary: #333333;        /* Dark gray */
    --color-secondary: #666666;      /* Medium gray */
    --color-accent: #d4af37;         /* Gold */
    --color-gold: #d4af37;           /* Gold */
    --color-light: #f8fafc;          /* Light gray */
    --color-white: #ffffff;          /* Pure white */
    --color-gray-50: #f9fafb;        /* Very light gray */
    --color-gray-100: #f3f4f6;       /* Light gray */
    --color-gray-200: #e5e7eb;       /* Border gray */
    --color-background: #ffffff;     /* White background */
    --color-text: #333333;           /* Dark text */
    --color-text-secondary: #666666; /* Secondary text */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --color-primary: #e2e8f0;        /* Light gray */
    --color-secondary: #94a3b8;      /* Medium light gray */
    --color-accent: #f59e0b;         /* Orange */
    --color-gold: #f59e0b;           /* Orange */
    --color-light: #1e293b;          /* Dark blue gray */
    --color-white: #0f172a;          /* Very dark blue */
    --color-gray-50: #1e293b;        /* Dark blue gray */
    --color-gray-100: #334155;       /* Medium dark gray */
    --color-gray-200: #475569;       /* Border dark gray */
    --color-background: #0f172a;     /* Dark background */
    --color-text: #e2e8f0;           /* Light text */
    --color-text-secondary: #94a3b8; /* Secondary light text */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    font-size: var(--text-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #0f172a;
    color: #e2e8f0;
}

body.dark-mode .about-us {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-mode .our-projects-section {
    background: transparent;
}

body.dark-mode .services {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* COMPREHENSIVE DARK MODE OVERHAUL - ELIMINATE ALL WHITE BACKGROUNDS */
body.dark-mode {
    background: #0f172a !important;
}

body.dark-mode section,
body.dark-mode .section,
body.dark-mode .container,
body.dark-mode .content,
body.dark-mode .wrapper,
body.dark-mode .main-content {
    background: #0f172a !important;
}

body.dark-mode .card,
body.dark-mode .panel,
body.dark-mode .box,
body.dark-mode .feature-card,
body.dark-mode .project-card,
body.dark-mode .service-card,
body.dark-mode .value-card,
body.dark-mode .timeline-item,
body.dark-mode .leadership-member,
body.dark-mode .award-item,
body.dark-mode .testimonial-card {
    background: #1e293b !important;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
}

body.dark-mode .modal {
    background-color: rgba(0, 0, 0, 0.9) !important;
}

body.dark-mode .modal-content {
    background: #1e293b !important;
}

body.dark-mode input,
body.dark-mode textarea,
body.dark-mode select {
    background: #1e293b !important;
    border: 1px solid rgba(100, 116, 139, 0.3) !important;
    color: #e2e8f0 !important;
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: #94a3b8 !important;
}

body.dark-mode .footer {
    background: #0f172a !important;
}

body.dark-mode .contact-form {
    background: #1e293b !important;
}

body.dark-mode .gallery-section {
    background: #0f172a !important;
}

body.dark-mode .gallery-item {
    background: #1e293b !important;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .enhanced-features {
    background: #0f172a !important;
}

body.dark-mode .parallax-overlay {
    background: rgba(0, 0, 0, 0.6) !important;
}

/* Text Colors for Dark Mode */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e2e8f0 !important;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode div,
body.dark-mode li {
    color: #cbd5e1 !important;
}

body.dark-mode .nav-link {
    color: #e2e8f0 !important;
}

body.dark-mode .nav-link:hover {
    color: #f59e0b !important;
}

body.dark-mode .contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-mode .moving-gallery-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body.dark-mode .gallery-container {
    border: 3px solid rgba(100, 116, 139, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

body.dark-mode .gallery-item {
    border: 2px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .gallery-controls {
    opacity: 1;
}

body.dark-mode .gallery-btn {
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(245, 158, 11, 0.5);
    color: #f59e0b;
}

body.dark-mode .gallery-btn:hover {
    background: rgba(245, 158, 11, 0.3);
    border-color: #f59e0b;
}

body.dark-mode .project-info {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-mode .project-map {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

body.dark-mode .project-videos {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-mode .project-gallery {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

body.dark-mode .floor-plans {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-mode .cta-section {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
}

/* Mission and Vision Cards */
.mission-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: var(--space-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mission-icon, .vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8860b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: white;
    font-size: 24px;
}

.mission-content h3, .vision-content h3 {
    color: var(--color-primary);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.mission-content p, .vision-content p {
    color: var(--color-secondary);
    line-height: 1.6;
    font-size: var(--text-base);
}

/* Company Story Section */
.company-story {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: rgba(248, 250, 252, 0.8);
    border-radius: 15px;
    border-left: 4px solid var(--color-gold);
}

.company-story h3 {
    color: var(--color-primary);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.company-story p {
    color: var(--color-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: var(--text-base);
}

/* Company Timeline */
.company-timeline {
    margin: var(--space-xl) 0;
}

.company-timeline h3 {
    color: var(--color-primary);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: var(--space-lg);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-gold) 0%, #b8860b 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
    padding-left: var(--space-xl);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--color-gold);
}

.timeline-year {
    position: absolute;
    left: -60px;
    top: 0;
    background: var(--color-gold);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: var(--text-sm);
    min-width: 50px;
    text-align: center;
}

.timeline-content h4 {
    color: var(--color-primary);
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.timeline-content p {
    color: var(--color-secondary);
    line-height: 1.5;
    font-size: var(--text-sm);
}

/* Dark mode styles for new About Us elements */
body.dark-mode .mission-card, 
body.dark-mode .vision-card {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .mission-content h3, 
body.dark-mode .vision-content h3 {
    color: #e2e8f0;
}

body.dark-mode .mission-content p, 
body.dark-mode .vision-content p {
    color: #cbd5e1;
}

/* Mission & Vision Details Styles */
.mission-details,
.vision-details {
    margin-top: var(--space-lg);
}

.detail-item,
.vision-goal {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail-item:hover,
.vision-goal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.detail-item i,
.vision-goal i {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.detail-item h4,
.vision-goal h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin: 0 0 var(--space-xs) 0;
    font-weight: 600;
}

.detail-item p,
.vision-goal p {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Dark Mode Styles for Mission & Vision Details */
body.dark-mode .detail-item,
body.dark-mode .vision-goal {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .detail-item:hover,
body.dark-mode .vision-goal:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: var(--color-accent);
}

body.dark-mode .detail-item h4,
body.dark-mode .vision-goal h4 {
    color: #e2e8f0;
}

body.dark-mode .detail-item p,
body.dark-mode .vision-goal p {
    color: #94a3b8;
}

/* Company Highlights Styles */
.company-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-lg);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.highlight-card h4 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin: 0 0 var(--space-sm) 0;
    font-weight: 600;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Dark Mode Styles for Company Highlights */
body.dark-mode .highlight-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .highlight-card:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

body.dark-mode .highlight-card h4 {
    color: #e2e8f0;
}

body.dark-mode .highlight-card p {
    color: #94a3b8;
}

body.dark-mode .company-story {
    background: rgba(30, 41, 59, 0.8);
    border-left-color: var(--color-gold);
}

body.dark-mode .company-story h3 {
    color: #e2e8f0;
}

body.dark-mode .company-story p {
    color: #cbd5e1;
}

body.dark-mode .company-timeline h3 {
    color: #e2e8f0;
}

body.dark-mode .timeline-content h4 {
    color: #e2e8f0;
}

body.dark-mode .timeline-content p {
    color: #cbd5e1;
}

/* Responsive design for About Us */
@media (max-width: 768px) {
    .mission-vision-section {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .timeline {
        padding-left: var(--space-md);
    }
    
    .timeline-year {
        position: static;
        display: inline-block;
        margin-bottom: var(--space-sm);
    }
    
    .timeline-item {
        padding-left: 0;
    }
    
    .timeline-item::before {
        left: -4px;
    }
}

body.dark-mode .project-content h3 {
    color: #e2e8f0;
}

body.dark-mode .project-content p {
    color: #cbd5e1;
}

body.dark-mode .project-description p {
    color: #cbd5e1;
}

body.dark-mode .service-card {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark-mode .service-card h3 {
    color: #e2e8f0;
}

/* Dark mode for project location button */
body.dark-mode .project-location {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    color: #e2e8f0;
    border: 1px solid #64748b;
}

body.dark-mode .service-card p {
    color: #cbd5e1;
}

body.dark-mode .award-item {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark-mode .award-item h3,
body.dark-mode .award-item p {
    color: #e2e8f0;
}

body.dark-mode .section-header h2 {
    color: #e2e8f0;
}

body.dark-mode .section-header p {
    color: #94a3b8;
}

body.dark-mode .about-text h2,
body.dark-mode .about-subtitle {
    color: #e2e8f0;
}

body.dark-mode .about-text p {
    color: #94a3b8;
}

body.dark-mode .stat-item {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .stat-item h3 {
    color: #f59e0b;
}

body.dark-mode .stat-item p {
    color: #94a3b8;
}

body.dark-mode .contact-form {
    background: #1e293b;
}

body.dark-mode .contact-item h4 {
    color: #e2e8f0;
}

body.dark-mode .contact-item p {
    color: #94a3b8;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #64748b;
}

body.dark-mode .small-contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-mode .contact-quick-info h3 {
    color: #f59e0b;
}

body.dark-mode .contact-quick-info p {
    color: #e2e8f0;
}

body.dark-mode .awards {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

/* Ensure images and borders don't blur in dark mode */
[data-theme="dark"] img {
    filter: none;
    -webkit-filter: none;
}

[data-theme="dark"] .project-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .award-item,
[data-theme="dark"] .villa-card {
    border: 1px solid var(--color-gray-200);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

[data-theme="dark"] .gallery-item,
[data-theme="dark"] .project-image,
[data-theme="dark"] .villa-image {
    filter: none;
    -webkit-filter: none;
}

/* Sample Photo Overlay */
.sample-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    z-index: 10;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Hero Section */
.beach-intro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #020617;
}

.beach-intro::after {
    content: none;
}

body.dark-mode .beach-intro::after {
    content: none;
}

.beach-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--space-3xl) var(--space-xl) var(--space-4xl);
}

.beach-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.beach-image img,
.beach-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
    transition: filter 0.4s ease, transform 0.6s ease;
}

.beach-image video {
    opacity: 0.92;
}

.beach-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 680px;
    padding: var(--space-xl) var(--space-lg);
    border-radius: 28px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
}

body.dark-mode .beach-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

.beach-logo h1 {
    font-size: var(--text-6xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: #ffffff;
    text-shadow: 0 12px 28px rgba(10, 20, 40, 0.55);
}

.beach-tagline {
    font-size: clamp(1.4rem, 2vw + 1rem, var(--text-2xl));
    font-weight: 300;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    text-shadow: 0 8px 24px rgba(10, 20, 40, 0.55);
}

.beach-cta {
    margin-top: var(--space-2xl);
}

.beach-cta .btn {
    padding: 0.85rem 2.4rem;
    font-size: 1rem;
}

.beach-cta .btn-tour {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.beach-cta .btn-tour:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.35);
}

.btn-tour {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b91c1c 100%);
    color: white;
    padding: var(--space-lg) var(--space-2xl);
    border: none;
    border-radius: 50px;
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-tour:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}


/* Modern About Us Section */
.about-us {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    padding-top: var(--space-4xl);
}

[data-theme="dark"] .about-us {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gray-200) 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    margin-top: var(--space-md);
}

.about-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-cta {
    order: -1; /* Move button above image */
    margin-bottom: var(--space-lg);
    text-align: center;
    margin-bottom: var(--space-md);
}

.btn-about-company {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b91c1c 100%);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: 50px;
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 320px;
}

.btn-about-company:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #b91c1c 0%, var(--color-accent) 100%);
}

.about-text h2 {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-weight: 700;
    line-height: 1.2;
}

.about-subtitle {
    font-size: var(--text-xl);
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
    font-weight: 500;
}

.about-text p {
    margin-bottom: var(--space-lg);
    color: var(--color-secondary);
    line-height: 1.8;
    font-size: var(--text-lg);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-sm);
    background: var(--color-gray-50);
    border-radius: 8px;
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.stat-item h3 {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
    font-size: var(--text-sm);
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* New About Us Layout Styles */
.company-overview {
    margin-bottom: var(--space-md);
}

.overview-text {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.quick-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.quick-stats .stat-item {
    text-align: center;
    flex: 1;
}

.quick-stats .stat-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.quick-stats .stat-label {
    font-size: var(--text-sm);
    color: var(--color-secondary);
    font-weight: 500;
}

/* Dark mode styles for new elements */
body.dark-mode .overview-text {
    color: #94a3b8;
}

body.dark-mode .quick-stats .stat-number {
    color: var(--color-accent);
}

body.dark-mode .quick-stats .stat-label {
    color: #94a3b8;
}

/* About Company Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8860b 100%);
    color: white;
    padding: var(--space-4xl) 0;
    text-align: center;
}

.about-hero h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    opacity: 0.9;
}

.mission-vision-section {
    padding: var(--space-4xl) 0;
    background: var(--color-background);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.mission-card, .vision-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--color-accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.mission-card:hover .card-icon, .vision-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--color-accent);
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transition: left 0.5s ease;
}

.mission-card:hover::before, .vision-card:hover::before {
    left: 100%;
}

.card-icon {
    font-size: var(--text-3xl);
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.card-content h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.card-content p {
    color: var(--color-secondary);
    line-height: 1.7;
}

.company-story-section {
    padding: var(--space-4xl) 0;
    background: var(--color-light);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.story-text h2 {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.story-intro {
    font-size: var(--text-lg);
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.story-text p {
    color: var(--color-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-secondary);
}

.highlight i {
    color: var(--color-accent);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.timeline-section {
    padding: var(--space-4xl) 0;
    background: var(--color-background);
}

.timeline {
    margin-top: var(--space-xl);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-accent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-2xl);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-content {
    flex: 1;
    background: white;
    padding: var(--space-lg);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
    transition: width 0.3s ease;
}

.timeline-content:hover::before {
    width: 8px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    flex: 0 0 120px;
    text-align: center;
    z-index: 2;
}

.timeline-year {
    background: var(--color-accent);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: 25px;
    font-weight: 600;
    font-size: var(--text-lg);
    display: inline-block;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: var(--space-lg);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    margin: 0 var(--space-lg);
}

.timeline-content h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
}

.timeline-details {
    display: flex;
    gap: var(--space-sm);
}

.detail-tag {
    background: var(--color-light);
    color: var(--color-secondary);
    padding: 4px var(--space-sm);
    border-radius: 15px;
    font-size: var(--text-sm);
}

.values-section {
    padding: var(--space-4xl) 0;
    background: var(--color-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--color-accent);
}

.value-card:hover h3 {
    color: var(--color-accent);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-icon {
    font-size: var(--text-4xl);
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.value-card h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--color-secondary);
    line-height: 1.6;
}

.team-section {
    padding: var(--space-4xl) 0;
    background: var(--color-background);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: var(--space-lg);
}

.member-info h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.member-title {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.member-bio {
    color: var(--color-secondary);
    line-height: 1.6;
}

.about-cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8860b 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
}

.cta-content p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.cta-buttons .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--color-accent);
}

/* Dark mode styles for About page */
body.dark-mode .mission-card,
body.dark-mode .vision-card,
body.dark-mode .timeline-content,
body.dark-mode .value-card,
body.dark-mode .team-member {
    background: #1e293b;
    border-color: rgba(100, 116, 139, 0.3);
}

body.dark-mode .card-content h3,
body.dark-mode .story-text h2,
body.dark-mode .timeline-content h3,
body.dark-mode .value-card h3,
body.dark-mode .member-info h3 {
    color: #e2e8f0;
}

body.dark-mode .card-content p,
body.dark-mode .story-text p,
body.dark-mode .timeline-content p,
body.dark-mode .value-card p,
body.dark-mode .member-bio {
    color: #94a3b8;
}

body.dark-mode .detail-tag {
    background: #334155;
    color: #94a3b8;
}

/* Leadership Section Styles */
.leadership-section {
    padding: var(--space-4xl) 0;
    background: var(--color-background);
}

.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.leadership-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-xl);
    align-items: start;
    transition: all 0.3s ease;
    position: relative;
}

.leadership-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.leadership-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.leadership-member:hover::before {
    transform: scaleX(1);
}

.member-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: var(--space-xl);
}

.member-info h3 {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.member-title {
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--space-lg);
    font-size: var(--text-lg);
}

.leadership-message blockquote {
    font-style: italic;
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--color-secondary);
    border-left: 4px solid var(--color-accent);
    padding-left: var(--space-lg);
    margin: 0;
}

/* Services Section Styles */
.services-section {
    padding: var(--space-4xl) 0;
    background: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-item {
    background: white;
    padding: var(--space-xl);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.service-item:hover .service-icon {
    transform: scale(1.3) rotate(-5deg);
    color: var(--color-accent);
}

.service-item:hover h3 {
    color: var(--color-accent);
}

.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    transition: width 0.3s ease;
}

.service-item:hover::after {
    width: 100%;
}

.service-icon {
    font-size: var(--text-4xl);
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.service-item h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.service-item p {
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Dark mode styles for new sections */
body.dark-mode .leadership-member,
body.dark-mode .service-item {
    background: #1e293b;
    border-color: rgba(100, 116, 139, 0.3);
}

body.dark-mode .member-info h3,
body.dark-mode .service-item h3 {
    color: #e2e8f0;
}

body.dark-mode .leadership-message blockquote,
body.dark-mode .service-item p {
    color: #94a3b8;
}

/* Responsive styles for leadership */
@media (max-width: 768px) {
    .leadership-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .member-photo img {
        height: 250px;
    }
    
    .leadership-message blockquote {
        font-size: var(--text-base);
        padding-left: var(--space-md);
    }
}

/* Project Page Styles */
.project-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.project-hero .hero-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.project-hero .hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.project-hero .hero-text h1 {
    font-size: var(--text-5xl);
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.project-hero .hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.project-hero .hero-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.project-hero .feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-secondary);
}

.project-hero .feature-item i {
    color: var(--color-accent);
    width: 20px;
}

.project-overview {
    padding: var(--space-4xl) 0;
    background: var(--color-background);
}

.project-overview .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.project-overview h2 {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.project-overview p {
    color: var(--color-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: var(--text-lg);
}

.project-overview .overview-highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.project-overview .highlight-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-secondary);
}

.project-overview .highlight-item i {
    color: var(--color-accent);
}

.project-overview .overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.location-section,
.amenities-section,
.dining-section,
.retail-section,
.features-section,
.mall-features {
    padding: var(--space-4xl) 0;
    background: var(--color-light);
}

.location-grid,
.amenities-grid,
.dining-grid,
.retail-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.location-item,
.amenity-card,
.dining-category,
.retail-category,
.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover,
.amenity-card:hover,
.dining-category:hover,
.retail-category:hover,
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.location-icon,
.category-icon,
.feature-icon {
    font-size: var(--text-4xl);
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.location-item h3,
.amenity-card h3,
.dining-category h3,
.retail-category h3,
.feature-card h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.location-item p,
.amenity-card p,
.dining-category p,
.retail-category p,
.feature-card p {
    color: var(--color-secondary);
    line-height: 1.6;
}

.location-detail {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-accent);
    margin-top: var(--space-xs);
    font-weight: 500;
}

.project-cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #b8860b 100%);
    color: white;
    text-align: center;
}

.project-cta h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-sm);
}

.project-cta p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.project-cta .cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.project-cta .cta-buttons .btn {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--text-lg);
}

.project-cta .cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.project-cta .cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--color-accent);
}

/* Dark mode styles for project pages */
body.dark-mode .project-hero .hero-text h1 {
    color: #e2e8f0;
}

body.dark-mode .project-hero .hero-subtitle,
body.dark-mode .project-hero .feature-item {
    color: #94a3b8;
}

body.dark-mode .project-overview h2 {
    color: #e2e8f0;
}

body.dark-mode .project-overview p,
body.dark-mode .project-overview .highlight-item {
    color: #94a3b8;
}

body.dark-mode .location-item,
body.dark-mode .amenity-card,
body.dark-mode .dining-category,
body.dark-mode .retail-category,
body.dark-mode .feature-card {
    background: #1e293b;
    border-color: rgba(100, 116, 139, 0.3);
}

body.dark-mode .location-item h3,
body.dark-mode .amenity-card h3,
body.dark-mode .dining-category h3,
body.dark-mode .retail-category h3,
body.dark-mode .feature-card h3 {
    color: #e2e8f0;
}

body.dark-mode .location-item p,
body.dark-mode .amenity-card p,
body.dark-mode .dining-category p,
body.dark-mode .retail-category p,
body.dark-mode .feature-card p {
    color: #94a3b8;
}

/* Missing Dark Mode Styles */
body.dark-mode .btn-login {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

body.dark-mode .btn-login:hover {
    background: var(--color-accent);
    color: #0f172a;
}

body.dark-mode .footer {
    background: #1e293b;
    border-top: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .footer-section h3,
body.dark-mode .footer-section h4 {
    color: #e2e8f0;
}

body.dark-mode .footer-section p {
    color: #94a3b8;
}

body.dark-mode .footer-section ul li a {
    color: #94a3b8;
}

body.dark-mode .footer-section ul li a:hover {
    color: var(--color-accent);
}

body.dark-mode .footer-bottom {
    border-top: 1px solid rgba(100, 116, 139, 0.3);
    color: #94a3b8;
}

body.dark-mode .login-popup {
    background: rgba(15, 23, 42, 0.95);
}

body.dark-mode .login-content {
    background: #1e293b;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .login-content h2 {
    color: #e2e8f0;
}

body.dark-mode .login-note {
    color: #94a3b8;
}

body.dark-mode .chatbot {
    background: #1e293b;
    border: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .chatbot-header {
    background: #334155;
    border-bottom: 1px solid rgba(100, 116, 139, 0.3);
}

body.dark-mode .chatbot-header h3 {
    color: #e2e8f0;
}

body.dark-mode .chatbot-input input {
    background: #334155;
    border: 1px solid rgba(100, 116, 139, 0.3);
    color: #e2e8f0;
}

body.dark-mode .chatbot-input input::placeholder {
    color: #94a3b8;
}

body.dark-mode .chatbot-input button {
    background: var(--color-accent);
    color: #0f172a;
}

body.dark-mode .chatbot-toggle {
    background: #1e293b;
    border: 1px solid rgba(100, 116, 139, 0.3);
    color: var(--color-accent);
}

body.dark-mode .chatbot-toggle:hover {
    background: var(--color-accent);
    color: #0f172a;
}

body.dark-mode .btn-primary {
    background: var(--color-accent);
    color: #0f172a;
}

body.dark-mode .btn-primary:hover {
    background: #b8860b;
    color: #0f172a;
}

body.dark-mode .btn-secondary {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

body.dark-mode .btn-secondary:hover {
    background: var(--color-accent);
    color: #0f172a;
}

/* Responsive styles for project pages */
@media (max-width: 768px) {
    .project-hero {
        height: auto;
        padding: var(--space-xl) 0;
    }
    
    .project-hero .hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    
    .project-hero .hero-text h1 {
        font-size: var(--text-3xl);
    }
    
    .project-overview .overview-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .project-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Responsive styles for About page */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .mission-vision-grid,
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .timeline-content {
        margin: var(--space-md) 0 0 0;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Modern Moving Image Gallery Section */
.moving-gallery-section {
    background: var(--color-background);
    color: var(--color-text);
    overflow: hidden;
    position: relative;
    --gallery-gap: clamp(1.25rem, 2.5vw, 3rem);
    --gallery-item-width: clamp(320px, 38vw, 560px);
    --gallery-item-height: clamp(220px, 28vw, 360px);
    --gallery-duration: 90s;
}

body.dark-mode .moving-gallery-section {
    background: #0f172a;
}

.moving-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    z-index: 1;
}

body.dark-mode .moving-gallery-section::before {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
}

.moving-gallery-section .container {
    position: relative;
    z-index: 2;
}


.moving-gallery-section .gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
    padding: clamp(1rem, 2vw, 1.75rem) 0;
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .moving-gallery-section .gallery-container {
    border-color: rgba(148, 163, 184, 0.25);
    background: rgba(15, 23, 42, 0.4);
}

.moving-gallery-section .gallery-track {
    display: flex;
    align-items: stretch;
    gap: var(--gallery-gap);
    width: max-content;
    min-width: 100%;
    will-change: transform;
    animation: none;
}

.moving-gallery-section .gallery-item {
    flex: 0 0 var(--gallery-item-width);
    height: var(--gallery-item-height);
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.25);
    transition: transform 0.45s ease;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: #0f172a;
}

body.dark-mode .moving-gallery-section .gallery-item {
    border-color: rgba(148, 163, 184, 0.25);
}

.moving-gallery-section .gallery-item:hover {
    transform: scale(1.04);
}

.moving-gallery-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.moving-gallery-section .gallery-item figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.3rem 1.6rem;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.78) 55%, rgba(15, 23, 42, 0.94) 100%);
    color: #f8fafc;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

body.dark-mode .moving-gallery-section .gallery-item figcaption {
    color: #e2e8f0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.moving-gallery-section .gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.moving-gallery-section .gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.moving-gallery-section .gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.moving-gallery-section .gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .moving-gallery-section {
        --gallery-item-width: clamp(280px, 52vw, 440px);
        --gallery-item-height: clamp(200px, 32vw, 300px);
        --gallery-duration: 80s;
    }
}

@media (max-width: 768px) {
    .moving-gallery-section {
        --gallery-item-width: clamp(240px, 70vw, 320px);
        --gallery-item-height: clamp(180px, 48vw, 240px);
        --gallery-gap: 1.25rem;
        --gallery-duration: 70s;
    }
    
    .moving-gallery-section h2 {
        font-size: 2.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .moving-gallery-section .gallery-track {
        animation: none !important;
    }
}

/* Our Projects Section */
.our-projects-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    background: transparent;
}

.our-projects-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: translateZ(0);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.our-projects-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

.our-projects-section > * {
    position: relative;
    z-index: 2;
}

.our-projects-section .section-header h2,
.our-projects-section .section-header p {
    color: #ffffff;
}

body.dark-mode .our-projects-section,
[data-theme="dark"] .our-projects-section {
    color: #e2e8f0;
}

body.dark-mode .our-projects-section::before,
[data-theme="dark"] .our-projects-section::before {
    filter: brightness(0.55);
}

body.dark-mode .our-projects-section::after,
[data-theme="dark"] .our-projects-section::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.6) 100%);
}

@media (max-width: 1024px) {
    .our-projects-section::before {
        background-attachment: scroll;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Make project cards more obviously clickable */
.project-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.view-project-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-project-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.project-content {
    padding: var(--space-md) var(--space-md) var(--space-sm) var(--space-md);
}

.project-content h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin: 0 0 var(--space-xs) 0;
    font-weight: 600;
    line-height: 1.2;
}

.project-content p {
    font-size: var(--text-sm);
    color: var(--color-secondary);
    margin: 0 0 var(--space-sm) 0;
    line-height: 1.3;
}

.project-description {
    margin: var(--space-sm) 0;
}

.project-description p {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.5;
    margin: 0;
}

.project-location {
    display: inline-block;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #475569;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        padding: 0 var(--space-md);
    }
    
    .project-content {
        padding: var(--space-lg);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .quick-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .about-us {
        padding: var(--space-xl) 0;
    }
    
    .moving-gallery-section {
        padding: var(--space-xl) 0;
    }
    
    .our-projects-section {
        padding: var(--space-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-lg);
    }
    
    .section-header h2 {
        font-size: var(--text-4xl);
    }
    
    .gallery-container {
        height: 300px;
    }
    
    .moving-gallery-section .section-header h2 {
        font-size: var(--text-xl);
    }
    
    .gallery-item {
        width: 350px;
    }
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Small Contact Section */
.small-contact {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--color-text);
    padding: 60px 0;
}

[data-theme="dark"] .small-contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.contact-quick {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.contact-quick-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #d4af37;
}

.contact-quick-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-quick-buttons {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #d4af37;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #1e293b;
}

@media (max-width: 768px) {
    .contact-quick {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-quick-buttons {
        justify-content: center;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Optimized Section Base Styles */
section {
    padding: var(--space-3xl) 0;
    position: relative;
}

/* Hero section should be largest - consolidated with main beach-intro rule */

/* About section should be more compact */
.about-us {
    padding: var(--space-lg) 0;
}

/* Gallery should be medium-sized */
.moving-gallery-section {
    padding: var(--space-2xl) 0;
}

/* Projects should be largest content section */
.our-projects-section {
    padding: var(--space-4xl) 0;
}

/* Parallax styles are defined locally in each project HTML file */

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Smaller headers for compact sections */
.about-us .section-header,
.moving-gallery-section .section-header {
    margin-bottom: var(--space-lg);
}

.moving-gallery-section .section-header h2 {
    color: var(--color-text);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-xs);
}

.moving-gallery-section .section-header p {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.section-header h2 {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.dark-mode {
    background: rgba(15, 23, 42, 0.95);
}

.navbar.dark-mode .nav-link {
    color: #e2e8f0;
}

.navbar.dark-mode .nav-link:hover {
    color: #f59e0b;
}

.navbar.dark-mode .nav-logo h2 {
    color: #f59e0b;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.btn-login:hover {
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    color: #1a1a1a;
}

/* Language Toggle */
.language-toggle {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.language-toggle:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

body.dark-mode .language-toggle {
    border-color: #f59e0b;
    color: #f59e0b;
}

body.dark-mode .language-toggle:hover {
    background: #f59e0b;
    color: #1a1a1a;
}

.dark-mode .language-toggle {
    border-color: #f59e0b;
    color: #f59e0b;
}

.dark-mode .language-toggle:hover {
    background: #f59e0b;
    color: #1a1a1a;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.dark-mode-toggle:hover {
    background: var(--color-primary);
    color: white;
}

.dark-mode-toggle.dark-mode {
    border-color: #f59e0b;
    color: #f59e0b;
}

.dark-mode-toggle.dark-mode:hover {
    background: #f59e0b;
    color: #1a1a1a;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .about-content {
    direction: rtl;
}

[dir="rtl"] .project-content,
[dir="rtl"] .contact-content {
    direction: rtl;
}

[dir="rtl"] .footer-content {
    direction: rtl;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--color-gray-100);
    border: 2px solid var(--color-gray-200);
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
    transform: scale(1.1);
}

.theme-icon {
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(180deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Beach Intro Section - consolidated with main rules above */

.btn-tour {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.btn-tour:hover {
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}


/* Image Gallery */
.image-gallery {
    padding: 6rem 0;
    background: #f8fafc;
}

.image-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.gallery-slider {
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    animation: slide 20s linear infinite;
    gap: 2rem;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.gallery-item {
    flex: 0 0 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Villas Section */
.villas {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.villa-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.villa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.villa-image {
    height: 250px;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.villa-card:hover .villa-image img {
    transform: scale(1.05);
}

.villa-content {
    padding: 2rem;
}

.villa-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.villa-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.villa-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #666;
    font-size: 0.9rem;
}

.villa-features i {
    color: #d4af37;
}

.villa-contact {
    display: flex;
    gap: 1rem;
}

.btn-contact {
    flex: 1;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background: #f8fafc;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image i {
    font-size: 3rem;
    color: white;
}

.project-content {
    padding: 2rem;
}

.project-type {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.project-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #b8941f;
}

/* Specific adjustments for Galala Azure card to show more imagery */
.project-card[data-project="el-galala"] .project-image {
    height: 240px;
}

.project-card[data-project="el-galala"] .project-content {
    padding: 1.5rem 1.75rem 1.5rem;
}

.project-card[data-project="el-galala"] .project-description {
    margin: 0 0 1rem 0;
}

.project-card[data-project="el-galala"] .project-content > p {
    margin-bottom: 0.75rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="dark"] .services {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Awards Section */
.awards {
    padding: 6rem 0;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
}

[data-theme="dark"] .awards {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.awards .section-header h2,
.awards .section-header p {
    color: #1a1a1a;
}

.awards-slider {
    overflow: hidden;
    position: relative;
}

.awards-track {
    display: flex;
    animation: slideAwards 15s linear infinite;
    gap: 2rem;
}

@keyframes slideAwards {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.award-item {
    flex: 0 0 250px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.award-icon i {
    font-size: 1.5rem;
    color: white;
}

.award-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="dark"] .contact {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

body.dark-mode .footer {
    background: #0f172a;
}

[data-theme="dark"] .footer {
    background: #0f172a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #d4af37;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #d1d5db;
}

/* Login Popup */
.login-popup {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.login-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.close-login {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close-login:hover {
    color: #d4af37;
}

.login-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.btn-gmail {
    width: 100%;
    background: #db4437;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-gmail:hover {
    background: #c23321;
    transform: translateY(-2px);
}

.login-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* AI Chatbot */
.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    display: none;
    flex-direction: column;
}

.chatbot-header {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.close-chat {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.bot-message {
    background: #f1f1f1;
    color: #333;
    align-self: flex-start;
}

.user-message {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    align-self: flex-end;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    border-color: #d4af37;
}

.chatbot-input button {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    transform: scale(1.05);
}

.chatbot-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    z-index: 1400;
}

.chatbot-toggle:hover {
    background: linear-gradient(135deg, #f4e4bc, #d4af37);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .beach-logo h1 {

    font-size: var(--text-6xl);

    font-weight: 800;

    letter-spacing: -0.02em;

    margin-bottom: var(--space-md);

    color: #ffffff;

    text-shadow: 0 12px 28px rgba(10, 20, 40, 0.55);

}

    .beach-tagline {
        font-size: 1.2rem;
        text-shadow: 0 6px 18px rgba(10, 20, 40, 0.5);
    }

    .btn-tour {
        padding: 12px 30px;
        font-size: 1rem;
    }


    .villas-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .chatbot {
        width: 90%;
        height: 400px;
        right: 5%;
    }

    .chatbot-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .section-header h2 {
        font-size: var(--text-3xl);
    }
    
    .about-text h2 {
        font-size: var(--text-3xl);
    }
    
    }

    .beach-logo h1 {

    font-size: var(--text-6xl);

    font-weight: 800;

    letter-spacing: -0.02em;

    margin-bottom: var(--space-md);

    color: #ffffff;

    text-shadow: 0 12px 28px rgba(10, 20, 40, 0.55);

}

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        color: var(--color-primary);
    }
    
    /* Make project overlay always visible on mobile */
    .project-overlay {
        opacity: 1;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

/* Project Page Styles */
.project-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    color: white;
    overflow: hidden;
}

.project-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
    width: 100%;
}

.project-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.project-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.project-hero-text h1 {
    font-size: var(--text-6xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: white;
}

.project-tagline {
    font-size: var(--text-xl);
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.project-location {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
}

.project-info {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

[data-theme="dark"] .project-info {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.project-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.project-details h2,
.project-features h2 {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.project-details p {
    font-size: var(--text-lg);
    color: var(--color-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.project-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.spec-item {
    background: var(--color-gray-50);
    padding: var(--space-lg);
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
}

.spec-item h3 {
    font-size: var(--text-lg);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.spec-item p {
    color: var(--color-secondary);
    font-size: var(--text-base);
}

.project-features ul {
    list-style: none;
    padding: 0;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--color-secondary);
    font-size: var(--text-base);
}

.project-features i {
    color: var(--color-gold);
    font-size: var(--text-lg);
}

.project-map {
    padding: var(--space-3xl) 0;
    background: var(--color-gray-50);
}

[data-theme="dark"] .project-map {
    background: #1e293b;
}

.project-map h2 {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.map-container {
    background: var(--color-white);
    border-radius: 20px;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(45deg, #e2e8f0 25%, #f1f5f9 25%, #f1f5f9 50%, #e2e8f0 50%, #e2e8f0 75%, #f1f5f9 75%);
    background-size: 20px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
}

.project-videos {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

[data-theme="dark"] .project-videos {
    background: #0f172a;
}

.project-videos h2 {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.video-item {
    background: var(--color-gray-50);
    border-radius: 15px;
    padding: var(--space-xl);
    text-align: center;
}

.video-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: var(--space-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: var(--space-sm);
    color: var(--color-gold);
}

.project-gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-gray-50);
}

[data-theme="dark"] .project-gallery {
    background: #1e293b;
}

.project-gallery h2 {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    grid-template-rows: repeat(3, 250px);
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floor-plans {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
}

[data-theme="dark"] .floor-plans {
    background: #0f172a;
}

.floor-plans h2 {
    font-size: var(--text-3xl);
    color: var(--color-primary);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.plan-option {
    background: var(--color-gray-50);
    border-radius: 15px;
    padding: var(--space-xl);
    text-align: center;
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s ease;
}

.plan-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.plan-option h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.plan-image {
    margin-bottom: var(--space-lg);
}

.plan-placeholder {
    width: 100%;
    height: 150px;
    background: var(--color-gold);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.plan-placeholder i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.plan-option p {
    color: var(--color-secondary);
    font-weight: 600;
}

.project-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    text-align: center;
}

[data-theme="dark"] .project-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.project-cta h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-lg);
}

.project-cta p {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Call-to-Action Section */
.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--text-4xl);
    color: var(--color-primary);
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: var(--text-lg);
    color: var(--color-secondary);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.cta-action {
    background: white;
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.cta-action:hover {
    transform: translateY(-3px);
}

.cta-action i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.cta-action h3 {
    font-size: var(--text-xl);
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.cta-action p {
    font-size: var(--text-base);
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
}

.cta-action .btn {
    background: linear-gradient(135deg, var(--color-gold) 0%, #f59e0b 100%);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-action .btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
}

/* Responsive Design for Project Pages */
@media (max-width: 768px) {
    .project-hero-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .project-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .project-specs {
        grid-template-columns: 1fr;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .project-hero-text h1 {
        font-size: var(--text-4xl);
    }
}




