/* ========================================
   LUXORA REAL ESTATE - ULTRA MODERN DESIGN
   ======================================== */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Premium Palette */
    --color-purple-500: #9F7AEA;
    --color-purple-600: #805AD5;
    --color-purple-50: #F0E7FF;
    --color-pink-500: #FB7185;
    --color-pink-600: #F43F5E;
    --color-pink-50: #FFE7EE;
    --color-blue-500: #60A5FA;
    --color-blue-600: #3B82F6;
    --color-blue-50: #E0F2FE;
    --color-gray-900: #1F2937;
    --color-gray-800: #374151;
    --color-gray-700: #4B5563;
    --color-gray-600: #6B7280;
    --color-gray-500: #9CA3AF;
    --color-gray-400: #D1D5DB;
    --color-gray-300: #E5E7EB;
    --color-gray-200: #E2E8F0;
    --color-gray-100: #F8FAFC;
    --color-white: #FFFFFF;
    --color-green-500: #10B981;
    --color-amber-500: #F59E0B;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #9F7AEA 0%, #FB7185 100%);
    --gradient-secondary: linear-gradient(135deg, #60A5FA 0%, #9F7AEA 100%);
    --gradient-hero: linear-gradient(135deg, rgba(159, 122, 234, 0.1) 0%, rgba(251, 113, 133, 0.1) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;

    /* Transitions */
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 16px 0;
}

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

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

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

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

.nav-link {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color var(--transition-base);
}

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

.nav-link:hover {
    color: var(--color-purple-600);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--color-gray-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(159, 122, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(159, 122, 234, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--color-white);
    color: var(--color-gray-800);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid var(--color-gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--color-purple-500);
    color: var(--color-purple-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(159, 122, 234, 0.1);
    color: var(--color-purple-600);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 40px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-image {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

.floating-card {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: transform var(--transition-slow);
}

.floating-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-1 {
    width: 400px;
    height: 500px;
    top: 0;
    right: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.card-2 {
    width: 280px;
    height: 320px;
    bottom: 20px;
    left: 0;
    animation: floatCard 8s ease-in-out infinite reverse;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating-card:hover {
    transform: scale(1.05) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease-out 1s backwards;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-gray-400);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-gray-400);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

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

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

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

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

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

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ========== STATS SECTION ========== */
.stats {
    padding: 100px 0;
    background: var(--color-white);
}

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

.stat-item {
    text-align: center;
    transition: transform var(--transition-base);
}

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

.stat-icon {
    margin-bottom: 16px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-gray-900);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--color-gray-600);
    font-weight: 500;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(159, 122, 234, 0.1);
    color: var(--color-purple-600);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* ========== WHY US SECTION ========== */
.why-us {
    padding: 120px 0;
    background: var(--color-gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.feature-icon {
    margin-bottom: 24px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

/* ========== PROPERTIES SECTION ========== */
.properties {
    padding: 120px 0;
    background: var(--color-white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.property-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

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

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

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

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-badge.new {
    background: var(--gradient-secondary);
}

.property-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-gray-400);
}

.property-favorite:hover {
    background: var(--color-white);
    color: var(--color-pink-500);
    transform: scale(1.1);
}

.property-content {
    padding: 28px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.property-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 4px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--color-gray-500);
}

.property-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-purple-600);
    white-space: nowrap;
}

.property-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-bottom: 20px;
}

.property-features {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-700);
}

.property-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-purple-600);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition-base);
}

.property-cta:hover {
    gap: 12px;
    color: var(--color-purple-700);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 120px 0;
    background: var(--color-gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 36px;
    border-radius: 20px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-gray-900);
}

.author-title {
    font-size: 14px;
    color: var(--color-gray-600);
}

/* ========== PROCESS SECTION ========== */
.process {
    padding: 120px 0;
    background: var(--color-white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-purple-500), var(--color-pink-500));
}

.process-step {
    position: relative;
    padding: 40px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.step-number {
    position: absolute;
    left: 0;
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border: 3px solid var(--color-purple-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-purple-600);
    z-index: 2;
}

.step-content {
    margin-left: 100px;
}

.step-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base);
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.gradient-bg-1 {
    background: linear-gradient(135deg, #9F7AEA 0%, #FB7185 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #FB7185 0%, #60A5FA 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #60A5FA 0%, #9F7AEA 100%);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #FB7185 0%, #9F7AEA 100%);
}

.gradient-bg-5 {
    background: linear-gradient(135deg, #10B981 0%, #60A5FA 100%);
}

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

/* ========== CTA SECTION ========== */
.cta {
    position: relative;
    padding: 120px 0;
    background: var(--color-gray-900);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

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

.cta-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
}

.btn-cta {
    box-shadow: 0 8px 24px rgba(159, 122, 234, 0.5);
}

.cta-note {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--color-gray-500);
    margin-bottom: 24px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-purple-600);
    color: var(--color-white);
    transform: translateY(-4px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 15px;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--color-purple-500);
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-gray-500);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-purple-500);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-image {
        height: 500px;
    }

    .card-1 {
        width: 350px;
        height: 450px;
    }

    .card-2 {
        width: 250px;
        height: 280px;
    }

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

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

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

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

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

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        align-items: flex-start;
        box-shadow: var(--shadow-2xl);
        transition: left var(--transition-base);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav-content > .btn-primary {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-large {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        height: 400px;
    }

    .card-1 {
        width: 280px;
        height: 360px;
    }

    .card-2 {
        width: 200px;
        height: 240px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

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

    .process-timeline::before {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-number {
        position: static;
        margin-bottom: 16px;
    }

    .step-content {
        margin-left: 0;
    }

    .step-icon {
        display: none;
    }

    .cta-title {
        font-size: 38px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 40px;
    }

    .property-features {
        flex-direction: column;
        gap: 12px;
    }
}

/* ========== PERFORMANCE & ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--color-purple-500);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .scroll-indicator,
    .footer {
        display: none;
    }
}
