/* ============================================
   FAO Properties - Luxury Real Estate Dubai
   Premium CSS Styles - Optimized
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Black & Gold Theme */
    --color-primary: #D4AF37;
    --color-primary-dark: #B8960C;
    --color-primary-light: #E5C76B;
    --color-secondary: #0A0A0A;
    --color-dark: #000000;
    --color-light: #0A0A0A;
    --color-white: #FFFFFF;
    --color-gray: #888888;
    --color-gray-light: #333333;
    --color-gray-dark: #151515;
    
    /* Typography - System font fallbacks for faster rendering */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    
    /* Transitions - GPU accelerated */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.4s ease-out;
    --transition-slow: 0.6s ease-out;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(201, 169, 98, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Improve text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-dark);
    overflow-x: hidden;
    cursor: default;
    position: relative;
    /* Prevent layout shift */
    min-height: 100vh;
}

/* Preloader - Optimized */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    /* GPU acceleration */
    will-change: opacity;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 20px;
    margin-bottom: 40px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--color-gray-dark);
    border-radius: 2px;
    overflow: hidden;
}

/* Skeleton Screen */
.skeleton {
    position: relative;
    overflow: hidden;
    background-color: var(--color-gray-dark);
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.05) 20%,
        rgba(255, 255, 255, 0.1) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

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

.skeleton img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.skeleton.loaded img {
    opacity: 1;
}

.skeleton.loaded::after {
    display: none;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    animation: loading 2s ease forwards;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-secondary);
}

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

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

/* Ensure all sections are visible */
section {
    position: relative;
    display: block;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Support for data-aos attributes - make elements visible by default */
/* Elements with data-aos will be styled normally, animations handled by custom system */
[data-aos] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

[data-aos="fade-up"],
[data-aos="fade-down"],
[data-aos="fade-left"],
[data-aos="fade-right"],
[data-aos="fade"],
[data-aos="zoom-in"] {
    opacity: 1 !important;
    transform: none !important;
}

/* Ensure all containers and grids are visible */
.container {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.properties-grid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-grid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.contact-grid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-grid {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 1px;
    background: var(--color-primary);
    /* CONSISTENT: left-to-right animation with 0.8s duration */
    transition: width 0.8s cubic-bezier(0, 0, 0.2, 1);
}

/* Section Title */
.section-title {
    font-size: 56px;
    margin-bottom: 30px;
    color: var(--color-white);
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.4s ease, 
                padding 0.4s ease;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 8px;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--color-white);
    margin-top: 5px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-white);
    position: relative;
    padding: 10px 0;
}

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

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

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

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
}

.nav-phone:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* Follow Us Dropdown */
.follow-us-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.follow-us-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition-fast);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    transition: var(--transition-fast);
}

.dropdown-social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-primary);
}

.dropdown-social-link:hover svg {
    stroke: var(--color-primary);
    transform: scale(1.1);
}

.nav-actions {
    position: relative;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-fast);
}

.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 Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.5s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-menu {
    list-style: none;
    text-align: center;
    padding: 0 20px;
}

.mobile-nav-menu li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.active .mobile-nav-menu li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-menu li:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav-menu a {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-white);
    transition: var(--transition-fast);
    display: inline-block;
}

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

/* Mobile Menu Contact Info */
.mobile-menu-contact {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--color-gray);
    font-size: 14px;
}

