﻿/* 
   Premium Real Estate Design System 
   Theme: Lux, Modern, Trustworthy
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    /* Colors */
    --primary-color: #0e0e0e;
    /* Brand Black */
    --secondary-color: #393e41;
    /* Brand Grey */
    --brand-blue: #082052;
    /* Brand Blue */
    --accent-color: #ffbd59;
    /* Brand Gold */
    --accent-hover: #e5aa50;
    --text-light: #fefcff;
    --text-dark: #0e0e0e;
    --text-muted: #393e41;
    /* Slightly lighter for muted text */
    --bg-light: #f4f6f8;
    /* Light grey for contrast */
    --bg-white: #fefcff;
    /* Brand White */

    /* Spacing */
    --container-width: 1280px;
    --header-height: 0px;
    /* Reset since header is gone */

    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --backdrop-blur: 12px;
}

/* Reset & Base - SCOPED */
/* skyland-wrapper * { */
/* To avoid global conflicts, we scope carefully but need aggressive resets for the gap */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    margin-top: 0 !important;
    padding-top: 0 !important;
    /* Force remove WP Admin Bar gap */
}

/* Hide Common Theme Headers & Admin Bar */
#wpadminbar,
#masthead,
.site-header,
header:not(.skyland-navbar) {
    display: none !important;
}

.skyland-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Ensure Skyland wrapper breaks out of themes */
.skyland-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.skyland-wrapper h1,
.skyland-wrapper h2,
.skyland-wrapper h3,
.skyland-wrapper h4,
.skyland-wrapper h5,
.skyland-wrapper h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.skyland-wrapper a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.skyland-wrapper ul {
    list-style: none;
}

.skyland-wrapper img {
    max-width: 100%;
    display: block;
}

/* Utilities - SCOPED */
.skyland-wrapper .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.skyland-wrapper .section-padding {
    padding: 80px 0;
}

.skyland-wrapper .text-center {
    text-align: center;
}

.skyland-wrapper .flex {
    display: flex;
}

.skyland-wrapper .items-center {
    align-items: center;
}

.skyland-wrapper .justify-between {
    justify-content: space-between;
}

.skyland-wrapper .justify-center {
    justify-content: center;
}

.skyland-wrapper .gap-4 {
    gap: 1rem;
}

.skyland-wrapper .gap-8 {
    gap: 2rem;
}

