/* Font Imports - Jeelna Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@300;400;500;600;700;800&family=Cairo:wght@400;600;700&display=swap');


html {
    scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0F0F12; /* base canvas */
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

/* Site-wide subtle grid background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        /* soft vignette */
        radial-gradient(1200px 800px at 70% -10%, rgba(139, 92, 246, 0.08), transparent 60%),
        radial-gradient(1000px 700px at 20% 120%, rgba(255, 107, 157, 0.05), transparent 60%),
        /* grid */
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px) 0 0 / 28px 28px;
}

/* Ensure app content sits above background overlay */
.navbar, .nav-container, main, .mobile-menu, .mobile-overlay { position: relative; z-index: 1; }

/* Category Navigation Section */
.category-nav-section {
    width: 100%;
    padding: 10px 40px;
    background: transparent;
    position: relative;
    z-index: 100;
    margin-top: 70px;
}

.category-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 0;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
}

/* Navigation Arrows */
.nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #8B5CF6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    flex-shrink: 0;
}

.nav-arrow:hover {
    background: #7C3AED;
    transform: scale(1.1);
}

.nav-arrow:active {
    transform: scale(0.95);
}

/* Category Filters */
.category-filters {
    display: flex;
    gap: 32px;
    flex: 1;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 8px;
    min-width: 70px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.category-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.category-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B5CF6;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    color: #b74fff;
    transform: scale(1.1);
}

.category-text {
    font-size: 12px;
    font-weight: 500;
    color: #8B5CF6;
    text-align: center;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.category-item:hover .category-text {
    color: #b74fff;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #8B5CF6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.filter-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

/* Hero Section - EXACT Jeelan Structure */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    height: auto;
    padding: 40px 40px 60px;
    position: relative;
    gap: 20px;
    overflow: visible;
}

/* Left Side Content */
.hero-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    margin-right: 0;
}

/* Top Navigation Text */
.top-nav-text {
    display: flex;
    flex-direction: row;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    width: 100%;
}