.mobile-menu-contact a {
    color: var(--color-primary);
    display: block;
    margin-top: 10px;
    font-size: 16px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Wrapper prevents overflow during zoom */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: -10%; /* Start higher to allow parallax movement */
    left: 0;
    width: 100%;
    height: 120%; /* Taller than container for parallax */
    /* Using a high-quality luxury real estate image for the effect */
    /*background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=1920&auto=format&fit=crop') center center / cover no-repeat;
    /* Fallback to local image if needed */
    background-image: url('/images/wallpaper/hero-mobile.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

/* Film Grain Texture - Adds organic feel */
.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    /* Güçlendirilmiş overlay - daha iyi okunabilirlik */
    background: linear-gradient(
        to bottom,
        rgba(10, 25, 47, 0.4) 0%,
        rgba(10, 25, 47, 0.5) 30%,
        rgba(10, 25, 47, 0.7) 70%,
        rgba(10, 25, 47, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 0 20px;
    max-width: 1000px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.badge-line {
    width: 60px;
    height: 1px;
    background: var(--color-primary);
}

.hero-title {
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: 90px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -2px;
    line-height: 1.1;
}

.title-line.accent {
    color: var(--color-primary);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-entrance {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-entrance.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-primary);
}

.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 0.8;
}

.scroll-indicator {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    margin: 15px auto 0;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollDown 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollDown {
    0% { 
        opacity: 0;
        top: 6px;
    }
    20% {
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ============================================
   Developer Marquee
   ============================================ */
.developer-marquee-section {
    background: #000;
    padding: 40px 0 30px;
    opacity: 1 !important;
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: block !important;
    visibility: visible !important;
}

.developer-marquee-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.developer-marquee-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
    position: relative;
}

.developer-marquee-track {
    display: flex;
    gap: 1rem;
    animation: marquee 120s linear infinite;
    width: -moz-max-content;
    width: max-content;
}

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

.developer-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.developer-logo-item a {
    display: inline-block;
    transition: all 0.4s ease;
}

.developer-logo-item a:hover {
    transform: translateY(-5px);
}

.developer-logo-item img {
    height: 100px;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) invert(1);
    opacity: 0.4;
    margin: 0;
    display: block;
}

.developer-logo-item img:hover {
    transform: scale(1.08);
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@media (max-width: 575.98px) {
    .developer-logo-item {
        width: calc(100vw / 3);
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .developer-logo-item {
        width: 20vw;
    }
}

@media (min-width: 992px) {
    .developer-logo-item {
        width: calc(100vw / 9);
    }
}

@keyframes marquee {
    0% {
        transform: translate(0);
    }
    to {
        transform: translate(-50%);
    }
}

@keyframes fadeInMarquee {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobil ayar */
@media (max-width: 768px) {
    .developer-marquee-section {
        padding: 30px 0 20px;
    }

    .developer-logo-item img {
        height: 60px;
    }
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    padding: 80px 0 var(--section-padding);
    background: var(--color-dark);
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    z-index: 1;
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.img-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-primary);
    z-index: -1;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.about-img-secondary {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    background: var(--color-primary);
    padding: 30px;
    text-align: center;
    z-index: 3;
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-dark);
}

.about-content {
    padding-left: 40px;
}

.about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-dark);
}

.feature-text h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-white);
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Properties Section
   ============================================ */
.properties-section {
    position: relative;
    padding: var(--section-padding) 0;
    background: var(--color-dark);
    z-index: 2;
    min-height: 500px;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.properties-section .container {
    position: relative;
    z-index: 3;
}

.properties-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(201, 169, 98, 0.1), transparent 70%);
}

.properties-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

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

/* Properties Filter */
.properties-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    min-height: 200px;
}

/* Property Card */
.property-card {
    background: var(--color-gray-dark);
    overflow: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.5s ease;
    opacity: 1;
}

.property-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

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

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

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-medium);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-view {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--color-white);
    padding: 15px 30px;
    transition: var(--transition-fast);
}

.property-view:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
}

.property-content {
    padding: 25px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.property-location svg {
    width: 14px;
    height: 14px;
}

.property-title {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.4;
}

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

.property-features span {
    font-size: 13px;
    color: var(--color-gray);
}

.property-features strong {
    color: var(--color-white);
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-primary);
}

.property-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.property-link svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-white);
    transition: var(--transition-fast);
}

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

.property-link:hover svg {
    stroke: var(--color-dark);
    transform: translateX(3px);
}

.properties-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--color-secondary);
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

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

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