/* Buttons - SCOPED */
.skyland-wrapper .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.skyland-wrapper .btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.skyland-wrapper .btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.skyland-wrapper .btn-outline {
    border: 1px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.skyland-wrapper .btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Custom Header Styles */
.skyland-navbar {
    position: absolute;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.skyland-navbar.scrolled {
    position: fixed;
    background-color: var(--brand-blue) !important;
    backdrop-filter: none;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header Grid Layout for Desktop */
.skyland-navbar .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand-logo {
    justify-self: start;
}

.brand-logo .logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    justify-self: center;
    margin: 0;
    /* Grid handles centering */
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Visibility Control */
.mobile-cta {
    display: none;
}

.desktop-cta {
    justify-self: end;
    display: inline-flex;
}

.skyland-navbar .cta-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skyland-navbar .cta-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    justify-self: end;
    /* For mobile grid */
}

/* Mobile Header Responsive */
@media (max-width: 768px) {
    .skyland-navbar .nav-container {
        display: flex;
        /* Revert to flex for simple spread */
        justify-content: space-between;
    }

    .desktop-cta {
        display: none;
    }

    /* Reveal mobile CTA inside menu */
    .nav-links.active .mobile-cta {
        display: inline-flex;
        margin-top: 1rem;
        /* Inherit premium styles from previous rule if applied, or specific here */
        font-size: 1rem;
        padding: 12px 30px;
        background: transparent;
        border: 1px solid var(--accent-color);
        color: var(--accent-color) !important;
    }

    .nav-links,
    .mobile-cta {
        /* Hide initially */
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(8, 32, 82, 0.98);
        /* Slightly darker for premium feel */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
        padding-top: 0;
        animation: fadeIn 0.3s ease;
    }

    .nav-links.active a:not(.cta-btn) {
        font-size: 1.75rem;
        color: white !important;
        font-weight: 300;
        /* Lighter font weight for elegance */
        font-family: 'Montserrat', sans-serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
    }

    /* Add golden separator line logic if feasible, or just style */
    /* Wait, borders on inline elements are tricky. Let's use ::after on the container or similar. 
       Actually, simplified approach: Spacing is key. */

    .nav-links.active a:not(.cta-btn):last-of-type {
        margin-bottom: 2rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .skyland-navbar {
        padding: 15px 0;
    }

    .brand-logo .logo-img {
        height: 32px;
    }
}

/* Hero Section */
/* Hero Section */
.skyland-wrapper .hero {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Updated gradient to use brand colors/black */
    background: linear-gradient(rgba(8, 32, 82, 0.6), rgba(14, 14, 14, 0.8)), url('Dubai skyscrper night.jpg.jpeg');
    background-size: cover;
    background-position: center top;
    /* Anchor to top */
    background-attachment: fixed !important;
    /* Parallax Effect */
    text-align: center;
    padding-top: 120px;
    /* Space for content below header */
    margin-top: -120px;
    /* Pull Hero UP behind the header */
}

/* Mobile Parallax Fallback */
@media (max-width: 768px) {
    .skyland-wrapper .hero {
        background-attachment: scroll !important;
        /* Fixed often breaks on mobile */
        margin-top: -100px;
        /* Adjust for mobile header size */
        padding-top: 100px;
    }
}

.skyland-wrapper .hero-content {
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    animation: fadeInUp 1s ease forwards;
}

.skyland-wrapper .hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.skyland-wrapper .hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Search Wrapper */
.skyland-wrapper .search-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.skyland-wrapper .toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    /* Darker background for visibility */
    padding: 5px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.skyland-wrapper .toggle-btn {
    padding: 8px 24px;
    border-radius: 50px;
    cursor: pointer;
    color: #ffffff;
    /* Explicit white for visibility */
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.7;
    /* Dim when inactive */
}

.skyland-wrapper .toggle-btn:hover {
    opacity: 1;
}

.skyland-wrapper .toggle-btn.active {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 1;
    /* Full opacity when active */
}

.skyland-wrapper .search-bar {
    position: relative;
    display: flex;
    width: 100%;
}

.skyland-wrapper .search-input {
    width: 100%;
    padding: 18px 25px;
    padding-right: 60px;
    font-size: 1.1rem;
    border: none;
    border-radius: 8px;
    outline: none;
    background: white;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.skyland-wrapper .search-input:focus {
    transform: scale(1.01);
}

.skyland-wrapper .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide Default WordPress Elements */
#colophon,
.site-footer,
footer:not(.skyland-footer),
.footer-widgets {
    display: none !important;
}

/* Force Footer Full Width (Breakout) */
.skyland-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: 2rem;
    /* Add safeguards */
    padding-right: 2rem;
    box-sizing: border-box;
}

/* Responsive Footer */
@media (max-width: 991px) {

    /* Mobile nav logic removed as we use theme header */
    .skyland-wrapper .hero-title {
        font-size: 2.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {

    /* Mobile nav logic removed as we use theme header */
    .skyland-wrapper .hero-title {
        font-size: 2.2rem;
    }
}

/* Section Titles */
.skyland-wrapper .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.skyland-wrapper .section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.skyland-wrapper .bg-light {
    background-color: var(--bg-light);
}

.skyland-wrapper .bg-white {
    background-color: var(--bg-white);
}

/* Trusted Partners */
.skyland-wrapper .partners-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 0;
}

.skyland-wrapper .partner-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
    cursor: pointer;
    background-blend-mode: multiply;
}

.skyland-wrapper .partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Strategies Grid */
/* City Stats Grid */
.skyland-wrapper .city-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skyland-wrapper .stat-card {
    background: #ffffff;
    /* White background */
    border: 1px solid #e2e8f0;
    /* Light border */
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.skyland-wrapper .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--accent-color);
}

.skyland-wrapper .stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1rem;
}

.skyland-wrapper .stat-header h3 {
    color: var(--primary-color);
    /* Dark Text */
    font-size: 1.5rem;
    margin-bottom: 0;
}

.skyland-wrapper .badge-gold {
    background: var(--accent-color);
    /* Solid Gold bg for contrast */
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.skyland-wrapper .stat-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.skyland-wrapper .metric {
    text-align: left;
}

.skyland-wrapper .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    /* Dark numbers */
    font-family: 'Montserrat', sans-serif;
}

.skyland-wrapper .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    /* Slate 500 */
}