.nav-item {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-item:hover {
    color: #8B5CF6;
}

/* Hero Subline */
.hero-subline {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    margin-bottom: 0;
}

/* Search Container */
.search-container {
    width: 100%;
    max-width: 500px;
    margin-top: 0;
}

.search-bar {
    display: flex;
    background: rgba(18, 17, 24, 0.8);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: #fff;
    font-size: 16px;
    outline: none;
    font-family: 'Space Grotesk', sans-serif;
}

.search-input::placeholder {
    color: #888;
}

.search-button {
    background: #8B5CF6;
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 4px;
}

.search-button:hover {
    background: #7C3AED;
    transform: scale(1.05);
}

.search-icon {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 2px;
    position: relative;
}

.search-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border: 2px solid #8B5CF6;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Bottom Text - Right Side */
.hero-bottom-text {
    text-align: center;
    z-index: 10;
    margin-top: -100px;
    width: 100%;
}

.search-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.search-subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

/* Animated Lines and Dots */
.accent-line {
    position: absolute;
    height: 2px;
    border-radius: 1px;
    animation: lineGlow 2s ease-in-out infinite, accentFloat 8s ease-in-out infinite;
}

.accent-line.top-left {
    width: 60px;
    top: 140px;
    left: 60px;
    background: linear-gradient(90deg, #b74fff, transparent);
}

.accent-line.top-left-2 {
    width: 40px;
    top: 160px;
    left: 40px;
    background: linear-gradient(90deg, #8B5CF6, transparent);
    animation-delay: 1s;
}

.accent-line.bottom-left {
    width: 80px;
    bottom: 120px;
    left: 40px;
    background: linear-gradient(90deg, #ff3db8, transparent);
    animation-delay: 0.5s;
}

.accent-line.top-right {
    width: 60px;
    top: 140px;
    right: 60px;
    background: linear-gradient(-90deg, #b74fff, transparent);
}

.accent-line.top-right-2 {
    width: 40px;
    top: 160px;
    right: 40px;
    background: linear-gradient(-90deg, #8B5CF6, transparent);
    animation-delay: 1s;
}

.accent-line.bottom-right {
    width: 80px;
    bottom: 120px;
    right: 40px;
    background: linear-gradient(-90deg, #ff3db8, transparent);
    animation-delay: 0.5s;
}

.accent-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite, accentDotFloat 14s ease-in-out infinite;
}

.accent-dot.top-left {
    top: 200px;
    left: 80px;
    background: #b74fff;
    box-shadow: 0 0 20px #b74fff;
}

.accent-dot.bottom-left {
    bottom: 80px;
    left: 60px;
    background: #b74fff;
    box-shadow: 0 0 20px #b74fff;
    animation-delay: 1s;
}

.accent-dot.top-right {
    top: 200px;
    right: 80px;
    background: #b74fff;
    box-shadow: 0 0 20px #b74fff;
}

.accent-dot.bottom-right {
    bottom: 80px;
    right: 60px;
    background: #b74fff;
    box-shadow: 0 0 20px #b74fff;
    animation-delay: 1s;
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.3);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes dotPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow: 0 0 15px currentColor;
    }
    50% {
        opacity: 1;
        transform: scale(1.6);
        box-shadow: 0 0 25px currentColor, 0 0 35px currentColor;
    }
}

/* Global gentle drift for all accent lines and dots */
@keyframes accentFloat {
    0%   { transform: translate(0, 0); opacity: 0.7; }
    25%  { transform: translate(5px, -3px); opacity: 0.9; }
    50%  { transform: translate(3px, 4px); opacity: 0.8; }
    75%  { transform: translate(-4px, 2px); opacity: 0.9; }
    100% { transform: translate(0, 0); opacity: 0.7; }
}

@keyframes accentDotFloat {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
    25%  { transform: translate(10px, -6px) scale(1.1); opacity: 1; }
    50%  { transform: translate(6px, 10px) scale(1.15); opacity: 0.95; }
    75%  { transform: translate(-8px, 4px) scale(1.05); opacity: 1; }
    100% { transform: translate(0, 0) scale(1); opacity: 0.9; }
}

/* Hero Content - Desktop wrapper for positioning */
.hero-content {
    max-width: 600px;
    z-index: 10;
    text-align: center;
    flex: 0 1 auto;
    margin-right: 40px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-align: justify;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #b74fff;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: justify;
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.hero-link {
    color: #8B5CF6;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 50px;
    display: block;
    transition: color 0.3s ease;
    text-align: justify;
    text-align: center;
}

.hero-link:hover {
    color: #b74fff;
}

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

.btn-hero {
    padding: 18px 35px;
    border: none;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-buy {
    background: linear-gradient(45deg, #b74fff, #ff3db8);
    color: white;
}

.btn-sell {
    background: linear-gradient(45deg, #7C3AED, #8B5CF6);
    color: white;
}

.btn-auction {
    background: transparent;
    color: white;
    border: 2px solid #fff;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Right Side - Video and Text */
.hero-visual {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-top: -200px;
}

.video-container {
    position: relative;
    width: 800px;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(183, 79, 255, 0.05) 0%, transparent 70%);
    border-radius: 30px;
    padding: 30px;
    margin: 20px;
}

.hero-video {
    width: 740px;
    height: 740px;
    border-radius: 20px;
    object-fit: cover;
    background: transparent;
    box-shadow: none;
    filter: none;
    mix-blend-mode: screen;
}


/* Bottom accent line */
.bottom-accent {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b74fff, #8B5CF6, transparent);
    transform: translateX(-50%);
    animation: bottomGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes bottomGlow {
    0%, 100% {
        opacity: 0.8;
        transform: translateX(-50%) scaleX(0.9);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1.3);
    }
}

/* Desktop: arrange content in wrapper */
@media (min-width: 769px) {
    .hero {
        gap: 40px;
        flex-direction: column;
    }
    
    .hero-title, .hero-subtitle, .hero-description, .hero-link, .hero-buttons {
        order: unset;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .category-nav-section {
        padding: 8px 20px;
        margin-top: 70px;
    }

    .category-nav-container {
        flex-direction: row;
        gap: 12px;
        padding: 8px 0;
        align-items: center;
    }

    .category-filters {
        gap: 16px;
        justify-content: flex-start;
        padding: 0;
        flex: 1;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        min-width: 60px;
        flex-shrink: 0;
    }

    .category-text {
        font-size: 10px;
    }

    .action-buttons {
        flex-direction: row;
        gap: 8px;
        flex-shrink: 0;
    }

    .filter-btn {
        font-size: 11px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    .hero {
        flex-direction: column;
        min-height: 100vh;
        height: auto;
        padding: 10px 10px 20px;
        text-align: center;
        gap: 10px;
        justify-content: flex-start;
        box-sizing: border-box;
        display: flex;
        overflow: visible;
    }

    .hero-top-content {
        width: 100%;
        max-width: 100%;
        align-items: center;
        margin-right: 0;
        gap: 12px;
    }

    .top-nav-text {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        flex-direction: row;
        padding-top: 10px;
    }

    .hero-subline {
        text-align: center;
        font-size: 1.4rem;
    }

    .hero-visual {
        margin-top: -20px;
        width: calc(100% + 20px);
        margin-left: -10px;
        margin-right: -10px;
    }

    .hero-bottom-text {
        text-align: center;
        margin-top: -40px;
    }

    .nav-item {
        font-size: 0.9rem;
    }

    .search-container {
        max-width: 100%;
    }

    .search-input {
        font-size: 14px;
        padding: 12px 16px;
    }

    .search-button {
        width: 40px;
        height: 40px;
    }

    .search-icon {
        width: 16px;
        height: 16px;
    }

    .search-title {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .search-subtitle {
        font-size: 1.2rem;
    }

    .hero-content {
        display: contents;
    }

    .hero-title {
        font-size: 2.3rem;
        margin-bottom: 8px;
        line-height: 1.1;
        text-align: center;
        order: 1;
        margin-left: 20px;
        margin-right: 20px;
        color: #FFFFFF;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 10px;
        text-align: center;
        order: 2;
        margin-left: 40px;
        margin-right: 40px;
        color: #b74fff;
        font-weight: 600;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
        max-width: 100%;
        line-height: 1.4;
        text-align: justify;
        order: 4;
        margin-left: 25px;
        margin-right: 25px;
    }

    .hero-link {
        font-size: 0.8rem;
        margin-bottom: 15px;
        text-align: center;
        order: 5;
        margin-left: 20px;
        margin-right: 20px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: nowrap;
        margin-bottom: 0;
        width: 100%;
        order: 6;
        margin-left: 20px;
        margin-right: 20px;
    }

    .btn-hero {
        min-width: 80px;
        padding: 12px 18px;
        font-size: 13px;
        flex: 1;
        max-width: 120px;
    }

    .video-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        mix-blend-mode: screen;
    }

    .accent-line {
        display: none;
    }

    .accent-dot {
        display: none;
    }

    .bottom-accent {
        bottom: 15px;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .category-nav-section {
        padding: 6px 15px;
        margin-top: 70px;
    }

    .category-nav-container {
        padding: 6px 0;
        gap: 8px;
        flex-direction: row;
        align-items: center;
    }

    .nav-arrow {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .category-filters {
        gap: 12px;
        flex: 1;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        min-width: 50px;
        padding: 4px 6px;
        flex-shrink: 0;
    }

    .category-icon {
        width: 20px;
        height: 20px;
    }

    .category-text {
        font-size: 9px;
    }

    .action-buttons {
        gap: 6px;
        flex-shrink: 0;
        flex-direction: row;
    }

    .filter-btn {
        padding: 5px 10px;
        font-size: 10px;
        white-space: nowrap;
    }

    .hero {
        padding: 20px 12px 12px;
        gap: 20px;
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: visible;
    }

    .hero-top-content {
        gap: 20px;
        margin-bottom: 10px;
        width: 100%;
        max-width: 100%;
    }

    .top-nav-text {
        gap: 6px;
        margin-bottom: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 10px;
        width: 100%;
    }

    .nav-item {
        font-size: 0.75rem;
        padding: 2px 4px;
    }

    .hero-subline {
        font-size: 1.2rem;
        text-align: center;
        margin: 0 8px;
        line-height: 1.3;
    }

    .search-container {
        width: 100%;
        max-width: 100%;
        margin: 0 8px;
    }

    .search-input {
        font-size: 14px;
        padding: 12px 14px;
    }

    .search-button {
        width: 40px;
        height: 40px;
    }

    .search-icon {
        width: 16px;
        height: 16px;
    }

    .search-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .search-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        display: contents;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
        line-height: 1.2;
        text-align: center;
        order: 1;
        margin-left: 8px;
        margin-right: 8px;
        color: #FFFFFF;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
        text-align: center;
        order: 2;
        margin-left: 8px;
        margin-right: 8px;
        color: #b74fff;
        font-weight: 600;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.4;
        text-align: center;
        order: 4;
        margin-left: 8px;
        margin-right: 8px;
    }

    .hero-link {
        font-size: 0.8rem;
        margin-bottom: 8px;
        text-align: center;
        order: 5;
        margin-left: 8px;
        margin-right: 8px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 0;
        width: 100%;
        order: 6;
        margin-left: 8px;
        margin-right: 8px;
    }

    .btn-hero {
        min-width: 80px;
        padding: 12px 18px;
        font-size: 12px;
        flex: 1;
        max-width: 110px;
    }

    .video-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
        padding: 0;
    }

    .hero-visual {
        margin-top: -10px;
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-right: -12px;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        mix-blend-mode: screen;
    }

    .hero-bottom-text {
        margin-top: -20px;
        text-align: center;
    }

    .bottom-accent {
        bottom: 8px;
        width: 180px;
    }
}

@media (max-width: 360px) {
    .category-nav-section {
        padding: 5px 12px;
        margin-top: 70px;
    }

    .category-nav-container {
        padding: 5px 0;
        gap: 6px;
        flex-direction: row;
        align-items: center;
    }

    .nav-arrow {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .category-filters {
        gap: 10px;
        flex: 1;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-filters::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        min-width: 45px;
        padding: 3px 5px;
        flex-shrink: 0;
    }

    .category-icon {
        width: 18px;
        height: 18px;
    }

    .category-text {
        font-size: 8px;
    }

    .action-buttons {
        gap: 4px;
        flex-shrink: 0;
        flex-direction: row;
    }

    .filter-btn {
        padding: 4px 8px;
        font-size: 9px;
        white-space: nowrap;
    }

    .hero {
        padding: 20px 8px 8px;
        gap: 16px;
    }

    .hero-top-content {
        gap: 16px;
        margin-bottom: 8px;
    }

    .top-nav-text {
        gap: 4px;
        padding-top: 8px;
    }

    .nav-item {
        font-size: 0.7rem;
        padding: 1px 3px;
    }

    .hero-subline {
        font-size: 1rem;
        margin: 0 4px;
        line-height: 1.2;
    }

    .search-container {
        margin: 0 4px;
    }

    .search-input {
        font-size: 13px;
        padding: 10px 12px;
    }

    .search-button {
        width: 36px;
        height: 36px;
    }

    .search-icon {
        width: 14px;
        height: 14px;
    }

    .search-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .search-subtitle {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 10px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 6px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .hero-link {
        font-size: 0.75rem;
        margin-bottom: 6px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .hero-buttons {
        gap: 6px;
        margin-left: 4px;
        margin-right: 4px;
    }

    .btn-hero {
        min-width: 70px;
        padding: 10px 16px;
        font-size: 11px;
        max-width: 100px;
    }

    .video-container {
        max-width: 280px;
        height: 280px;
        margin: 8px auto;
    }

    .hero-visual {
        margin-top: -15px;
    }

    .hero-video {
        max-width: 280px;
        max-height: 280px;
        margin-bottom: 8px;
    }

    .hero-bottom-text {
        margin-top: -25px;
    }

    .bottom-accent {
        bottom: 6px;
        width: 140px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #121118;
    z-index: 1000;
    height: 70px;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}


.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    position: relative;
    gap: 2rem;
}

/* Brand Logo (Left) */
/* Brand Logo & Animations */
.nav-logo {
    display: flex;
    align-items: center;
    justify-self: start;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.nav-logo-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.logo-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 48px !important;
    width: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: 
        drop-shadow(0 0 15px rgba(139, 92, 246, 0.5))
        drop-shadow(0 0 30px rgba(59, 130, 246, 0.3));
    animation: logoLevitate 4s ease-in-out infinite;
}

.nav-logo-link:hover .logo-image {
    transform: scale(1.18) rotate(-4deg);
    filter: 
        drop-shadow(0 0 25px rgba(139, 92, 246, 0.8))
        drop-shadow(0 0 45px rgba(59, 130, 246, 0.6))
        drop-shadow(0 0 65px rgba(255, 107, 53, 0.4));
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-text {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFFFFF 20%, #b74fff 55%, #8B5CF6 80%, #6D28D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: logoTextShimmer 6s ease-in-out infinite;
    transition: all 0.4s ease;
}

.footer-col .logo-text {
    font-size: 2.2rem;
}

.footer-col .logo-image {
    height: 56px !important;
}

.nav-logo-link:hover .logo-text {
    letter-spacing: 3px;
    background-position: 100% 50%;
}

.logo-sparkle {
    display: inline-block;
    font-size: 1.3rem;
    color: #b74fff;
    filter: drop-shadow(0 0 8px rgba(183, 79, 255, 0.8));
    animation: logoHeartbeat 2.5s ease-in-out infinite;
}

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

@keyframes logoTextShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes logoHeartbeat {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; filter: drop-shadow(0 0 6px #8B5CF6); }
    30% { transform: scale(1.35) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 15px #b74fff); color: #b74fff; }
    45% { transform: scale(1.1) rotate(5deg); opacity: 0.9; filter: drop-shadow(0 0 10px #b74fff); color: #b74fff; }
    60% { transform: scale(1.35) rotate(15deg); opacity: 1; filter: drop-shadow(0 0 15px #7C3AED); color: #7C3AED; }
}

/* Navigation Links (Center) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 80px;
    margin: 0;
    padding: 0;
    justify-self: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 12px 16px;
    position: relative;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #8B5CF6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B5CF6;
    transition: width 0.3s ease;
}

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

/* Login/Signup Buttons (Right) */
.nav-auth {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-self: end;
}

.btn-login {
    background: linear-gradient(90deg, #ff6b9d, #8B5CF6);
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.btn-login:hover {
    background: linear-gradient(90deg, #ff5582, #7C3AED);
    transform: translateY(-1px);
}

.btn-signup {
    background: #8B5CF6;
    color: #fff;
    border: none;
    padding: 0.65rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.btn-signup:hover {
    background: #7C3AED;
    transform: translateY(-1px);
}

/* Mobile Hamburger */
/* ─── Premium Hamburger Button ─────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 1100;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.3);
}

.bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.3s ease,
                width 0.3s ease;
    transform-origin: center;
}

/* Top bar becomes shorter before rotating */
.hamburger.active {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #a78bfa;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #a78bfa;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 3rem;
    }
    
    .nav-link {
        padding: 10px 14px;
    }
    
    .logo-image {
        height: 45px;
        max-width: 220px;
        filter: 
            drop-shadow(0 0 12px rgba(139, 92, 246, 0.4))
            drop-shadow(0 0 24px rgba(139, 92, 246, 0.2))
            drop-shadow(0 0 36px rgba(139, 92, 246, 0.1));
        animation: logoGlow 4s ease-in-out infinite;
        border-radius: 6px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto;
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .nav-menu { display: none; }
    
    .nav-auth {
        display: none !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        height: 34px !important;
        max-width: 160px;
    }
    
    .logo-text {
        font-size: 1.25rem !important;
    }
    
    .logo-sparkle {
        font-size: 0.95rem !important;
    }
}
/* ─── Premium Mobile Slide-In Drawer ──────────────── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(10, 10, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.03);
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
    pointer-events: auto;
}

/* Glowing top accent line */
.mobile-menu::before {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B5CF6, #b74fff, transparent);
    flex-shrink: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-header .mobile-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.mobile-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    color: #fff;
}

/* Nav links */
.mobile-links {
    list-style: none;
    margin: 0;
    padding: 16px 0;
    flex: 1;
}

.mobile-links li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Staggered entrance when open */
.mobile-menu.open .mobile-links li:nth-child(1) { opacity:1; transform:translateX(0); transition-delay:0.05s; }
.mobile-menu.open .mobile-links li:nth-child(2) { opacity:1; transform:translateX(0); transition-delay:0.10s; }
.mobile-menu.open .mobile-links li:nth-child(3) { opacity:1; transform:translateX(0); transition-delay:0.15s; }
.mobile-menu.open .mobile-links li:nth-child(4) { opacity:1; transform:translateX(0); transition-delay:0.20s; }
.mobile-menu.open .mobile-links li:nth-child(5) { opacity:1; transform:translateX(0); transition-delay:0.25s; }

.mobile-links .nav-link {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border-radius: 0;
    transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.mobile-links .nav-link::before {
    content: '';
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #8B5CF6, #b74fff);
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: height 0.25s ease;
}

.mobile-links .nav-link:hover,
.mobile-links .nav-link.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.08);
    padding-left: 32px;
}

.mobile-links .nav-link:hover::before,
.mobile-links .nav-link.active::before {
    height: 60%;
}

/* Auth buttons at bottom */
.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mobile-auth .btn-login {
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

.mobile-auth .btn-login:hover {
    background: rgba(255,255,255,0.1) !important;
}

.mobile-auth .btn-signup {
    padding: 12px 20px;
    border-radius: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    background: linear-gradient(135deg, #8B5CF6, #7c3aed) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
}

.mobile-auth .btn-signup:hover {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
}

/* Overlay — blurred backdrop */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1040;
}

.mobile-overlay.open { opacity: 1; pointer-events: auto; }

@media (min-width: 769px) {
    .mobile-menu { display: none; }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-image {
        height: 38px;
        max-width: 180px;
        filter: 
            drop-shadow(0 0 10px rgba(139, 92, 246, 0.4))
            drop-shadow(0 0 20px rgba(139, 92, 246, 0.2))
            drop-shadow(0 0 30px rgba(139, 92, 246, 0.1));
        animation: logoGlow 4s ease-in-out infinite;
        border-radius: 5px;
    }
    
    .btn-login,
    .btn-signup {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        height: 36px;
        min-width: 70px;
    }
    
    .nav-auth {
        gap: 0.5rem;
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 160px;
        filter: 
            drop-shadow(0 0 8px rgba(139, 92, 246, 0.4))
            drop-shadow(0 0 16px rgba(139, 92, 246, 0.2))
            drop-shadow(0 0 24px rgba(139, 92, 246, 0.1));
        animation: logoGlow 4s ease-in-out infinite;
        border-radius: 4px;
    }
    
    .hamburger {
        right: 12px;
        padding: 6px;
    }
    
    .bar {
        width: 22px;
        height: 2px;
    }
}

/* Services Section */
.services-section {
    background: transparent;
    padding: 80px 40px;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.service-card {
    background: transparent;
    border: none;
    padding: 35px 25px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-illustration {
    height: 220px;
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    animation: float 6s ease-in-out infinite;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

.service-image[loading="lazy"] {
    animation: loading 1.5s infinite;
}

.service-image:not([loading="lazy"]) {
    background: none;
}

.service-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
    border-color: rgba(139, 92, 246, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

.service-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.9rem;
    font-family: 'Space Grotesk', sans-serif;
    text-align: left;
}

/* Properties Listing Section */
.properties-listing-section {
    background: transparent;
    padding: 80px 40px;
    position: relative;
}

.properties-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

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

.property-card {
    background: transparent;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.property-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.property-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.property-image.active {
    opacity: 1;
    z-index: 2;
    background: none;
    animation: none;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

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

.property-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.property-badge {
    background: rgba(139, 92, 246, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    backdrop-filter: blur(10px);
}

.property-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.property-nav-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    backdrop-filter: blur(10px);
}

.property-nav-arrow:hover {
    background: white;
    transform: scale(1.1);
}

.property-gallery-indicators {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-dot.active {
    background: #FF6B9D;
    transform: scale(1.2);
}

.property-details {
    padding: 0 4px;
}

.property-location {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.star-icon {
    color: #FFD700;
    font-size: 14px;
}

.rating-value {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    font-family: 'Space Grotesk', sans-serif;
}

.property-host {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.property-dates {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.property-price {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

/* Contact Section */
.contact-section {
    background: transparent;
    padding: 80px 40px;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #FF6B9D 0%, #8B5CF6 100%);
    color: #fff;
    border: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    width: fit-content;
    margin-top: 20px;
    margin-right: 100px;
    align-self: flex-end;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.contact-form {
    background: transparent;
    border: none;
    padding: 20px 40px 40px 40px;
    width: 100%;
    max-width: 1000px;
}

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

.form-input {
    background: #0a0a0a !important;
    border: 1px solid #444 !important;
    border-radius: 8px;
    padding: 18px 20px;
    color: #fff !important;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.form-textarea {
    background: #0a0a0a !important;
    border: 1px solid #444 !important;
    border-radius: 8px;
    padding: 18px 20px;
    color: #fff !important;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    min-height: 140px;
    resize: vertical;
    transition: all 0.3s ease;
    width: 100%;
}

.form-textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-select {
    background: #0a0a0a !important;
    border: 1px solid #444 !important;
    border-radius: 8px;
    padding: 18px 20px;
    color: #fff !important;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

.form-submit-btn {
    background: linear-gradient(135deg, #FF6B9D 0%, #8B5CF6 100%);
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    width: 100%;
    margin-top: 10px;
    display: none;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* Footer Section */
.footer-section {
    background: #0a0a0a;
    padding: 40px 40px 20px;
    border-top: 1px solid #333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-disclaimer {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 150px 30px 150px;
    font-family: 'Space Grotesk', sans-serif;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid #666;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #000;
    position: relative;
    overflow: hidden;
}

.social-icon.facebook {
    color: #FF6B9D;
}

.social-icon.instagram {
    color: #FF6B9D;
}

.social-icon.twitter {
    color: #FF6B9D;
}

.social-icon.linkedin {
    color: #FF6B9D;
    background: #000;
}

.social-icon:hover {
    transform: translate(5px, 5px);
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .service-illustration {
        height: 220px;
        width: 100%;
    }
    
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }
    
    .services-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-illustration {
        height: 200px;
        width: 100%;
    }
    
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .properties-listing-section {
        padding: 60px 20px;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .property-image-container {
        height: 240px;
    }
    
    .property-navigation {
        opacity: 1;
    }
    
    .property-details {
        padding: 0 6px;
        margin-top: 6px;
    }
    
    .property-location {
        font-size: 15px;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .property-rating {
        margin-bottom: 5px;
    }
    
    .property-host {
        font-size: 13px;
        margin-bottom: 4px;
        line-height: 1.4;
    }
    
    .property-dates {
        font-size: 13px;
        margin-bottom: 5px;
        line-height: 1.4;
    }
    
    .property-price {
        font-size: 15px;
        margin-top: 3px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
        display: flex;
        flex-direction: column;
    }
    
    .contact-submit-btn {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-submit-btn {
        display: block;
        width: 100%;
        margin-top: 20px;
    }
    
    .contact-form {
        padding: 20px 15px 40px 15px;
    }
    
    .footer-disclaimer {
        margin: 0 15px 30px 15px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 15px;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-illustration {
        height: 180px;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-card-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .properties-listing-section {
        padding: 40px 15px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .property-image-container {
        height: 220px;
    }
    
    .property-details {
        padding: 0 8px;
        margin-top: 8px;
    }
    
    .property-location {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 6px;
        line-height: 1.3;
    }
    
    .property-rating {
        margin-bottom: 6px;
    }
    
    .property-host {
        font-size: 13px;
        margin-bottom: 4px;
        line-height: 1.4;
    }
    
    .property-dates {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .property-price {
        font-size: 15px;
        font-weight: 600;
        margin-top: 4px;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
    }
    
    .contact-submit-btn {
        display: none;
    }
    
    .form-submit-btn {
        display: block;
        width: 100%;
        margin-top: 20px;
    }
    
    .contact-form {
        padding: 20px 10px 40px 10px;
    }
    
    .contact-subtitle {
        font-size: 1.2rem;
    }
    
    .footer-section {
        padding: 30px 20px 15px;
    }
    
    .footer-disclaimer {
        font-size: 0.8rem;
        margin: 0 10px 30px 10px;
    }
}

@media (max-width: 360px) {
    .services-section {
        padding: 30px 10px;
    }
    
    .services-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .service-card {
        padding: 20px 12px;
    }
    
    .service-illustration {
        height: 160px;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .service-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-card-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .properties-listing-section {
        padding: 30px 10px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .property-image-container {
        height: 200px;
    }
    
    .property-details {
        padding: 0 6px;
        margin-top: 6px;
    }
    
    .property-location {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    
    .property-rating {
        margin-bottom: 5px;
    }
    
    .property-host {
        font-size: 12px;
        margin-bottom: 3px;
        line-height: 1.3;
    }
    
    .property-dates {
        font-size: 12px;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .property-price {
        font-size: 14px;
        font-weight: 600;
        margin-top: 3px;
    }
    
    .contact-section {
        padding: 50px 15px;
    }
    
    .contact-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-item {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .contact-form {
        padding: 15px 8px 30px 8px;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .footer-section {
        padding: 25px 15px 12px;
    }
    
    .footer-disclaimer {
        font-size: 0.75rem;
        margin: 0 8px 25px 8px;
        line-height: 1.5;
    }
    
    .social-icons {
        gap: 10px;
        justify-content: center;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* DAARIX Manifesto Sections */
.daarix-manifesto {
    padding: 80px 40px;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.05), transparent 70%);
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.manifesto-container {
    max-width: 1000px;
    text-align: center;
    width: 100%;
}

.manifesto-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -1px;
}

.manifesto-subtitle {
    font-size: 1.5rem;
    color: #8B5CF6;
    margin-bottom: 40px;
    font-family: 'Space Grotesk', sans-serif;
}

.manifesto-text {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.manifesto-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.manifesto-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.manifesto-icon {
    font-size: 2.5rem;
    color: #8B5CF6;
    margin-bottom: 20px;
}

.manifesto-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.manifesto-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.highlight-text {
    color: #b74fff;
    font-weight: 600;
}


/* ==========================================================================
   SUBPAGE SPECIFIC STYLES (About, Services, Properties, Contact)
   ========================================================================== */

/* Page Hero (Global Subpage Banner) */
.page-hero {
    position: relative;
    padding: 150px 40px 80px;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.15), transparent 70%);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero .container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.page-hero p {
    font-size: 1.2rem;
    color: #8B5CF6;
    font-family: 'Space Grotesk', sans-serif;
}

/* Common Container for Subpages */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* About & Generic Sections */
.about-section, .mission-vision, .team-section, .contact-section, .faq-section, .additional-services {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

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

/* Flex Content (About, Contact) */
.about-content, .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text, .contact-info {
    flex: 1;
    min-width: 300px;
}

.about-text h2, .contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
}

.about-text p, .contact-info p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Grids (Mission, Team, Services, FAQ) */
.mission-vision-grid, .team-grid, .services-list, .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Team Member Cards */
.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #fff;
    margin: 20px 0 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.member-role {
    color: #b74fff;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #aaa;
    font-size: 0.95rem;
    padding: 0 20px 20px;
    line-height: 1.6;
}

/* Service Items */
.service-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #8B5CF6;
}

.service-item-icon i {
    font-size: 2rem;
    color: #8B5CF6;
}

.service-item-content h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.service-item-content p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Properties Filter & Grid */
.properties-filters {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Properties search row */
.properties-filters .search-container {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.properties-filters .search-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.properties-filters .search-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.properties-filters .search-input:focus {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

/* The styled search button */
.search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #8B5CF6 0%, #7c3aed 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.35);
    letter-spacing: 0.3px;
}

.search-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.search-btn:hover i {
    transform: scale(1.15);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.filter-selects {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.filter-select {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
}

.filter-select:focus {
    border-color: #8B5CF6;
}

.btn-load-more {
    display: block;
    margin: 40px auto 0;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid #8B5CF6;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #8B5CF6;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-group input, .form-group select {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    outline: none;
}

.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    outline: none;
    margin-bottom: 15px;
    resize: vertical;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: #8B5CF6;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #b74fff, #ff3db8);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* Contact Info Items */
.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
    padding: 15px;
    border-radius: 50%;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-item p {
    color: #ccc;
    margin-bottom: 5px;
}

.contact-item span {
    font-size: 0.9rem;
    color: #8B5CF6;
}

/* FAQ Accordion/Grid */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #8B5CF6;
}

.faq-item h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.faq-item p {
    color: #aaa;
    line-height: 1.6;
}


/* ==========================================================================
   ADVANCED ANIMATIONS & EFFECTS
   ========================================================================== */

/* Intersection Observer Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Subpage Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #0F0F12;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03), transparent 50%);
    animation: rotateBg 30s linear infinite;
}

/* Premium ambient layer for inner pages */
.animated-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), transparent 62%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px);
    opacity: 0.28;
    pointer-events: none;
    mix-blend-mode: screen;
    mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1), rgba(0,0,0,0.55) 55%, rgba(0,0,0,0));
}

.animated-bg .ambient-orb {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    filter: blur(26px);
    opacity: 0.55;
    transform: translate3d(0,0,0);
    will-change: transform;
    pointer-events: none;
    background: radial-gradient(circle at 30% 30%, rgba(245, 158, 11, 0.25), transparent 55%),
                radial-gradient(circle at 70% 75%, rgba(0, 229, 255, 0.20), transparent 58%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.22), transparent 60%);
    animation: orbFloat 9s ease-in-out infinite;
}

.animated-bg .ambient-orb.orb-1 { top: -120px; left: -140px; width: 560px; height: 560px; animation-duration: 10s; }
.animated-bg .ambient-orb.orb-2 { top: 15%; right: -180px; width: 620px; height: 620px; opacity: 0.45; animation-duration: 12s; }
.animated-bg .ambient-orb.orb-3 { bottom: -220px; left: 18%; width: 680px; height: 680px; opacity: 0.40; animation-duration: 14s; }

@keyframes orbFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.03); }
}

.animated-bg .ambient-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}

.animated-bg .ambient-planet {
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    border-radius: 999px;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.10), transparent 55%),
                radial-gradient(circle at 60% 70%, rgba(139, 92, 246, 0.20), transparent 58%),
                radial-gradient(circle at 50% 50%, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 30px 120px rgba(0,0,0,0.65), 0 0 60px rgba(139, 92, 246, 0.12);
    filter: blur(0px);
    opacity: 0.55;
    pointer-events: none;
    will-change: transform;
}

.animated-bg .ambient-ring {
    position: absolute;
    right: -220px;
    bottom: -120px;
    width: min(760px, 80vw);
    height: min(280px, 34vw);
    border-radius: 999px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.12);
    transform: rotate(-14deg);
    opacity: 0.35;
    pointer-events: none;
    will-change: transform;
}

.animated-bg .ambient-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.45;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18) 0 1px, transparent 2px),
        radial-gradient(circle at 25% 72%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
        radial-gradient(circle at 55% 38%, rgba(255,255,255,0.16) 0 1px, transparent 2px),
        radial-gradient(circle at 78% 18%, rgba(255,255,255,0.14) 0 1px, transparent 2px),
        radial-gradient(circle at 86% 68%, rgba(255,255,255,0.12) 0 1px, transparent 2px),
        radial-gradient(circle at 62% 82%, rgba(255,255,255,0.10) 0 1px, transparent 2px);
}

@media (prefers-reduced-motion: reduce) {
    .animated-bg::before { animation: none !important; }
    .animated-bg .ambient-orb { animation: none !important; }
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page-specific futuristic imagery (subtle, premium) */
body.page-about .page-hero::before,
body.page-services .page-hero::before,
body.page-properties .page-hero::before,
body.page-contact .page-hero::before {
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

body.page-about .page-hero::after {
    background:
        linear-gradient(to bottom, rgba(10,10,14,0.10), rgba(10,10,14,0.62)),
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.06), transparent 62%),
        url('media/daarix_ai_core.png');
    background-repeat: no-repeat;
    background-position: 50% 10%;
    background-size: cover;
    opacity: 0.22;
    mix-blend-mode: lighten;
}

body.page-services .page-hero::after {
    background:
        linear-gradient(to bottom, rgba(10,10,14,0.12), rgba(10,10,14,0.65)),
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.06), transparent 62%),
        url('media/ecosystem.png');
    background-repeat: no-repeat;
    background-position: 50% 10%;
    background-size: cover;
    opacity: 0.18;
    mix-blend-mode: lighten;
}

body.page-properties .page-hero::after {
    background:
        linear-gradient(to bottom, rgba(10,10,14,0.12), rgba(10,10,14,0.68)),
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.06), transparent 62%),
        url('media/property.png');
    background-repeat: no-repeat;
    background-position: 50% 15%;
    background-size: cover;
    opacity: 0.16;
    mix-blend-mode: lighten;
}

body.page-contact .page-hero::after {
    background:
        linear-gradient(to bottom, rgba(10,10,14,0.12), rgba(10,10,14,0.68)),
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.06), transparent 62%),
        url('media/global-network.png');
    background-repeat: no-repeat;
    background-position: 50% 25%;
    background-size: cover;
    opacity: 0.14;
    mix-blend-mode: lighten;
}

/* Services: add subtle “tech texture” per card */
body.page-services .service-card {
    text-align: left !important;
}
body.page-services .service-card .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(120% 120% at 30% 25%, rgba(255, 255, 255, 0.14), transparent 55%),
        radial-gradient(120% 120% at 75% 85%, rgba(var(--accent), 0.38), transparent 55%),
        rgba(255,255,255,0.03);
    border: 1px solid rgba(var(--accent), 0.28);
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
body.page-services .service-card::marker { content: ""; }
body.page-services .service-card::after { /* keep sweep, plus texture */ }
body.page-services .service-card > * { position: relative; z-index: 1; }
body.page-services .service-card::selection { background: rgba(245,158,11,0.25); }
body.page-services .service-card::before { opacity: 0.66; }

body.page-services .services-grid .service-card:nth-child(1) { --accent: 245, 158, 11; }
body.page-services .services-grid .service-card:nth-child(2) { --accent: 0, 229, 255; }
body.page-services .services-grid .service-card:nth-child(3) { --accent: 139, 92, 246; }

body.page-services .services-grid .service-card:nth-child(1)::after,
body.page-services .services-grid .service-card:nth-child(2)::after,
body.page-services .services-grid .service-card:nth-child(3)::after {
    /* re-use the light sweep pseudo, but also show a faint themed image under content */
}

body.page-services .services-grid .service-card:nth-child(1) {
    background-image:
        radial-gradient(120% 120% at 12% 8%, rgba(255, 255, 255, 0.07), transparent 55%),
        radial-gradient(130% 140% at 90% 110%, rgba(245, 158, 11, 0.10), transparent 58%),
        linear-gradient(to bottom, rgba(10,10,14,0.35), rgba(10,10,14,0.55)),
        url('media/eco_buy_sell.png');
    background-size: auto, auto, auto, cover;
    background-position: 0 0, 0 0, 0 0, 70% 15%;
    background-repeat: no-repeat;
    background-blend-mode: normal, normal, normal, soft-light;
}
body.page-services .services-grid .service-card:nth-child(2) {
    background-image:
        radial-gradient(120% 120% at 12% 8%, rgba(255, 255, 255, 0.07), transparent 55%),
        radial-gradient(130% 140% at 90% 110%, rgba(0, 229, 255, 0.10), transparent 58%),
        linear-gradient(to bottom, rgba(10,10,14,0.35), rgba(10,10,14,0.55)),
        url('media/eco_rentals.png');
    background-size: auto, auto, auto, cover;
    background-position: 0 0, 0 0, 0 0, 70% 15%;
    background-repeat: no-repeat;
    background-blend-mode: normal, normal, normal, soft-light;
}
body.page-services .services-grid .service-card:nth-child(3) {
    background-image:
        radial-gradient(120% 120% at 12% 8%, rgba(255, 255, 255, 0.07), transparent 55%),
        radial-gradient(130% 140% at 90% 110%, rgba(139, 92, 246, 0.10), transparent 58%),
        linear-gradient(to bottom, rgba(10,10,14,0.35), rgba(10,10,14,0.55)),
        url('media/eco_services.png');
    background-size: auto, auto, auto, cover;
    background-position: 0 0, 0 0, 0 0, 70% 15%;
    background-repeat: no-repeat;
    background-blend-mode: normal, normal, normal, soft-light;
}

/* Make service features read more premium */
body.page-services .service-features .feature-item i {
    color: rgba(255,255,255,0.9);
    background: rgba(var(--accent), 0.18);
    border: 1px solid rgba(var(--accent), 0.22);
    width: 22px;
    height: 22px;
    border-radius: 8px;
    display: inline-grid;
    place-items: center;
    margin-right: 10px;
}

/* 3D Hover Improvements */
.manifesto-card, .service-item, .team-member, .faq-item, .property-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease !important;
}

.manifesto-card:hover, .service-item:hover, .team-member:hover, .faq-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15), 0 0 20px rgba(255, 107, 53, 0.05) !important;
    border-color: rgba(139, 92, 246, 0.5) !important;
    z-index: 1;
}

/* ==========================================================================
   REDESIGNED FOOTER
   ========================================================================== */
.daarix-footer {
    background: rgba(15, 15, 18, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.daarix-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8B5CF6, #b74fff, transparent);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

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

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo h2 {
    font-size: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    color: #fff;
    margin: 0;
}

.footer-tagline {
    color: #aaa;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5CF6;
}

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

.footer-social .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social .social-icon:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #b74fff;
    transform: translateY(-5px);
    border-color: #8B5CF6;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #888;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal a {
    color: #888;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* =========================================
   Mega Footer & Inner Page Animations
   ========================================= */

/* Mega Footer */
.mega-footer {
    position: relative;
    background: #09090b;
    padding: 80px 40px 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mega-footer .footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 20px;
    height: 2px;
    background: #8B5CF6;
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 100%;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #8B5CF6;
    transform: translateX(5px);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: #8B5CF6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}


/* Glassmorphism Inner Pages (Overrides for old generic classes) */
.page-hero {
    position: relative;
    padding: 120px 40px 80px;
    text-align: center;
    background:
        radial-gradient(900px 380px at 50% 5%, rgba(245, 158, 11, 0.12), transparent 70%),
        radial-gradient(900px 420px at 20% 25%, rgba(0, 229, 255, 0.10), transparent 60%),
        radial-gradient(900px 520px at 80% 65%, rgba(139, 92, 246, 0.10), transparent 65%),
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.02), transparent 70%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.page-hero::after {
    /* subtle premium grid + bottom fade, consistent with homepage */
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(10,10,14,0.15), rgba(10,10,14,0.55)),
        radial-gradient(circle at 50% 35%, rgba(255,255,255,0.06), transparent 62%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px);
    opacity: 0.55;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0.65) 70%, rgba(0,0,0,0));
    pointer-events: none;
    z-index: -1;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Cards */
.mission-card, .service-card, .service-item, .manifesto-card, .team-member, .faq-item, .contact-form, .properties-filters {
    /* shared premium panel */
    --accent: 139, 92, 246;
    background:
        radial-gradient(120% 120% at 12% 8%, rgba(255, 255, 255, 0.07), transparent 55%),
        radial-gradient(130% 140% at 90% 110%, rgba(var(--accent), 0.09), transparent 58%),
        rgba(10, 10, 14, 0.38) !important;
    border: 1px solid rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px);
    border-radius: 24px !important;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease !important;
}

.services-grid .service-card:nth-child(1),
.manifesto-grid .manifesto-card:nth-child(1),
.services-list .service-item:nth-child(1) { --accent: 245, 158, 11; }

.services-grid .service-card:nth-child(2),
.manifesto-grid .manifesto-card:nth-child(2),
.services-list .service-item:nth-child(2) { --accent: 0, 229, 255; }

.services-grid .service-card:nth-child(3),
.manifesto-grid .manifesto-card:nth-child(3),
.services-list .service-item:nth-child(3) { --accent: 139, 92, 246; }

.mission-card::before, .service-card::before, .service-item::before, .manifesto-card::before, .team-member::before, .faq-item::before, .contact-form::before, .properties-filters::before {
    /* premium border ring */
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(
        from 150deg,
        rgba(var(--accent), 0.0),
        rgba(var(--accent), 0.55),
        rgba(255, 255, 255, 0.08),
        rgba(var(--accent), 0.25),
        rgba(var(--accent), 0.0)
    );
    opacity: 0.60;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.mission-card::after, .service-card::after, .service-item::after, .manifesto-card::after, .team-member::after, .faq-item::after, .contact-form::after, .properties-filters::after {
    /* light sweep */
    content: "";
    position: absolute;
    inset: -40% -60%;
    background: linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.10) 50%, transparent 58%);
    transform: translateX(-35%) rotate(8deg);
    opacity: 0;
    pointer-events: none;
}

.mission-card:hover, .service-card:hover, .service-item:hover, .manifesto-card:hover, .team-member:hover, .faq-item:hover, .contact-form:hover, .properties-filters:hover {
    transform: translateY(-10px) scale(1.015) !important;
    border-color: rgba(var(--accent), 0.35) !important;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.55),
        0 0 42px rgba(var(--accent), 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.mission-card:hover::after, .service-card:hover::after, .service-item:hover::after, .manifesto-card:hover::after, .team-member:hover::after, .faq-item:hover::after, .contact-form:hover::after, .properties-filters:hover::after {
    opacity: 1;
    animation: subpageSweep 900ms ease forwards;
}

@keyframes subpageSweep {
    from { transform: translateX(-35%) rotate(8deg); }
    to   { transform: translateX(35%) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce) {
    .mission-card, .service-card, .service-item, .manifesto-card, .team-member, .faq-item, .contact-form, .properties-filters {
        transition: none !important;
    }
    .mission-card::after, .service-card::after, .service-item::after, .manifesto-card::after, .team-member::after, .faq-item::after, .contact-form::after, .properties-filters::after {
        animation: none !important;
        opacity: 0 !important;
    }
}

/* Mobile responsive for mega footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    z-index: 10;
    gap: 40px;
    margin-top: 40px;
}

.hero-left {
    flex: 1;
    text-align: left;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-subline {
        text-align: center !important;
    }
    
    .hero-text-block {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-right {
        justify-content: center;
        margin-top: 40px;
    }
}

/* =========================================
   Hero Mission Statement Styling
   ========================================= */
.hero-mission-statement {
    text-align: center;
    z-index: 10;
    margin-top: 40px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(139, 92, 246, 0.1);
}

.mission-main-text {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
}

.mission-highlight {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #b74fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}

.mission-sub-text {
    font-size: 1.15rem;
    color: #a5b4fc;
    font-weight: 500;
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
}

/* =====================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE OVERHAUL
   ===================================================== */

/* ---- TABLET: 768px – 1024px ---- */
@media (max-width: 1024px) {

    /* Manifesto / inner sections */
    .manifesto-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }

    .manifesto-container {
        padding: 0 30px !important;
    }

    .manifesto-title {
        font-size: 1.6rem !important;
    }

    /* Page-hero inner pages */
    .page-hero {
        padding: 100px 30px 60px !important;
    }

    .page-hero h1 {
        font-size: 3rem !important;
    }

    /* Properties grid */
    .properties-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Mega footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    /* Mission statement */
    .hero-mission-statement {
        max-width: 90% !important;
    }

    /* Mission highlight font */
    .mission-highlight {
        font-size: 1.6rem !important;
    }
}

/* ---- MOBILE: ≤ 768px ---- */
@media (max-width: 768px) {

    /* ---- Manifesto sections ---- */
    .daarix-manifesto {
        padding: 40px 16px !important;
    }

    .manifesto-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .manifesto-container {
        padding: 0 4px !important;
    }

    .manifesto-title {
        font-size: 1.3rem !important;
        letter-spacing: 2px !important;
    }

    .manifesto-subtitle {
        font-size: 1.2rem !important;
    }

    .manifesto-text {
        font-size: 1rem !important;
    }

    .manifesto-card {
        padding: 24px 18px !important;
        border-radius: 16px !important;
    }

    .manifesto-icon {
        font-size: 1.5rem !important;
    }

    /* ---- Hero mission statement ---- */
    .hero-mission-statement {
        max-width: 100% !important;
        margin: 20px 12px 30px !important;
        padding: 20px 16px !important;
        width: auto !important;
    }

    .mission-main-text {
        font-size: 1rem !important;
    }

    .mission-highlight {
        font-size: 1.5rem !important;
    }

    .mission-sub-text {
        font-size: 1rem !important;
    }

    /* ---- Page hero (inner pages) ---- */
    .page-hero {
        padding: 90px 20px 50px !important;
    }

    .page-hero h1 {
        font-size: 2.2rem !important;
        letter-spacing: -0.5px !important;
    }

    .page-hero p {
        font-size: 1rem !important;
    }

    /* ---- About page: team grid ---- */
    .team-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    /* ---- Services page ---- */
    .service-card {
        padding: 24px 18px !important;
    }

    /* ---- Properties page ---- */
    .properties-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 4px !important;
    }

    /* ---- Contact page ---- */
    .contact-section {
        padding: 80px 16px 40px !important;
    }

    .contact-title {
        font-size: 2rem !important;
    }

    /* ---- Mega footer mobile ---- */
    .mega-footer {
        padding: 50px 20px 20px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        margin-bottom: 30px !important;
    }

    .footer-logo h2 {
        font-size: 1.5rem !important;
    }

    .footer-description {
        max-width: 100% !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .footer-legal {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    /* ---- Old footer section (fallback) ---- */
    .footer-section {
        padding: 30px 20px !important;
    }

    .footer-container {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* ---- Chatbot widget mobile ---- */
    .chatbot-widget {
        bottom: 16px !important;
        right: 16px !important;
    }

    .chatbot-window {
        width: calc(100vw - 32px) !important;
        right: -8px !important;
        height: 70vh !important;
        max-height: 500px !important;
    }
}

/* ---- SMALL MOBILE: ≤ 480px ---- */
@media (max-width: 480px) {

    /* General typography scale-down */
    body { font-size: 15px; }

    /* Page hero */
    .page-hero h1 {
        font-size: 1.8rem !important;
    }

    /* Team grid single column */
    .team-grid {
        grid-template-columns: 1fr !important;
    }

    /* Manifesto */
    .manifesto-title {
        font-size: 1.1rem !important;
    }

    .manifesto-subtitle {
        font-size: 1rem !important;
    }

    /* Mission statement */
    .mission-highlight {
        font-size: 1.25rem !important;
    }

    /* Chatbot even smaller screens */
    .chatbot-window {
        width: calc(100vw - 24px) !important;
        right: -4px !important;
        height: 65vh !important;
    }

    .chatbot-toggle {
        width: 52px !important;
        height: 52px !important;
    }

    /* Footer */
    .footer-logo h2 {
        font-size: 1.2rem !important;
    }

    .footer-links a,
    .footer-contact-info p {
        font-size: 0.9rem !important;
    }
}

/* (Section images now used as backgrounds via ::before pseudo-elements) */

/* =====================================================
   SECTION BACKGROUND IMAGES — Atmospheric, Subtle
   ===================================================== */

/* Base style for all bg sections */
.section-bg-smartcity,
.section-bg-ecosystem,
.section-bg-ai,
.section-bg-aiengine,
.section-bg-web3,
.section-bg-global {
    position: relative;
    overflow: hidden;
}

/* The image pseudo-element */
.section-bg-smartcity::before,
.section-bg-ecosystem::before,
.section-bg-ai::before,
.section-bg-aiengine::before,
.section-bg-web3::before,
.section-bg-global::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    transition: all 0.6s ease;
    
    /* Make the pseudo-element opaque in the center, transparent at the edges */
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
}

/* Subtle brightness increase on hover */
.section-bg-smartcity:hover::before,
.section-bg-ecosystem:hover::before,
.section-bg-ai:hover::before,
.section-bg-aiengine:hover::before,
.section-bg-web3:hover::before,
.section-bg-global:hover::before {
    /* The hover effect is handled in the individual background definitions now */
}



/* Content above the background */
.section-bg-smartcity > *,
.section-bg-ecosystem > *,
.section-bg-ai > *,
.section-bg-aiengine > *,
.section-bg-web3 > *,
.section-bg-global > * {
    position: relative;
    z-index: 1;
}

/* Individual backgrounds */
.section-bg-smartcity::before {
    background-image: linear-gradient(rgba(15,15,18,0.88), rgba(15,15,18,0.88)), url('media/power_statement_bg.png');
}

.section-bg-ecosystem::before {
    background-image: linear-gradient(rgba(15,15,18,0.88), rgba(15,15,18,0.88)), url('media/ecosystem.png');
}

.section-bg-ai::before {
    background-image: linear-gradient(rgba(15,15,18,0.88), rgba(15,15,18,0.88)), url('media/ai-engine.png');
    background-position: center top;
}

.section-bg-aiengine::before {
    background-image: linear-gradient(rgba(15,15,18,0.88), rgba(15,15,18,0.88)), url('media/ai-engine.png');
}

.section-bg-web3::before {
    background-image: linear-gradient(rgba(15,15,18,0.88), rgba(15,15,18,0.88)), url('media/web3.png');
}

.section-bg-global::before {
    background-image: linear-gradient(rgba(15,15,18,0.88), rgba(15,15,18,0.88)), url('media/global-network.png');
    background-position: center;
}

.section-bg-smartcity:hover::before { background-image: linear-gradient(rgba(15,15,18,0.83), rgba(15,15,18,0.83)), url('media/power_statement_bg.png'); }
.section-bg-ecosystem:hover::before { background-image: linear-gradient(rgba(15,15,18,0.83), rgba(15,15,18,0.83)), url('media/ecosystem.png'); }
.section-bg-ai:hover::before { background-image: linear-gradient(rgba(15,15,18,0.83), rgba(15,15,18,0.83)), url('media/ai-engine.png'); }
.section-bg-aiengine:hover::before { background-image: linear-gradient(rgba(15,15,18,0.83), rgba(15,15,18,0.83)), url('media/ai-engine.png'); }
.section-bg-web3:hover::before { background-image: linear-gradient(rgba(15,15,18,0.83), rgba(15,15,18,0.83)), url('media/web3.png'); }
.section-bg-global:hover::before { background-image: linear-gradient(rgba(15,15,18,0.83), rgba(15,15,18,0.83)), url('media/global-network.png'); }

/* Make masks more transparent on small screens */
@media (max-width: 480px) {
    .section-bg-smartcity::before,
    .section-bg-ecosystem::before,
    .section-bg-ai::before,
    .section-bg-aiengine::before,
    .section-bg-web3::before,
    .section-bg-global::before {
        -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 10%, transparent 70%);
        mask-image: radial-gradient(ellipse at 50% 50%, black 10%, transparent 70%);
    }
}

/* ========================================================================= */
/* FUTURISTIC REDESIGNED HOME PAGE STYLES                                    */
/* ========================================================================= */

.gold-text {
    color: #F59E0B !important;
}

.green-glow {
    color: #10B981 !important;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

/* Base components: Button Design System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    gap: 8px;
    border: none;
}

.btn-gold {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: #0F0F12;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
}

.section-tag {
    display: inline-block;
    color: #8B5CF6;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: #A0A0AB;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Glassmorphism Containers */
.glass-container {
    background: rgba(18, 17, 24, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.glow-blue {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.1);
}

.glow-blue:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
}

/* Section 1: Hero Section */
.hero-section {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #A78BFA;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-desc {
    font-size: 1.25rem;
    color: #A0A0AB;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.metric-card {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
}

.metric-label {
    font-size: 0.85rem;
    color: #71717A;
}

/* Dashboard Mockup Stylings */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pedestal-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    animation: pulseGlow 4s infinite alternate;
}

.glow-ring.double {
    animation-delay: 2s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.glass-dashboard {
    position: relative;
    z-index: 2;
    background: rgba(18, 17, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    width: 380px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    margin-left: -90px; /* Shift left to prevent overlap with the centered 3D sphere */
    transition: margin 0.3s ease;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #F59E0B;
}

.indicator-dot.pulse {
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
    animation: softPulse 2s infinite;
}

.db-title-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.db-subtitle-text {
    font-size: 0.75rem;
    color: #71717A;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gauge-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto;
}

.gauge-svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.gauge-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.04);
    stroke-width: 8px;
}

.gauge-bar {
    fill: none;
    stroke: #F59E0B;
    stroke-width: 8px;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.gauge-value {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.gauge-label {
    font-size: 0.65rem;
    color: #71717A;
    letter-spacing: 0.5px;
}

.dashboard-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.status-bullet {
    color: #F59E0B;
}

.status-label {
    font-size: 0.75rem;
    color: #71717A;
}

.status-val {
    font-size: 0.85rem;
    font-weight: 600;
}

.sparkline-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: 10px;
}

.sparkline-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.8));
    border-radius: 2px;
}

/* Floating Status Cards */
.mini-status-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(25, 24, 32, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.mini-status-card.top-right {
    top: 10%;
    right: -20px;
}

.mini-status-card.mid-right {
    top: 50%;
    right: -40px;
}

.mini-status-card.bot-right {
    bottom: 10%;
    right: -10px;
}

.status-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
    font-size: 0.9rem;
}

.mini-status-card h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
}

.mini-status-card p {
    font-size: 0.75rem;
    color: #71717A;
}

/* Hero 3D Canvas Scroll-Tied Container */
.hero-canvas-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 620px;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease;
}

#heroSequenceCanvas {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    mix-blend-mode: screen;
}

@media (max-width: 1200px) {
    .glass-dashboard {
        margin-left: 0; /* Reset desktop shift */
    }
    .hero-canvas-container {
        width: 500px;
        height: 500px;
        left: 50%; /* Center the 3D sphere on medium screens */
    }
}

@media (max-width: 768px) {
    .glass-dashboard {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 380px;
    }
    .hero-canvas-container {
        width: 350px;
        height: 350px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: -40px auto 20px;
    }
}

/* Section 2: Daarix AI Engine styles */
.engine-section {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05), transparent 70%);
}

.engine-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.engine-left .glass-dashboard {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
    max-width: 380px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 10px;
}

.link-arrow i {
    transition: transform 0.3s ease;
}

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

.inner-dashboard {
    padding: 24px;
}

.dashboard-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-row.header-row h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.live-tag {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.metric-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.widget-label {
    font-size: 0.7rem;
    color: #71717A;
    margin-bottom: 4px;
}

.widget-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.chart-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 15px;
    margin-bottom: 20px;
}

.cities-list-widget {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: #71717A;
    margin-bottom: 12px;
}

.cities-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.city-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.city-name {
    font-size: 0.85rem;
    color: #E4E4E7;
    width: 60px;
}

.progress-bar-wrapper {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #F59E0B, #D97706);
    border-radius: 3px;
}

.city-score {
    font-size: 0.85rem;
    font-weight: 600;
    color: #F59E0B;
}

/* Section 3: Our Ecosystem */
.ecosystem-section {
    padding: 100px 0;
}

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

.platform-card {
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease-out, box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

.card-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.card-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Specific themed gradients for premium color mapping */
.platform-card-gold .card-overlay-gradient {
    background: linear-gradient(to top, rgba(10, 10, 12, 0.98) 0%, rgba(10, 10, 12, 0.5) 60%, rgba(245, 158, 11, 0.03) 100%);
}

.platform-card-cyan .card-overlay-gradient {
    background: linear-gradient(to top, rgba(10, 10, 12, 0.98) 0%, rgba(10, 10, 12, 0.5) 60%, rgba(6, 182, 212, 0.03) 100%);
}

.platform-card-purple .card-overlay-gradient {
    background: linear-gradient(to top, rgba(10, 10, 12, 0.98) 0%, rgba(10, 10, 12, 0.5) 60%, rgba(139, 92, 246, 0.03) 100%);
}

.card-content {
    position: absolute;
    inset: 0;
    padding: 35px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Brand header inside cards */
.card-header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.platform-card:hover .card-header-logo {
    opacity: 1;
}

.card-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.logo-gold { color: #F59E0B; }
.logo-cyan { color: #06B6D4; }
.logo-purple { color: #8B5CF6; }

.card-brand-name {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #FFFFFF;
}

/* Bottom content alignment */
.card-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platform-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin: 0;
}

.platform-desc {
    font-size: 0.92rem;
    color: #D4D4D8;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 5px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.explore-link i {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-link:hover i {
    transform: translateX(6px);
}

/* Themed explore link color behaviors */
.explore-link-gold { color: #F59E0B; }
.explore-link-gold:hover { color: #FFFFFF; text-shadow: 0 0 10px rgba(245, 158, 11, 0.6); }

.explore-link-cyan { color: #06B6D4; }
.explore-link-cyan:hover { color: #FFFFFF; text-shadow: 0 0 10px rgba(6, 182, 212, 0.6); }

.explore-link-purple { color: #8B5CF6; }
.explore-link-purple:hover { color: #FFFFFF; text-shadow: 0 0 10px rgba(139, 92, 246, 0.6); }

/* Themed borders, shadows, and hover dynamics */
.platform-card-gold { border-color: rgba(245, 158, 11, 0.12); }
.platform-card-gold:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 20px 45px rgba(245, 158, 11, 0.18);
}

.platform-card-cyan { border-color: rgba(6, 182, 212, 0.12); }
.platform-card-cyan:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 20px 45px rgba(6, 182, 212, 0.18);
}

.platform-card-purple { border-color: rgba(139, 92, 246, 0.12); }
.platform-card-purple:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 20px 45px rgba(139, 92, 246, 0.18);
}

.platform-card:hover .card-image-bg {
    transform: scale(1.04);
}

/* ── 3D Tilt Spotlight Overlay ── */
.tilt-spotlight-wrap {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: inherit;
}

.tilt-spotlight-dot {
    position: absolute;
    width: 250%;
    height: 250%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    /* background set dynamically per card theme in JS */
}

/* Section 4: Why Daarix features */
.why-section {
    padding: 100px 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.03), transparent 70%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    /* Premium glass base */
    --accent: 139, 92, 246; /* default: purple */
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(120% 120% at 15% 10%, rgba(255, 255, 255, 0.07), transparent 55%),
        radial-gradient(120% 140% at 85% 110%, rgba(var(--accent), 0.08), transparent 55%),
        rgba(10, 10, 14, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 32px 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.features-grid .feature-card:nth-child(1) { --accent: 245, 158, 11; }  /* gold */
.features-grid .feature-card:nth-child(2) { --accent: 0, 229, 255; }   /* cyan */
.features-grid .feature-card:nth-child(3) { --accent: 245, 158, 11; }  /* gold */
.features-grid .feature-card:nth-child(4) { --accent: 139, 92, 246; }  /* purple */
.features-grid .feature-card:nth-child(5) { --accent: 0, 229, 255; }   /* cyan */

.feature-card::before {
    /* Animated premium border glow (masked to a 1px ring) */
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: conic-gradient(
        from 160deg,
        rgba(var(--accent), 0.0),
        rgba(var(--accent), 0.55),
        rgba(255, 255, 255, 0.08),
        rgba(var(--accent), 0.25),
        rgba(var(--accent), 0.0)
    );
    opacity: 0.65;
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.feature-card::after {
    /* Light sweep for "luxury" feel */
    content: "";
    position: absolute;
    inset: -40% -60%;
    background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.10) 50%, transparent 60%);
    transform: translateX(-35%) rotate(8deg);
    opacity: 0;
    pointer-events: none;
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background:
        radial-gradient(120% 120% at 30% 25%, rgba(255, 255, 255, 0.12), transparent 55%),
        radial-gradient(120% 120% at 75% 85%, rgba(var(--accent), 0.35), transparent 55%),
        rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(var(--accent), 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(var(--accent), 0.95);
    font-size: 1.2rem;
    margin-bottom: 18px;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 650;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.5;
}

.feature-card:hover {
    border-color: rgba(var(--accent), 0.35);
    transform: translateY(-8px);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 40px rgba(var(--accent), 0.10);
}

.feature-card:hover .feature-icon {
    transform: translateY(-2px) scale(1.03);
    color: #FFFFFF;
    background:
        radial-gradient(120% 120% at 30% 25%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(120% 120% at 75% 85%, rgba(var(--accent), 0.55), transparent 55%),
        rgba(var(--accent), 0.18);
    border-color: rgba(var(--accent), 0.45);
    box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.42),
        0 0 24px rgba(var(--accent), 0.25);
}

.feature-card:hover::after {
    opacity: 1;
    animation: featureSweep 900ms ease forwards;
}

@keyframes featureSweep {
    from { transform: translateX(-35%) rotate(8deg); }
    to   { transform: translateX(35%) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce) {
    .feature-card,
    .feature-icon {
        transition: none !important;
    }
    .feature-card:hover::after {
        animation: none !important;
        opacity: 0 !important;
    }
}

/* Section 5: Digital Dominance */
.dominance-section {
    padding: 100px 0;
}

.dominance-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.network-map-container {
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.network-map-img {
    width: 100%;
    display: block;
    mix-blend-mode: lighten;
    opacity: 0.85;
}

.map-pulse-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #F59E0B;
    border-radius: 50%;
    box-shadow: 0 0 10px #F59E0B;
    animation: mapPulse 2s infinite;
}

/* Section 6 & 7: Smart Cities & Metaverse Visual Sections */
.smartcity-section, .metaverse-section {
    padding: 100px 0;
}

.smartcity-left {
    position: relative;
}

.smartcity-container, .metaverse-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.metaverse-container {
    grid-template-columns: 1fr 1.2fr;
}

.smartcity-visual-frame, .metaverse-visual-frame {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.city-img, .meta-img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.smartcity-visual-frame:hover .city-img, 
.metaverse-visual-frame:hover .meta-img {
    transform: scale(1.03);
}

/* Section 8: Strategic Presence / Investor form */
.investor-section {
    padding: 120px 0;
    background: radial-gradient(circle at 10% 80%, rgba(139, 92, 246, 0.04), transparent 70%);
}

.investor-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.collab-container {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    margin-top: 40px;
}

.collab-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: #F59E0B;
    letter-spacing: 2.5px;
    margin-bottom: 8px;
}

.collab-subtext {
    font-size: 0.95rem;
    color: #71717A;
    margin-bottom: 25px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
}

.logo-item {
    font-size: 0.9rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.glass-form-container {
    background: rgba(18, 17, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.glass-form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.form-intro {
    font-size: 0.95rem;
    color: #71717A;
    margin-bottom: 30px;
}

.investor-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.investor-form .form-input,
.investor-form .form-textarea,
.investor-form .form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.investor-form .form-input:focus,
.investor-form .form-textarea:focus,
.investor-form .form-select:focus {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(255, 255, 255, 0.04);
}

.investor-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

/* Section 9: Cinematic Close */
.close-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.close-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.close-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.close-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.close-desc {
    font-size: 1.25rem;
    color: #A0A0AB;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Animations declarations */
@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes softPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes mapPulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
    }
    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Interactive Floating Effect */
.float-effect {
    animation: floatAnim 6s ease-in-out infinite;
}

.float-effect.delay-1 {
    animation-delay: 2s;
}

.float-effect.delay-2 {
    animation-delay: 4s;
}

.floating {
    animation: floatDashboard 5s ease-in-out infinite alternate;
}

@keyframes floatDashboard {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes floatAnim {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ========================================================================= */
/* RESPONSIVE DESIGN ADJUSTMENTS                                             */
/* ========================================================================= */

/* ─── Tablet Landscape / Small Desktop (≤ 1024px) ─── */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .hero-container,
    .engine-container,
    .dominance-container,
    .smartcity-container,
    .metaverse-container,
    .investor-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .metaverse-container {
        grid-template-columns: 1fr;
    }
    
    .hero-right,
    .engine-right,
    .dominance-right,
    .smartcity-left,
    .metaverse-right {
        order: 2;
    }
    
    .hero-left,
    .engine-left,
    .dominance-left,
    .smartcity-right,
    .metaverse-left {
        order: 1;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-metrics {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

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

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

    /* Mini status cards – pull in from the right edge */
    .mini-status-card.top-right { right: 0; }
    .mini-status-card.mid-right { right: -10px; }
    .mini-status-card.bot-right { right: 0; }

    .close-title {
        font-size: 2.6rem;
    }

    .investor-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

/* ─── Tablet Portrait / Phablet (≤ 768px) ─── */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

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

    .hero-title {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
    }
    
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 5px 10px;
        margin-bottom: 18px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 35px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .metric-card {
        padding: 16px 12px;
    }

    .metric-number {
        font-size: 1.5rem;
    }

    .metric-label {
        font-size: 0.72rem;
    }

    /* 3D Canvas for hero */
    .hero-canvas-container {
        width: 320px;
        height: 320px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: -20px auto 20px;
    }

    .pedestal-glow {
        display: none;
    }

    /* Section titles */
    .section-title {
        font-size: 1.9rem;
    }

    .section-tag {
        font-size: 0.72rem;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* AI Engine */
    .engine-section {
        padding: 60px 0;
    }

    .engine-left .glass-dashboard {
        max-width: 100%;
    }

    .glass-dashboard {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .glass-container {
        padding: 20px;
    }

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

    .chart-container {
        margin-top: 15px;
    }

    /* Ecosystem cards */
    .ecosystem-section {
        padding: 60px 0;
    }

    .platform-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .platform-card {
        height: 340px;
    }

    .card-content {
        padding: 25px;
    }

    .platform-title {
        font-size: 1.4rem;
    }

    .platform-desc {
        font-size: 0.85rem;
    }

    /* Why Daarix features */
    .why-section {
        padding: 60px 0;
    }

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

    .feature-card {
        padding: 22px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    /* Dominance */
    .dominance-section {
        padding: 60px 0;
    }

    .network-map-container {
        border-radius: 16px;
    }

    /* Smart Cities */
    .smartcity-section,
    .metaverse-section {
        padding: 60px 0;
    }

    /* Mini status cards – stack below image on mobile */
    .smartcity-left {
        position: relative;
    }

    .mini-status-card {
        position: relative;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }

    .smartcity-left .mini-status-card.top-right,
    .smartcity-left .mini-status-card.mid-right,
    .smartcity-left .mini-status-card.bot-right {
        position: relative;
        display: inline-flex;
        margin: 8px 8px 0 0;
        top: auto;
        right: auto;
        bottom: auto;
    }

    .smartcity-visual-frame,
    .metaverse-visual-frame {
        border-radius: 16px;
    }

    /* Investor section */
    .investor-section {
        padding: 60px 0;
    }

    .glass-form-container {
        padding: 24px;
        border-radius: 20px;
    }

    .glass-form-container h3 {
        font-size: 1.4rem;
    }

    .investor-form .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .partner-logos {
        gap: 16px 24px;
    }

    .logo-item {
        font-size: 0.8rem;
    }

    /* Close section */
    .close-section {
        padding: 80px 0;
    }

    .close-title {
        font-size: 2rem;
    }

    .close-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-container {
        padding: 40px 20px;
    }

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

    .footer-legal {
        justify-content: center;
    }
}

/* ─── Mobile Phone (≤ 480px) ─── */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: 1.9rem;
        letter-spacing: -0.3px;
    }

    .hero-desc {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 4px 10px;
        margin-bottom: 14px;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .metric-card {
        padding: 14px 10px;
    }

    .metric-number {
        font-size: 1.3rem;
    }

    .metric-label {
        font-size: 0.65rem;
    }

    /* 3D Canvas – smaller for phones */
    .hero-canvas-container {
        width: 280px;
        height: 280px;
    }

    /* Section typography */
    .section-title {
        font-size: 1.55rem;
    }

    .section-desc {
        font-size: 0.88rem;
    }

    .section-tag {
        font-size: 0.68rem;
    }

    /* Engine section */
    .engine-section {
        padding: 50px 0;
    }

    .dashboard-header {
        padding: 12px 14px;
    }

    .gauge-box {
        width: 80px;
        height: 80px;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .metric-widget {
        padding: 10px;
    }

    .widget-label {
        font-size: 0.7rem;
    }

    .widget-value {
        font-size: 1rem;
    }

    .cities-list-widget {
        margin-top: 12px;
    }

    .city-row {
        padding: 6px 0;
    }

    /* Ecosystem */
    .ecosystem-section {
        padding: 50px 0;
    }

    .platform-card {
        height: 300px;
        border-radius: 18px;
    }

    .card-content {
        padding: 20px;
    }

    .card-header-logo {
        gap: 6px;
    }

    .card-brand-name {
        font-size: 0.75rem;
    }

    .platform-title {
        font-size: 1.25rem;
    }

    .platform-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .explore-link {
        font-size: 0.78rem;
    }

    /* Features */
    .why-section {
        padding: 50px 0;
    }

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

    .feature-card {
        padding: 20px;
        border-radius: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 0.82rem;
    }

    /* Dominance */
    .dominance-section {
        padding: 50px 0;
    }

    .network-map-container {
        border-radius: 14px;
    }

    /* Smart cities & metaverse */
    .smartcity-section,
    .metaverse-section {
        padding: 50px 0;
    }

    .smartcity-visual-frame,
    .metaverse-visual-frame {
        border-radius: 14px;
    }

    .mini-status-card {
        padding: 10px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .mini-status-card h4 {
        font-size: 0.78rem;
    }

    .mini-status-card p {
        font-size: 0.68rem;
    }

    .status-card-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    /* Investor */
    .investor-section {
        padding: 50px 0;
    }

    .glass-form-container {
        padding: 20px;
        border-radius: 16px;
    }

    .glass-form-container h3 {
        font-size: 1.2rem;
    }

    .form-intro {
        font-size: 0.85rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 14px;
        font-size: 0.88rem;
        border-radius: 10px;
    }

    .form-textarea {
        min-height: 100px;
    }

    .collab-heading {
        font-size: 0.72rem;
    }

    .collab-subtext {
        font-size: 0.85rem;
    }

    .partner-logos {
        gap: 12px 20px;
    }

    .logo-item {
        font-size: 0.75rem;
    }

    /* Close section */
    .close-section {
        padding: 60px 0;
    }

    .close-title {
        font-size: 1.6rem;
    }

    .close-desc {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .close-glow {
        width: 300px;
        height: 300px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-container {
        padding: 30px 16px;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .footer-links li a {
        font-size: 0.85rem;
    }

    .footer-contact-info p {
        font-size: 0.85rem;
    }

    .social-icons {
        margin-top: 16px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .footer-bottom p,
    .footer-legal a {
        font-size: 0.78rem;
    }

    /* Buttons */
    .btn-large {
        padding: 14px 28px;
        font-size: 0.88rem;
    }

    .btn-full {
        padding: 14px;
        font-size: 0.92rem;
    }

    /* Link arrows */
    .link-arrow {
        font-size: 0.8rem;
    }

    /* Disable 3D tilt on touch devices – it conflicts with scroll */
    .platform-card {
        transform: none !important;
    }

    .tilt-spotlight-wrap {
        display: none;
    }
}

/* ========================================================================= */
/* LANGUAGE SWITCHER STYLING & RTL SUPPORT                                   */
/* ========================================================================= */

.lang-switcher,
.lang-switcher-mobile {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 3px;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', 'Cairo', sans-serif;
}

.lang-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background: #F59E0B;
    color: #0F0F12;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.5);
}

/* RTL Global Rules */
html[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
    text-align: right;
}

html[dir="rtl"] h1, 
html[dir="rtl"] h2, 
html[dir="rtl"] h3, 
html[dir="rtl"] h4, 
html[dir="rtl"] .nav-link, 
html[dir="rtl"] button,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .close-title {
    font-family: 'Alexandria', sans-serif;
}

html[dir="rtl"] .hero-left,
html[dir="rtl"] .engine-left,
html[dir="rtl"] .dominance-left,
html[dir="rtl"] .smartcity-right,
html[dir="rtl"] .metaverse-left,
html[dir="rtl"] .investor-left,
html[dir="rtl"] .platform-card,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .glass-form-container {
    text-align: right;
}

html[dir="rtl"] .explore-link,
html[dir="rtl"] .link-arrow {
    flex-direction: row-reverse;
    align-self: flex-start;
}

html[dir="rtl"] .explore-link i,
html[dir="rtl"] .link-arrow i {
    transform: scaleX(-1);
}

html[dir="rtl"] .explore-link:hover i,
html[dir="rtl"] .link-arrow:hover i {
    transform: scaleX(-1) translateX(5px);
}

/* Float status positions for RTL */
html[dir="rtl"] .mini-status-card {
    direction: rtl;
}

html[dir="rtl"] .mini-status-card.top-right {
    right: auto;
    left: -20px;
}

html[dir="rtl"] .mini-status-card.mid-right {
    right: auto;
    left: -40px;
}

html[dir="rtl"] .mini-status-card.bot-right {
    right: auto;
    left: -10px;
}


/* ═══════════════════════════════════════════════════════
   PREMIUM AI / FUTURISTIC ENHANCEMENTS - ALL PAGES
   ═══════════════════════════════════════════════════════ */

/* ─── Parallax Hero Banner ──────────────────────────────── */
.page-hero-parallax {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 120px 20px 80px;
}
.page-hero-parallax .parallax-bg {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.35) saturate(1.4);
    transform: scale(1.08);
    transition: transform 0.1s linear;
}
.page-hero-parallax .parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(139,92,246,0.35) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(255,107,53,0.15) 100%
    );
    z-index: 1;
}
.page-hero-parallax .parallax-content {
    position: relative;
    z-index: 2;
}
.page-hero-parallax h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(139,92,246,0.6);
}
.page-hero-parallax p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Neon scan line across hero */
.page-hero-parallax::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #b74fff, #8B5CF6, transparent);
    bottom: 0;
    z-index: 3;
    animation: scanLine 3s ease-in-out infinite;
}
@keyframes scanLine {
    0%,100%  { opacity: 0.5; transform: scaleX(0.6); }
    50%       { opacity: 1;   transform: scaleX(1); }
}

/* ─── Floating AI Tech Badges ───────────────────────────── */
.ai-badge-float {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.35);
    backdrop-filter: blur(12px);
    color: #b74fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}
.ai-badge-float::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #b74fff;
    box-shadow: 0 0 12px #b74fff;
    animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes badgePulse {
    0%,100%  { box-shadow: 0 0 12px rgba(139,92,246,0.2); }
    50%       { box-shadow: 0 0 28px rgba(183,79,255,0.45); }
}

/* ─── Holographic Image Cards ───────────────────────────── */
.holo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(139,92,246,0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.holo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(139,92,246,0.08) 0%,
        transparent 40%,
        rgba(255,107,53,0.06) 100%
    );
    z-index: 2;
    pointer-events: none;
}
.holo-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.06),
        transparent
    );
    z-index: 3;
    pointer-events: none;
    animation: holoShimmer 4s ease-in-out infinite;
}
@keyframes holoShimmer {
    0%   { left: -100%; }
    60%, 100% { left: 160%; }
}
.holo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(139,92,246,0.3);
    border-color: rgba(183,79,255,0.5);
}
.holo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.holo-card:hover img {
    transform: scale(1.06);
}
.holo-card .holo-label {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139,92,246,0.4);
    border-radius: 10px;
    padding: 8px 14px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 4;
}

/* ─── Split Image + Text Row ────────────────────────────── */
.premium-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
.premium-split.reverse { direction: rtl; }
.premium-split.reverse > * { direction: ltr; }
.premium-split-image {
    position: relative;
}
.premium-split-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(139,92,246,0.2);
}
.premium-split-image .img-glow {
    position: absolute;
    inset: -20px;
    border-radius: 32px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.2), transparent 70%);
    pointer-events: none;
    z-index: -1;
}
.premium-split-text { }
.premium-split-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}
.premium-split-text p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 1.05rem;
}
.premium-split-text .split-stat {
    display: flex;
    gap: 32px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.split-stat-item {
    text-align: center;
}
.split-stat-item .stat-num {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #b74fff, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.split-stat-item .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .premium-split { grid-template-columns: 1fr; gap: 30px; }
    .premium-split.reverse { direction: ltr; }
}

/* ─── Circuit / Data Background Pattern ─────────────────── */
.circuit-bg {
    position: relative;
}
.circuit-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139,92,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,92,246,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}
.circuit-bg > * { position: relative; z-index: 1; }

/* ─── Glowing Section Divider ───────────────────────────── */
.neon-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.6), rgba(183,79,255,0.4), transparent);
    margin: 0;
    position: relative;
}
.neon-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    border-radius: 5px;
    background: rgba(139,92,246,0.4);
    filter: blur(6px);
}

/* ─── Tech Feature Grid ─────────────────────────────────── */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    padding: 40px 0;
}
.tech-card {
    background: rgba(15,15,22,0.8);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
}
.tech-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #b74fff, #ff3db8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.tech-card:hover::before { transform: scaleX(1); }
.tech-card:hover {
    border-color: rgba(183,79,255,0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(139,92,246,0.2);
}
.tech-card .tc-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    display: block;
}
.tech-card .tc-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.tech-card .tc-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}
.tech-card .tc-badge {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.3);
    color: #b74fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ─── Animated Number Ticker ────────────────────────────── */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 40px;
    background: rgba(139,92,246,0.04);
    border-top: 1px solid rgba(139,92,246,0.15);
    border-bottom: 1px solid rgba(139,92,246,0.15);
}
.stats-strip .stat-item {
    text-align: center;
    position: relative;
}
.stats-strip .stat-item::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(139,92,246,0.25);
}
.stats-strip .stat-item:last-child::after { display: none; }
.stats-strip .s-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #b74fff, #8B5CF6, #ff3db8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}
.stats-strip .s-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    display: block;
}

/* ─── Image Mosaic (About page) ─────────────────────────── */
.img-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.img-mosaic .mosaic-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.img-mosaic .mosaic-sm {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.img-mosaic img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.img-mosaic .mosaic-main:hover img,
.img-mosaic .mosaic-sm:hover img { transform: scale(1.06); }
@media (max-width: 600px) {
    .img-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
    .img-mosaic .mosaic-main { grid-column: 1; grid-row: auto; aspect-ratio: 16/9; }
}

/* ─── Futuristic Timeline ───────────────────────────────── */
.timeline-wrap {
    position: relative;
    padding-left: 40px;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 14px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, #8B5CF6, #b74fff, transparent);
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 24px 28px;
    background: rgba(15,15,22,0.7);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px; top: 28px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #8B5CF6;
    border: 3px solid rgba(139,92,246,0.3);
    box-shadow: 0 0 16px rgba(139,92,246,0.6);
}
.timeline-item:hover {
    border-color: rgba(183,79,255,0.4);
    box-shadow: 0 10px 40px rgba(139,92,246,0.15);
    transform: translateX(6px);
}
.timeline-item .tl-phase {
    font-size: 0.72rem;
    font-weight: 700;
    color: #b74fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.timeline-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.timeline-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
}
.timeline-item .tl-num {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(139,92,246,0.1);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    pointer-events: none;
}

/* ─── Services Page — Premium Card Layout ───────────────── */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    padding: 40px 0;
}
.spg-card {
    background: rgba(15,15,22,0.85);
    border: 1px solid rgba(139,92,246,0.18);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(16px);
    position: relative;
}
.spg-card:hover {
    transform: translateY(-8px);
    border-color: rgba(183,79,255,0.5);
    box-shadow: 0 30px 80px rgba(139,92,246,0.25);
}
.spg-card .spg-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.spg-card:hover .spg-img { transform: scale(1.05); }
.spg-card .spg-body {
    padding: 28px 24px;
}
.spg-card .spg-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(183,79,255,0.2));
    border: 1px solid rgba(139,92,246,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 0 20px rgba(139,92,246,0.2);
}
.spg-card .spg-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.spg-card .spg-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.7;
    margin-bottom: 20px;
}
.spg-card .spg-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.spg-card .spg-tag {
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(139,92,246,0.1);
    border: 1px solid rgba(139,92,246,0.25);
    color: #b74fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.spg-card .spg-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #8B5CF6;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: gap 0.3s ease, color 0.3s ease;
    text-decoration: none;
}
.spg-card .spg-cta:hover { gap: 14px; color: #b74fff; }

/* ─── Contact Page Glassmorphism Form ───────────────────── */
.glass-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: start;
}
@media (max-width: 900px) {
    .glass-contact-wrap { grid-template-columns: 1fr; }
}
.contact-info-glass {
    background: rgba(15,15,22,0.7);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.contact-info-glass::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
    pointer-events: none;
}
.contact-info-glass h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.contact-info-glass .desc-text {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin-bottom: 32px;
    line-height: 1.7;
}
.cig-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 18px 20px;
    border-radius: 16px;
    background: rgba(139,92,246,0.06);
    border: 1px solid rgba(139,92,246,0.12);
    transition: all 0.3s ease;
}
.cig-item:hover {
    background: rgba(139,92,246,0.12);
    border-color: rgba(183,79,255,0.3);
    transform: translateX(4px);
}
.cig-item .cig-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(183,79,255,0.2));
    border: 1px solid rgba(139,92,246,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #b74fff;
    flex-shrink: 0;
}
.cig-item .cig-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.cig-item .cig-content p,
.cig-item .cig-content span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
/* Premium Contact Form */
.glass-form-premium {
    background: rgba(15,15,22,0.75);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 24px;
    padding: 40px 36px;
    backdrop-filter: blur(20px);
}
.glass-form-premium h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
}
.gfp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
@media (max-width: 600px) { .gfp-row { grid-template-columns: 1fr; } }
.gfp-field {
    position: relative;
}
.gfp-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.gfp-field input,
.gfp-field select,
.gfp-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}
.gfp-field input:focus,
.gfp-field select:focus,
.gfp-field textarea:focus {
    border-color: rgba(183,79,255,0.6);
    background: rgba(139,92,246,0.08);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.gfp-field input::placeholder,
.gfp-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.gfp-field textarea { resize: vertical; min-height: 130px; }
.gfp-field select option { background: #1a1a2e; color: #fff; }
.gfp-submit {
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #8B5CF6, #b74fff, #ff3db8);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
}
.gfp-submit::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.gfp-submit:hover::after { left: 100%; }
.gfp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139,92,246,0.4);
}

/* ─── Properties Page — AI filter bar ──────────────────── */
.ai-filter-bar {
    background: rgba(15,15,22,0.8);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 20px;
    padding: 24px 28px;
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.ai-filter-bar::before {
    content: 'AI POWERED SEARCH';
    position: absolute;
    top: 10px; right: 16px;
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(183,79,255,0.5);
    letter-spacing: 2px;
}
.ai-filter-bar .afb-top {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}
.ai-filter-bar .afb-search {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(139,92,246,0.25);
    border-radius: 12px;
    padding: 12px 18px;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Space Grotesk', sans-serif;
    outline: none;
    transition: all 0.3s;
}
.ai-filter-bar .afb-search:focus {
    border-color: rgba(183,79,255,0.6);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}
.ai-filter-bar .afb-search::placeholder { color: rgba(255,255,255,0.3); }
.ai-filter-bar .afb-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #8B5CF6, #b74fff);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: 'Space Grotesk', sans-serif;
}
.ai-filter-bar .afb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,92,246,0.4);
}
.ai-filter-bar .afb-selects {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ai-filter-bar .afb-select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: 10px;
    padding: 10px 16px;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
    appearance: none;
    padding-right: 30px;
}
.ai-filter-bar .afb-select:focus {
    border-color: rgba(183,79,255,0.5);
    color: #fff;
}
.ai-filter-bar .afb-select option { background: #1a1a2e; }

/* ─── Property Card 2.0 ─────────────────────────────────── */
.prop-card-v2 {
    background: rgba(15,15,22,0.85);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    position: relative;
}
.prop-card-v2:hover {
    border-color: rgba(183,79,255,0.4);
    transform: translateY(-8px);
    box-shadow: 0 24px 70px rgba(139,92,246,0.2);
}
.prop-card-v2 .pv2-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}
.prop-card-v2 .pv2-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.prop-card-v2:hover .pv2-img img { transform: scale(1.08); }
.prop-card-v2 .pv2-badge {
    position: absolute;
    top: 12px; left: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(139,92,246,0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}
.prop-card-v2 .pv2-tag {
    position: absolute;
    top: 12px; right: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}
.prop-card-v2 .pv2-body {
    padding: 20px;
}
.prop-card-v2 .pv2-loc {
    font-size: 0.78rem;
    color: #8B5CF6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.prop-card-v2 .pv2-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}
.prop-card-v2 .pv2-specs {
    display: flex;
    gap: 14px;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    margin-bottom: 14px;
}
.prop-card-v2 .pv2-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 14px;
}
.prop-card-v2 .pv2-price {
    font-size: 1.15rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8B5CF6, #b74fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.prop-card-v2 .pv2-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ─── Floating Orb Decoration ───────────────────────────── */
.section-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
    animation: orbDrift 12s ease-in-out infinite;
}
.section-orb.orb-purple { background: #8B5CF6; }
.section-orb.orb-pink   { background: #ff3db8; }
.section-orb.orb-orange { background: #ff6b35; }
@keyframes orbDrift {
    0%,100%  { transform: translate(0,0) scale(1); }
    33%       { transform: translate(20px,-15px) scale(1.05); }
    66%       { transform: translate(-10px,20px) scale(0.97); }
}

/* ─── Testimonial / Trust Strip ─────────────────────────── */
.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    border-top: 1px solid rgba(139,92,246,0.12);
    border-bottom: 1px solid rgba(139,92,246,0.12);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    font-weight: 500;
}
.trust-item i { color: #8B5CF6; font-size: 1.1rem; }
.trust-item strong { color: rgba(255,255,255,0.8); }

/* ─── Pulsing AI Eye / Core visual ─────────────────────── */
.ai-core-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}
.ai-core-visual .ai-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(139,92,246,0.25);
    animation: ringExpand 3s ease-in-out infinite;
}
.ai-core-visual .ai-ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.ai-core-visual .ai-ring:nth-child(2) { width: 75%; height: 75%; animation-delay: 0.5s; border-color: rgba(183,79,255,0.3); }
.ai-core-visual .ai-ring:nth-child(3) { width: 50%; height: 50%; animation-delay: 1s; border-color: rgba(255,61,184,0.25); }
.ai-core-visual .ai-core {
    position: relative;
    z-index: 10;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #b74fff, #8B5CF6);
    box-shadow: 0 0 40px rgba(183,79,255,0.6), 0 0 80px rgba(139,92,246,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
@keyframes ringExpand {
    0%,100%  { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.04); opacity: 1; }
}

/* ─── FAQ Premium ───────────────────────────────────────── */
.faq-premium {
    max-width: 780px;
    margin: 0 auto;
}
.faq-premium .faq-item-p {
    background: rgba(15,15,22,0.7);
    border: 1px solid rgba(139,92,246,0.15);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-premium .faq-item-p:hover {
    border-color: rgba(183,79,255,0.35);
}
.faq-premium .faq-q {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    gap: 16px;
}
.faq-premium .faq-q .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    color: #8B5CF6;
    font-size: 0.9rem;
}
.faq-premium .faq-item-p.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(139,92,246,0.3);
    color: #b74fff;
}
.faq-premium .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-premium .faq-item-p.open .faq-a {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ─── Page sections common padding ─────────────────────── */
.premium-section {
    padding: 80px 0;
    position: relative;
}
.premium-section .container {
    position: relative;
    z-index: 1;
}

/* ─── Responsive tweaks ─────────────────────────────────── */
@media (max-width: 768px) {
    .stats-strip { gap: 30px; padding: 40px 20px; }
    .stats-strip .stat-item::after { display: none; }
    .services-premium-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .timeline-wrap { padding-left: 28px; }
    .timeline-wrap::before { left: 10px; }
    .timeline-item::before { left: -26px; }
    .page-hero-parallax { min-height: 320px; padding: 100px 20px 60px; }
}

/* =========================================================================
   SERVICES PREMIUM GRID CARDS
   ======================================================================= */
.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 20px;
}
.spg-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}
.spg-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139,92,246,0.4);
    box-shadow: 0 30px 80px rgba(139,92,246,0.15), 0 0 0 1px rgba(139,92,246,0.2);
}
.spg-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.spg-card:hover .spg-img {
    transform: scale(1.05);
}
.spg-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.spg-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.spg-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.5px;
}
.spg-desc {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}
.spg-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.spg-tag {
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.25);
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}
.spg-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B5CF6;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s, gap 0.2s;
    margin-top: auto;
}
.spg-cta:hover {
    color: #b74fff;
    gap: 12px;
}

/* =========================================================================
   CONTACT GLASS WRAP & FORM
   ======================================================================= */
.glass-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: start;
}

/* Left: info panel */
.contact-info-glass {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 32px;
    position: sticky;
    top: 100px;
}
.contact-info-glass h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}
.contact-info-glass .desc-text {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.cig-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cig-item:last-of-type {
    border-bottom: none;
}
.cig-icon {
    width: 44px;
    height: 44px;
    background: rgba(139,92,246,0.15);
    border: 1px solid rgba(139,92,246,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 1rem;
    flex-shrink: 0;
}
.cig-content h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cig-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}
.cig-content span {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
}

/* Right: form */
.glass-form-premium {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
}
.glass-form-premium h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    font-family: 'Space Grotesk', sans-serif;
}
.gfp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.gfp-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gfp-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gfp-field input,
.gfp-field select,
.gfp-field textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Space Grotesk', 'Cairo', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    width: 100%;
}
.gfp-field input:focus,
.gfp-field select:focus,
.gfp-field textarea:focus {
    border-color: rgba(139,92,246,0.6);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
    background: rgba(139,92,246,0.06);
}
.gfp-field input::placeholder,
.gfp-field textarea::placeholder {
    color: rgba(255,255,255,0.25);
}
.gfp-field select option {
    background: #1a1a2e;
    color: #fff;
}
.gfp-field textarea {
    resize: vertical;
    min-height: 120px;
}
.gfp-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8B5CF6, #b74fff);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    letter-spacing: 0.5px;
}
.gfp-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(139,92,246,0.35);
}
.gfp-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* =========================================================================
   FAQ PREMIUM
   ======================================================================= */
.faq-premium {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item-p {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq-item-p.faq-open {
    border-color: rgba(139,92,246,0.3);
    background: rgba(139,92,246,0.05);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}
.faq-q span {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    font-family: 'Space Grotesk', 'Cairo', sans-serif;
    line-height: 1.4;
}
.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(139,92,246,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a78bfa;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: background 0.2s;
}
.faq-item-p.faq-open .faq-icon {
    background: rgba(139,92,246,0.3);
}
.faq-a {
    padding: 0 24px;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* =========================================================================
   AI FILTER BAR (Properties page)
   ======================================================================= */
.ai-filter-bar {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 32px;
}
.afb-top {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}
.afb-search {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    font-family: 'Space Grotesk', 'Cairo', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.afb-search:focus {
    border-color: rgba(139,92,246,0.5);
    background: rgba(139,92,246,0.06);
}
.afb-search::placeholder { color: rgba(255,255,255,0.3); }
.afb-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #8B5CF6, #b74fff);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.afb-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,92,246,0.3);
}
.afb-selects {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.afb-select {
    flex: 1;
    min-width: 140px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: rgba(255,255,255,0.7);
    font-family: 'Space Grotesk', 'Cairo', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
    cursor: pointer;
}
.afb-select:focus {
    border-color: rgba(139,92,246,0.5);
}
.afb-select option { background: #1a1a2e; }

/* =========================================================================
   IMAGE MOSAIC GRID
   ======================================================================= */
.img-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}
.mosaic-main {
    grid-column: 1 / -1;
    border-radius: 20px;
    overflow: hidden;
    min-height: 220px;
    position: relative;
}
.mosaic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 220px;
}
.mosaic-sm {
    border-radius: 16px;
    overflow: hidden;
    min-height: 140px;
    position: relative;
}
.mosaic-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 140px;
}
.holo-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(139,92,246,0.3);
    color: #a78bfa;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* =========================================================================
   SPLIT SECTION STAT ROW
   ======================================================================= */
.split-stat {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.split-stat-item {
    text-align: center;
}
.split-stat-item .stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #8B5CF6, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.split-stat-item .stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* =========================================================================
   TRUST STRIP
   ======================================================================= */
.trust-strip {
    background: rgba(139,92,246,0.06);
    border-top: 1px solid rgba(139,92,246,0.15);
    border-bottom: 1px solid rgba(139,92,246,0.15);
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-family: 'Space Grotesk', sans-serif;
}
.trust-item i {
    color: #8B5CF6;
    font-size: 1rem;
}
.trust-item strong {
    color: #fff;
}

/* =========================================================================
   ADDITIONAL RESPONSIVE OVERRIDES
   ======================================================================= */
@media (max-width: 900px) {
    .services-premium-grid { grid-template-columns: 1fr 1fr; }
    .glass-contact-wrap { grid-template-columns: 1fr; }
    .contact-info-glass { position: static; }
}
@media (max-width: 600px) {
    .services-premium-grid { grid-template-columns: 1fr; }
    .gfp-row { grid-template-columns: 1fr; }
    .afb-top { flex-wrap: wrap; }
    .afb-search { min-width: 100%; }
    .trust-strip { gap: 16px; padding: 16px 20px; }
    .split-stat { gap: 12px; }
    .img-mosaic { grid-template-columns: 1fr; }
    .mosaic-main, .mosaic-sm { grid-column: 1; }
    .glass-form-premium { padding: 24px 20px; }
    .contact-info-glass { padding: 28px 20px; }
}