.service-card {
    background: var(--color-gray-dark);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-medium);
}

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

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

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

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.service-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

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

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-secondary);
    position: relative;
    z-index: 2;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-dark);
}

.contact-item-content h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-white);
}

.contact-item-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-primary);
    transition: var(--transition-fast);
}

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

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-gray-dark);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-white);
    outline: none;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--color-primary);
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .input-line,
.form-group select:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
    width: 100%;
}

.contact-form .btn {
    justify-content: center;
    margin-top: 10px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-dark);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 2;
}

.footer-top {
    padding: 80px 0;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    font-size: 36px;
}

.footer-desc {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-gray);
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-newsletter h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--color-gray-dark);
    background: transparent;
    color: var(--color-white);
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--color-gray);
}

.newsletter-form button {
    width: 50px;
    background: var(--color-primary);
    border: none;
    color: var(--color-dark);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--color-primary-light);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid var(--color-gray-dark);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    color: var(--color-gray);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--color-gray);
    font-size: 13px;
}

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

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1200px) {
    .section-title {
        font-size: 46px;
    }
    
    .title-line {
        font-size: 70px;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    body {
        cursor: auto;
    }
    
    .nav-menu,
    .nav-actions .nav-phone {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 26px;
    }
    
    .logo-sub {
        font-size: 8px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-image-bg {
        background-image: url('/images/wallpaper/hero-mobile.jpeg');
    }
    
    .hero-content {
        padding: 0 20px;
        padding-top: 80px;
    }
    
    .title-line {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .hero-badge {
        font-size: 10px;
        gap: 10px;
    }
    
    .badge-line {
        width: 30px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-images {
        max-width: 100%;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 60%;
        margin-top: -80px;
        margin-left: auto;
    }
    
    .about-experience {
        left: 20px;
        padding: 20px;
    }
    
    .exp-number {
        font-size: 36px;
    }
    
    .about-features {
        gap: 20px;
    }
    
    /* Properties Mobile */
    .properties-filter {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .property-image {
        height: 220px;
    }
    
    .property-title {
        font-size: 18px;
    }
    
    .property-price {
        font-size: 18px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Disable custom cursor on mobile */
    body {
        cursor: auto;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-badge {
        font-size: 10px;
        letter-spacing: 2px;
        padding-left: 40px;
    }
    
    .section-badge::before {
        width: 25px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .title-line {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .stat-divider {
        width: 50px;
        height: 1px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 12px;
        letter-spacing: 1px;
    }

    /* Developer Marquee Mobile */
    .developer-marquee-section {
        padding: 30px 0;
    }
    
    .developer-marquee-track {
        gap: 30px;
    }
    
    .developer-logo-item img {
        max-height: 60px;
    }
    
    /* About Mobile Small */
    .about-img-main img {
        height: 350px;
    }
    
    .about-img-secondary img {
        height: 200px;
    }
    
    .img-frame {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    
    .feature-item {
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-text h4 {
        font-size: 14px;
    }
    
    .feature-text p {
        font-size: 12px;
    }
    
    /* Properties Mobile Small */
    .properties-section {
        padding-bottom: 60px;
    }
    
    .property-content {
        padding: 20px;
    }
    
    .property-features {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .property-features span {
        font-size: 12px;
    }
    
    /* Services Mobile Small */
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .author-info span {
        font-size: 11px;
    }
    
    /* Contact Mobile Small */
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    /* Footer Mobile Small */
    .footer-logo .logo-text {
        font-size: 28px;
    }
    
    .footer-desc {
        font-size: 13px;
    }
    
    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .newsletter-form input {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }
    
    .title-line {
        font-size: 30px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-badge {
        font-size: 9px;
        gap: 8px;
    }
    
    .badge-line {
        width: 20px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .hero-stats {
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-suffix {
        font-size: 24px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 24px;
    }
    
    .section-badge {
        font-size: 9px;
        padding-left: 35px;
    }
    
    .section-badge::before {
        width: 20px;
    }
    
    /* About */
    .about-experience {
        padding: 15px;
    }
    
    .exp-number {
        font-size: 28px;
    }
    
    .exp-text {
        font-size: 9px;
    }
    
    .about-text {
        font-size: 14px;
    }
    
    .about-img-main img {
        height: 280px;
    }
    
    .about-img-secondary {
        width: 50%;
        margin-top: -60px;
    }
    
    .about-img-secondary img {
        height: 150px;
    }
    
    /* Properties */
    .property-image {
        height: 200px;
    }
    
    .property-title {
        font-size: 16px;
    }
    
    .property-location span {
        font-size: 11px;
    }
    
    .property-features {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    
    .property-price {
        font-size: 16px;
    }
    
    /* Services */
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card h3 {
        font-size: 16px;
    }
    
    .service-card p {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .service-link {
        font-size: 11px;
    }
    
    /* Contact */
    .contact-text {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 0;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    /* Footer */
    .footer-top {
        padding: 50px 0;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 11px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .title-line {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .property-title {
        font-size: 15px;
    }
    
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .property-card:hover,
    .service-card:hover {
        transform: none;
    }
    
    .property-overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.3);
    }
    
    .property-view {
        opacity: 0;
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .title-line {
        font-size: 28px;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 40px;
    }
    
    .stat-divider {
        width: 1px;
        height: 40px;
    }
}

/* ============================================
   Mobile Call Button Widget
   ============================================ */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    color: var(--color-dark);
}

.mobile-call-btn svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-dark);
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.mobile-call-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-call-btn:active svg {
    transform: scale(0.9);
}


/* Show only on mobile devices */
@media (max-width: 992px) {
    .mobile-call-btn {
        display: flex;
    }
}

/* Adjust position for very small screens */
@media (max-width: 480px) {
    .mobile-call-btn {
        width: 56px;
        height: 56px;
        bottom: 15px;
        left: 15px;
    }
    
    .mobile-call-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Hide on landscape mode for small heights */
@media (max-height: 500px) and (orientation: landscape) {
    .mobile-call-btn {
        bottom: 10px;
        left: 10px;
        width: 50px;
        height: 50px;
    }
    
    .mobile-call-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* ============================================
   Page Header (for inner pages)
   ============================================ */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.7), rgba(13, 13, 13, 0.9));
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.page-title {
    font-size: 56px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.team-section .section-subtitle {
    max-width: 700px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.8;
}

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

.team-card {
    background: var(--color-gray-dark);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    pointer-events: none;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4), var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.5);
}

.team-card:hover::before {
    opacity: 1;
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--color-white);
}

.team-social svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-dark);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--color-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.team-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.team-languages {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.language-label {
    display: block;
    color: var(--color-primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.language-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.language-tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all var(--transition-fast);
}

.language-tag:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--color-primary);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-image {
        height: 300px;
    }
}

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

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--color-gray-dark);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    display: inline;
}

.stat-card .stat-suffix {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-primary);
}

.stat-card .stat-label {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card .stat-number {
        font-size: 42px;
    }
}

/* ============================================
   Values Section
   ============================================ */
.values-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

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

.value-card {
    background: var(--color-gray-dark);
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-medium);
}

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

.value-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-primary);
    transition: var(--transition-medium);
}

.value-card:hover .value-icon svg {
    stroke: var(--color-dark);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-white);
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Story Section
   ============================================ */
.story-section {
    padding: var(--section-padding) 0;
    background: var(--color-secondary);
}

.story-section .container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: flex-start;
    gap: 60px;
}

.story-section .section-header {
    text-align: left;
    margin: 0;
}

.story-content {
    max-width: 760px;
    margin: 0 0 0 auto;
    text-align: left;
}

.story-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.95;
    margin-bottom: 30px;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-signature {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.story-signature img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(212, 175, 55, 0.35));
}

.story-signature .signature-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 992px) {
    .story-section .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-content {
        margin: 0 auto;
        text-align: center;
    }

    .story-signature {
        align-items: center;
    }
}

/* ============================================
   Corporate About (About Page - Corporate)
   ============================================ */
.corporate-overview {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.corporate-overview::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.8;
}

.corporate-overview .section-subtitle {
    max-width: 760px;
    margin: 20px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.corporate-panel {
    background: linear-gradient(145deg, rgba(21, 21, 21, 0.70), rgba(10, 10, 10, 0.90));
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.corporate-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.corporate-panel:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.08);
}

.corporate-panel:hover::before {
    transform: scaleX(1);
}

.corporate-panel h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 14px;
}

.corporate-panel p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 2.0;
    margin-bottom: 18px;
}

.corporate-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.corporate-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.95;
}

.corporate-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.10);
}