.skyland-wrapper .growth-points li {
    margin-bottom: 0.8rem;
    color: #475569;
    /* Slate 600 */
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.skyland-wrapper .growth-points li i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.skyland-wrapper .view-insights-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.skyland-wrapper .view-insights-btn:hover {
    gap: 12px;
}

.skyland-wrapper .view-insights-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}


/* Premium Strategies Grid - Redesigned */
.skyland-wrapper #strategies {
    background-color: #f8fafc;
}

.skyland-wrapper .premium-strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* Slightly wider min */
    gap: 2.5rem;
    /* More breathing room */
    padding: 2rem 0;
}

.skyland-wrapper .premium-card {
    position: relative;
    background: white;
    padding: 4rem 2rem;
    /* Taller card for elegance */
    border-radius: 4px;
    /* Sharper, more premium corners */
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother bezier */
    border: 1px solid #f1f5f9;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.skyland-wrapper .premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #082052;
    /* Brand Blue solid */
    opacity: 0;
    z-index: -1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    /* Scale effect source */
    border-radius: 4px;
}

.skyland-wrapper .premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(8, 32, 82, 0.25);
    /* Colored shadow */
    color: white;
    border-color: transparent;
}

.skyland-wrapper .premium-card:hover::before {
    opacity: 1;
    transform: scale(1);
    border-radius: 4px;
}

/* Icon */
.skyland-wrapper .icon-circle {
    width: 90px;
    height: 90px;
    background: #fffbf2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.2rem;
    color: var(--accent-color);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 189, 89, 0.2);
    position: relative;
    z-index: 10;
}

.skyland-wrapper .icon-circle svg {
    width: 40px;
    height: 40px;
    display: block;
}

.skyland-wrapper .premium-card:hover .icon-circle {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(0.9) translateY(-10px);
}

/* FontAwesome Icons Removed - Using Inline SVGs */

/* Typography */
.skyland-wrapper .premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.skyland-wrapper .premium-card:hover h3 {
    color: white;
}

/* Static Content - Always Visible */
.skyland-wrapper .hidden-content {
    display: block;
    opacity: 1;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

/* Description Text */
.skyland-wrapper .premium-card p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.skyland-wrapper .premium-card:hover p {
    color: #e2e8f0;
}

/* On Mobile/Tablet */
@media (max-width: 991px) {
    .skyland-wrapper .premium-strategies-grid {
        gap: 1.5rem;
    }

    .skyland-wrapper .premium-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Fix Text color on lighter background (if hover fails or on mobile) */
@media (max-width: 991px) {
    .skyland-wrapper .premium-card p {
        color: #64748b;
        /* Darker text for visibility on white bg */
    }

    .skyland-wrapper .details-link {
        display: none;
        /* Hide 'Learn More' on mobile if redundant */
    }
}

.skyland-wrapper .premium-card p {
    color: #64748b;
    /* Visible grey by default */
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.skyland-wrapper .premium-card:hover p {
    color: #e2e8f0;
    /* Light text on hover */
}

.skyland-wrapper .details-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skyland-wrapper .details-link i {
    transition: transform 0.3s ease;
}

.skyland-wrapper .details-link:hover i {
    transform: translateX(5px);
}

/* Blogs Grid (Mobile Carousel Same as Projects) */
@media (max-width: 991px) {
    .skyland-wrapper .blogs-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .skyland-wrapper .blogs-grid::-webkit-scrollbar {
        display: none;
    }

    .skyland-wrapper .blog-card {
        min-width: 85vw;
        /* Peek effect */
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

/* Full Width Infrastructure Slider */
.skyland-wrapper .infrastructure-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    height: 400px;
    min-height: 400px;
}

.skyland-wrapper .infrastructure-slider::-webkit-scrollbar {
    display: none;
}

.skyland-wrapper .infra-slide {
    min-width: 100%;
    /* Change to 100% for full width slides */
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    scroll-snap-align: center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.skyland-wrapper .infra-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Subtle overlay for text readability */
    z-index: 1;
}

.skyland-wrapper .slide-content {
    color: white;
    max-width: 1000px;
    z-index: 2;
    padding: 2rem;
    /* Box removed completely */
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    animation: fadeIn 0.5s ease-out;
}

.skyland-wrapper .location-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.skyland-wrapper .slide-content h3 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white !important;
    /* Force White */
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    /* Stronger shadow */
}

.skyland-wrapper .slide-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.skyland-wrapper .learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skyland-wrapper .learn-more-btn:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .skyland-wrapper .infrastructure-slider {
        height: 60vh;
        min-height: 400px;
    }

    .skyland-wrapper .slide-content h3 {
        font-size: 2rem;
    }

    .skyland-wrapper .slide-content {
        width: 90%;
        padding: 1.5rem;
    }
}


/* Projects Grid */
.skyland-wrapper .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.skyland-wrapper .project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.skyland-wrapper .project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.skyland-wrapper .card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.skyland-wrapper .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.skyland-wrapper .card-content {
    padding: 1.5rem;
}

.skyland-wrapper .card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.skyland-wrapper .location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.skyland-wrapper .card-details {
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-bottom: 1rem;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.skyland-wrapper .price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.skyland-wrapper .card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.skyland-wrapper .card-link:hover {
    color: var(--accent-color);
}

/* Blogs Grid */
.skyland-wrapper .blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skyland-wrapper .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.skyland-wrapper .blog-card:hover {
    box-shadow: var(--shadow-md);
}

.skyland-wrapper .blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.skyland-wrapper .blog-content {
    padding: 1.5rem;
}

.skyland-wrapper .date {
    font-size: 0.8rem;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.skyland-wrapper .blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.skyland-wrapper .read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Upcoming Banner */
.skyland-wrapper .upcoming-banner {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1200');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 4rem 2rem;
    color: white;
    margin-top: 2rem;
}

.skyland-wrapper .upcoming-banner h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.skyland-wrapper .tab-controls {
    display: flex;
    gap: 10px;
}

.skyland-wrapper .tab-btn {
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    background: transparent;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skyland-wrapper .tab-btn.active,
.skyland-wrapper .tab-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* CTA Section */
.skyland-wrapper #contact {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.skyland-wrapper .quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: white !important;
    /* Force visible */
}

.skyland-wrapper #contact h3,
.skyland-wrapper #contact p,
.skyland-wrapper #contact cite {
    color: white !important;
}

/* Footer - REMOVED globally, keeping only local styles if needed, but user said remove. */
/* Just in case, scoping checks for existing footer classes */
.skyland-wrapper footer {
    /* Should not be here based on instructions */
}

/* Hide Default WordPress Theme Headers */
body .site-header,
body #masthead,
body header.site-header,
body .elementor-location-header,
body .hfe-site-header,
body .ast-main-header-wrap,
body #site-header,
body .main-header-bar,
body header {
    display: none !important;
}

/* Custom Sticky Header styling */
.skyland-wrapper .skyland-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 10000 !important;
    /* High Z-Index to stay on top */
    transition: all 0.4s ease;
    background: transparent;
    /* Transparent initially */
    display: block !important;
    /* Ensure it is not hidden */
}

.skyland-wrapper .skyland-navbar.scrolled {
    background: #000000;
    /* Pure Black on scroll */
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.skyland-wrapper .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skyland-wrapper .brand-logo {
    display: flex;
    align-items: center;
}

.skyland-wrapper .logo-img {
    height: 90px;
    /* Force explicit height */
    width: auto;
    display: block;
    object-fit: contain;
    /* Ensure Aspect Ratio */
    z-index: 10001;
    /* Above navbar background */
    position: relative;
    background: transparent;
    /* Ensure no white bg blocking it */
}

/* Remove Negative Margin Hack - Let Fixed Header float on top naturally */
.skyland-wrapper .hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(8, 32, 82, 0.6), rgba(14, 14, 14, 0.8)), url('Dubai skyscrper night.jpg.jpeg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed !important;
    text-align: center;
    padding-top: 150px;
    /* Added significant padding to push content down away from header */
    margin-top: 0 !important;
    /* Remove negative margin causing overlap/gap issues */
    top: 0;
}


/* On Mobile, keep it reasonably sized but visible */
@media (max-width: 768px) {
    .skyland-wrapper .logo-img {
        max-height: 60px;
    }
}

.skyland-wrapper .nav-links {
    display: flex;
    gap: 2rem;
}

.skyland-wrapper .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.skyland-wrapper .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.skyland-wrapper .nav-links a:hover {
    color: var(--accent-color);
}

.skyland-wrapper .nav-links a:hover::after {
    width: 100%;
}

.skyland-wrapper .cta-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skyland-wrapper .cta-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.skyland-wrapper .mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .skyland-wrapper .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #082052;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .skyland-wrapper .nav-links.active {
        display: flex;
    }

    .skyland-wrapper .mobile-menu-toggle {
        display: block;
    }

    .skyland-wrapper .cta-btn {
        display: none;
    }
}