.corporate-panel-alt {
    background: linear-gradient(145deg, rgba(21, 21, 21, 0.60), rgba(10, 10, 10, 0.92));
}

.corporate-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 16px 0 14px;
}

.corporate-kpi {
    padding: 18px 18px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    background: rgba(0, 0, 0, 0.15);
}

.kpi-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.kpi-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
}

.corporate-note {
    margin: 8px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

/* Advisory Approach */
.advisory-approach {
    padding: var(--section-padding) 0 calc(var(--section-padding) + 50px);
    background: var(--color-secondary);
    position: relative;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.approach-card {
    position: relative;
    background: linear-gradient(145deg, rgba(21, 21, 21, 0.70), rgba(10, 10, 10, 0.90));
    border: 1px solid rgba(212, 175, 55, 0.12);
    padding: 46px 34px;
    transition: transform 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.approach-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.35);
}

.approach-card:hover::after {
    opacity: 1;
}

.approach-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    transition: border-color 0.35s ease, background 0.35s ease;
}

.approach-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--color-primary);
}

.approach-card:hover .approach-icon {
    border-color: rgba(212, 175, 55, 0.55);
    background: rgba(212, 175, 55, 0.08);
}

.approach-card h3 {
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.approach-card p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.approach-cta {
    text-align: center;
    margin-top: 60px;
}

/* Partners Section (reuses partners-marquee styles) */
.partners-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

.partners-section .partners-marquee {
    margin-top: 60px;
    padding-top: 0;
    border-top: none;
}

/* Responsive - Corporate About */
@media (max-width: 1200px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .corporate-panel {
        padding: 38px 30px;
    }

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

@media (max-width: 576px) {
    .corporate-kpis {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
}

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

.cta-content h2 {
    font-size: 42px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(13, 13, 13, 0.8);
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background: var(--color-dark);
    color: var(--color-white);
}

.cta-section .btn-primary:hover {
    background: var(--color-secondary);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* ============================================
   Additional Services Section
   ============================================ */
.additional-services-section {
    padding: var(--section-padding) 0;
    background: var(--color-secondary);
}

.services-list {
    margin-top: 60px;
}

.service-list-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: var(--color-gray-dark);
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-medium);
}

.service-list-item:hover {
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.service-list-item:last-child {
    margin-bottom: 0;
}

.service-list-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1), rgba(201, 169, 98, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

.service-list-content h3 {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 15px;
}

.service-list-content p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .service-list-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .service-list-item:hover {
        transform: translateY(-5px);
    }
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    background: var(--color-dark);
}

.map-container {
    width: 100%;
    height: 450px;
    filter: none;
    transition: filter 0.3s ease;
}

.map-container:hover {
    filter: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Why Invest in Dubai Section (Bento Grid)
   ============================================ */
.invest-dubai-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.invest-dubai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.invest-dubai-section .section-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.invest-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    margin-top: 60px;
}

.invest-card {
    position: relative;
    background: linear-gradient(145deg, rgba(21, 21, 21, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 40px 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.invest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.invest-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1);
}

.invest-card-large {
    grid-column: span 1;
    grid-row: span 2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.invest-card-large .invest-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.invest-card-large .invest-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

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

.invest-card-decoration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    opacity: 0.5;
}

.invest-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.invest-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-primary);
    transition: transform 0.3s ease;
}

.invest-card:hover .invest-card-icon svg {
    transform: scale(1.1);
}

.invest-card-content {
    position: relative;
    z-index: 1;
}

.invest-card-highlight {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.invest-card-large .invest-card-highlight {
    font-size: 72px;
}

.invest-card-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.invest-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* ============================================
   Journey Section (Timeline)
   ============================================ */
.journey-section {
    padding: var(--section-padding) 0;
    background: var(--color-secondary);
    position: relative;
}

.journey-section .section-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.journey-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-top: 80px;
    padding: 0 20px;
}

.journey-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-primary), transparent);
    opacity: 0.3;
}