/* Page Header (for About Us) */
.skyland-wrapper .page-header {
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    /* Reset margins */
    position: relative;
    color: white;
}

/* Premium Mission Text */
.skyland-wrapper .mission-text {
    position: relative;
}

.skyland-wrapper .mission-text::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 2rem auto 0;
}

/* Staggered Story Grid */
.skyland-wrapper .story-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.skyland-wrapper .story-row:nth-child(even) {
    flex-direction: row-reverse;
}

.skyland-wrapper .story-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.skyland-wrapper .story-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.skyland-wrapper .story-image {
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-lg);
}

.skyland-wrapper .story-image:hover {
    transform: translateY(-5px);
}

/* Principles Grid */
.skyland-wrapper .principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skyland-wrapper .principle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.skyland-wrapper .principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.skyland-wrapper .principle-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .skyland-wrapper .story-row {
        flex-direction: column !important;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        /* Header height */
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
        display: flex;
        /* Override display: none from earlier if needed, but we used display:none in the other media query. Wait. */
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Force Horizontal Carousel on Mobile (Aggressive Override) */
@media (max-width: 991px) {

    .skyland-wrapper .projects-grid,
    .skyland-wrapper .blogs-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100% !important;
    }

    .skyland-wrapper .projects-grid::-webkit-scrollbar,
    .skyland-wrapper .blogs-grid::-webkit-scrollbar {
        display: none;
    }

    .skyland-wrapper .project-card,
    .skyland-wrapper .blog-card {
        min-width: 85vw !important;
        /* Peek effect */
        width: 85vw !important;
        max-width: 85vw !important;
        scroll-snap-align: center;
        flex-shrink: 0 !important;
        margin-right: 0;
    }
}

/* =========================================
   Premium Footer Styles (Corrected)
   ========================================= */

/* Hide Default WordPress Elements */
#colophon,
.site-footer,
footer:not(.skyland-footer),
.footer-widgets {
    display: none !important;
}

/* Brand Logo Styling */
.skyland-footer .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

/* Premium Footer Container */
.skyland-footer {
    background-color: var(--primary-color, #0e0e0e);
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Outfit', sans-serif;

    /* Full Width Breakout */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: max(2rem, calc((100vw - 1200px) / 2));
    padding-right: max(2rem, calc((100vw - 1200px) / 2));
    box-sizing: border-box;
}

.skyland-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    /* Padding handled by footer padding-left/right */
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 350px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color, #cca43b);
    color: var(--primary-color, #0e0e0e);
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color, #cca43b);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent-color, #cca43b);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color, #cca43b);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .skyland-footer {
        padding-top: 3rem;
        /* Maintain breakout on mobile */
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 2rem;
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .footer-desc {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}



/* =========================================
   Premium Footer Styles
   ========================================= */

/* Hide Default WordPress Elements */
#colophon,
.site-footer,
footer:not(.skyland-footer),
.footer-widgets {
    display: none !important;
}

/* Brand Logo Styling */
.skyland-footer .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

/* Premium Footer Container */
.skyland-footer {
    background-color: var(--primary-color, #0e0e0e);
    color: white;
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Outfit', sans-serif;

    /* Full Width Breakout */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-left: max(2rem, calc((100vw - 1200px) / 2));
    padding-right: max(2rem, calc((100vw - 1200px) / 2));
    box-sizing: border-box;
}

.skyland-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 350px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color, #cca43b);
    color: var(--primary-color, #0e0e0e);
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color, #cca43b);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent-color, #cca43b);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom .legal-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color, #cca43b);
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .skyland-footer {
        padding-top: 3rem;
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 2rem;
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .footer-desc {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* =========================================
   Premium About Us Page Styles
   ========================================= */

/* Hero Section (Start with simple solid visibility) */
.about-hero {
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    /* Safer for mobile/headers */
    color: white;
    text-align: center;
    /* Clear header */
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Mission Section */
.mission-section {
    background-color: var(--primary-color, #0e0e0e);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    /* Breakout */
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
}

.mission-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
    width: 100%;
    text-align: center;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color, #cca43b);
    margin-bottom: 2rem;
    font-weight: 600;
}

.mission-statement {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    line-height: 1.5;
    color: white;
}

.highlight-gold {
    color: var(--accent-color, #cca43b);
    font-style: italic;
    position: relative;
    white-space: nowrap;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-full-text {
    border-left: 2px solid var(--accent-color);
    padding-left: 2rem;
    margin-top: 2rem;
}

.story-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-img {
    transform: scale(1.03);
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.principle-icon {
    width: 64px;
    height: 64px;
    background: rgba(204, 164, 59, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.principle-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Values Grid (New) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transform: rotate(45deg);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 1), 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--accent-color);
    color: white;
    transform: rotate(45deg) scale(1.1);
}

.value-icon svg {
    transform: rotate(-45deg);
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.value-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image-wrapper {
        order: -1;
        max-height: 400px;
    }

    .story-img {
        object-fit: cover;
        height: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .mission-statement {
        font-size: 1.4rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    background-color: #fff;
    /* Breakout */
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.story-content .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.story-image-wrapper {
    position: relative;
    border-radius: 8px;
}

.story-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.image-accent-box {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    z-index: 1;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image-wrapper {
        margin-right: 20px;
        /* Make space for accent box */
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .mission-statement {
        font-size: 1.5rem;
    }

}

/* =========================================
   CALLBACK MODAL STYLES (ADDED)
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    /* Display is handled by JS (flex/none) */
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-card {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    z-index: 10001;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-header p {
    font-size: 0.95rem;
    color: #64748b;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    background: white;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.half {
    width: 50%;
}

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--accent-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* City Stats Carousel */
.city-stats-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin-top: 3rem;
    padding: 0 60px;
    box-sizing: border-box;
}

.city-stats-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.city-stats-track::-webkit-scrollbar {
    display: none;
}

.stat-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: center;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.badge-gold {
    background: rgba(204, 164, 59, 0.1);
    color: var(--accent-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.growth-points {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    flex-grow: 1;
}

.growth-points li {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.view-insights-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.view-insights-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateY(-10px);
    /* Adjust for padding-bottom of track */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    opacity: 0.9;
}

.carousel-nav:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    opacity: 1;
}

.carousel-nav.prev {
    left: 10px;
    right: auto;
    /* explicit reset */
}

.carousel-nav.next {
    right: 10px;
    left: auto;
    /* explicit reset */
}

/* Responsive */
@media (max-width: 992px) {
    .stat-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 640px) {
    .city-stats-carousel-wrapper {
        padding: 0 10px;
        /* Minimal padding on mobile */
    }

    .carousel-nav {
        display: flex !important;
        width: 32px;
        height: 32px;
        opacity: 1 !important;
    }

    .carousel-nav.prev {
        left: 5px;
        right: auto;
    }

    .carousel-nav.next {
        right: 5px;
        left: auto;
    }

    .stat-card {
        flex: 0 0 85%;
        /* Peek effect */
    }
}

.stat-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.badge-gold {
    background: rgba(204, 164, 59, 0.1);
    color: var(--accent-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.metric {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.growth-points {
    list-style: none;
    margin: 0 0 1.5rem 0;
    padding: 0;
    flex-grow: 1;
}

.growth-points li {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.view-insights-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.view-insights-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .city-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .city-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile adjustments for Top Investment Opps */
@media (max-width: 768px) {
    #projects.section-padding {
        padding-top: 0 !important;
    }

    #projects .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    #projects .tab-controls {
        width: 100%;
        display: flex;
        gap: 10px;
        margin-top: 0.5rem;
        overflow-x: auto;
        /* Just in case */
    }
}

/* Responsive Utilities */
@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
}