.journey-step {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.journey-step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-secondary);
    padding: 5px 15px;
    letter-spacing: 2px;
}

.journey-step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(145deg, var(--color-gray-dark), rgba(21, 21, 21, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.journey-step-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.journey-step:hover .journey-step-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.journey-step-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-primary);
    transition: stroke 0.3s ease;
}

.journey-step:hover .journey-step-icon svg {
    stroke: var(--color-dark);
}

.journey-step-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.journey-step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

.journey-cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   Enhanced Stats Section
   ============================================ */
.stats-enhanced {
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-dark) 100%);
    padding: var(--section-padding) 0;
}

.stats-enhanced .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card-enhanced {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(145deg, rgba(21, 21, 21, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-enhanced:hover::before {
    opacity: 1;
}

.stat-card-enhanced:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon-ring {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-card-enhanced:hover .stat-icon-ring {
    border-color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
}

.stat-icon-ring svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-primary);
}

.stat-card-enhanced .stat-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-card-enhanced .stat-suffix {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary);
}

.stat-card-enhanced .stat-label {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Awards Section
   ============================================ */
.awards-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

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

.award-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.award-card:hover::before {
    opacity: 1;
}

.award-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.award-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-primary);
    fill: none;
}

.award-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 8px;
}

.award-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Partners Marquee */
.partners-marquee {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.partners-title {
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
}

.partners-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

/* ============================================
   Lifestyle Parallax Section
   ============================================ */
.lifestyle-parallax {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lifestyle-parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 0;
}

.lifestyle-parallax-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lifestyle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 1;
}

.lifestyle-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.lifestyle-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-primary);
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 12px 30px;
    margin-bottom: 30px;
}

.lifestyle-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--color-white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.lifestyle-title .accent {
    color: var(--color-primary);
    font-style: italic;
}

.lifestyle-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.lifestyle-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.lifestyle-stat {
    text-align: center;
}

.lifestyle-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.lifestyle-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--color-secondary);
}

.faq-section .section-subtitle {
    max-width: 600px;
    margin: 20px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.faq-grid {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(21, 21, 21, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-white);
    padding-right: 20px;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question span,
.faq-item.active .faq-question span {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ============================================
   CTA Section (Enhanced)
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.cta-content h2 {
    font-size: 48px;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(13, 13, 13, 0.8);
    margin-bottom: 40px;
}

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

.cta-section .btn-primary {
    background: var(--color-dark);
    color: var(--color-white);
}

.cta-section .btn-primary:hover {
    background: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.cta-section .btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* ============================================
   Responsive - New Sections
   ============================================ */
@media (max-width: 1200px) {
    .invest-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .invest-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .invest-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .invest-card-large {
        grid-column: span 1;
    }
    
    .invest-card-large .invest-card-highlight {
        font-size: 56px;
    }
    
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    
    .journey-line {
        display: none;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lifestyle-title {
        font-size: 42px;
    }
    
    .lifestyle-stats {
        gap: 40px;
    }
    
    .lifestyle-stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .invest-card {
        padding: 30px 25px;
    }
    
    .invest-card-highlight {
        font-size: 36px;
    }
    
    .invest-card-large .invest-card-highlight {
        font-size: 48px;
    }
    
    .invest-card-content h3 {
        font-size: 18px;
    }
    
    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-step-icon {
        width: 80px;
        height: 80px;
    }
    
    .journey-step-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .stat-card-enhanced {
        padding: 30px 15px;
    }
    
    .stat-card-enhanced .stat-number {
        font-size: 32px;
    }
    
    .stat-card-enhanced .stat-suffix {
        font-size: 20px;
    }
    
    .stat-icon-ring {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .stat-icon-ring svg {
        width: 22px;
        height: 22px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .award-card {
        padding: 40px 25px;
    }
    
    .award-icon {
        width: 60px;
        height: 60px;
    }
    
    .partners-track {
        gap: 30px;
    }
    
    .partner-logo img {
        height: 40px;
    }
    
    .lifestyle-parallax {
        min-height: 600px;
    }
    
    .lifestyle-content {
        padding: 0 20px;
    }
    
    .lifestyle-title {
        font-size: 32px;
    }
    
    .lifestyle-text {
        font-size: 16px;
    }
    
    .lifestyle-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .lifestyle-stat-number {
        font-size: 32px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question span {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .invest-card-highlight {
        font-size: 32px;
    }
    
    .invest-card-large .invest-card-highlight {
        font-size: 40px;
    }
    
    .invest-card-icon {
        width: 50px;
        height: 50px;
    }
    
    .journey-step-content h3 {
        font-size: 18px;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-badge {
        font-size: 10px;
        padding: 10px 20px;
    }
    
    .lifestyle-title {
        font-size: 28px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   Latest Projects Section - New Design
   ============================================ */

.latest-projects-section {
    padding: 100px 0;
    background: var(--color-dark);
    position: relative;
}

.latest-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* All Projects Section */
.all-projects-section {
    padding: 100px 0;
    background: var(--color-dark);
    min-height: 100vh;
}

.all-projects-section .section-desc {
    text-align: center;
    color: var(--color-gray);
    font-size: 16px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.projects-grid-all {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Project Card New Design */
.project-card-new {
    background: rgba(21, 21, 21, 0.6);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.project-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.project-card-new:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.project-card-new:hover::before {
    opacity: 1;
}

/* Project Card Image */
.project-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--color-gray-dark);
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-image .featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    border-radius: 3px;
}

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

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-new:hover .project-card-overlay {
    opacity: 1;
}

.view-project-btn {
    background: var(--color-primary);
    color: var(--color-dark);
    padding: 12px 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-project-btn:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* Project Card Content */
.project-card-content {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.project-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.project-card-type {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* Project Details */
.project-card-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray);
    font-size: 13px;
}

.detail-item svg {
    stroke: var(--color-primary);
    flex-shrink: 0;
}

.detail-item span {
    color: var(--color-white);
    font-weight: 500;
}

/* Project Footer */
.project-card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.project-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 11px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray);
    font-size: 13px;
}

.project-location svg {
    stroke: var(--color-gray);
    flex-shrink: 0;
}

.project-location span {
    line-height: 1.4;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .latest-projects-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .latest-projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .projects-grid-all {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .latest-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .projects-grid-all {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-projects-section,
    .all-projects-section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .latest-projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-grid-all {
        grid-template-columns: 1fr;
    }
    
    .project-card-image {
        height: 240px;
    }
    
    .project-card-title {
        font-size: 20px;
    }
    
    .price-value {
        font-size: 22px;
    }
    
    .latest-projects-section,
    .all-projects-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .project-card-content {
        padding: 20px;
    }
    
    .project-card-details {
        flex-direction: column;
        gap: 12px;
    }
    
    .project-card-image {
        height: 220px;
    }
    
    .price-value {
        font-size: 20px;
    }
}
