/* 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');

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: #FF6B35;
    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: #E55A2B;
    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(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

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

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

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

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

/* 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);
}

.display-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    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;
}

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

/* Toggle Switch */
.toggle-switch {
    width: 36px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-handle {
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.display-toggle-btn:hover .toggle-switch {
    background: rgba(255, 255, 255, 0.3);
}

/* Toggle Button Text Display */
.display-toggle-btn .toggle-text {
    display: inline;
}

.display-toggle-btn .toggle-text-short {
    display: none;
}

/* 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, #00ff88, 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, #00ff88, 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: #00ff88;
    box-shadow: 0 0 20px #00ff88;
    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: #00ff88;
    box-shadow: 0 0 20px #00ff88;
    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: #65c643;
    text-align: justify;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #65c643;
    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: #00ff88;
    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, #00ff88, #00cc6a);
    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: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    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, #00ff88, 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,
    .display-toggle-btn {
        font-size: 11px;
        padding: 6px 12px;
        white-space: nowrap;
    }

    .display-toggle-btn {
        flex-direction: row;
        gap: 6px;
    }

    .display-toggle-btn .toggle-text {
        display: none;
    }

    .display-toggle-btn .toggle-text-short {
        display: inline;
    }

    .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: #65c643;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.6rem;
        margin-bottom: 10px;
        text-align: center;
        order: 2;
        margin-left: 40px;
        margin-right: 40px;
        color: #65c643;
        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,
    .display-toggle-btn {
        padding: 5px 10px;
        font-size: 10px;
        white-space: nowrap;
    }

    .display-toggle-btn .toggle-text {
        display: none;
    }

    .display-toggle-btn .toggle-text-short {
        display: inline;
    }

    .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: #65c643;
        font-weight: 900;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
        text-align: center;
        order: 2;
        margin-left: 8px;
        margin-right: 8px;
        color: #65c643;
        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,
    .display-toggle-btn {
        padding: 4px 8px;
        font-size: 9px;
        white-space: nowrap;
    }

    .display-toggle-btn .toggle-text {
        display: none;
    }

    .display-toggle-btn .toggle-text-short {
        display: inline;
    }

    .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) */
.nav-logo {
    display: flex;
    align-items: center;
    justify-self: start;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 12px;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: 
        drop-shadow(0 0 15px rgba(139, 92, 246, 0.4))
        drop-shadow(0 0 30px rgba(139, 92, 246, 0.2))
        drop-shadow(0 0 45px rgba(139, 92, 246, 0.1));
    animation: logoGlow 4s ease-in-out infinite;
    border-radius: 8px;
}

.nav-logo:hover .logo-image {
    transform: scale(1.15) translateY(-3px);
    filter: 
        drop-shadow(0 0 25px rgba(139, 92, 246, 0.7))
        drop-shadow(0 0 50px rgba(139, 92, 246, 0.4))
        drop-shadow(0 0 75px rgba(139, 92, 246, 0.2));
}

@keyframes logoGlow {
    0%, 100% {
        filter: 
            drop-shadow(0 0 15px rgba(139, 92, 246, 0.4))
            drop-shadow(0 0 30px rgba(139, 92, 246, 0.2))
            drop-shadow(0 0 45px rgba(139, 92, 246, 0.1));
        transform: translateY(0px);
    }
    25% {
        filter: 
            drop-shadow(0 0 20px rgba(139, 92, 246, 0.5))
            drop-shadow(0 0 40px rgba(139, 92, 246, 0.3))
            drop-shadow(0 0 60px rgba(139, 92, 246, 0.15));
        transform: translateY(-1px);
    }
    50% {
        filter: 
            drop-shadow(0 0 25px rgba(139, 92, 246, 0.6))
            drop-shadow(0 0 50px rgba(139, 92, 246, 0.4))
            drop-shadow(0 0 75px rgba(139, 92, 246, 0.2));
        transform: translateY(-3px);
    }
    75% {
        filter: 
            drop-shadow(0 0 20px rgba(139, 92, 246, 0.5))
            drop-shadow(0 0 40px rgba(139, 92, 246, 0.3))
            drop-shadow(0 0 60px rgba(139, 92, 246, 0.15));
        transform: translateY(-1px);
    }
}

/* 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;
    }
    
    .hamburger {
        display: flex;
    }
}
/* ─── 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, #FF6B35, 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, #FF6B35);
    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: #FF6B35;
    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: #00ff88;
    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: #FF6B35;
    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: #00ff88;
}

.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: #00ff88;
    background: rgba(0, 255, 136, 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: #00ff88;
}

.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(0, 255, 136, 0.03), transparent 50%);
    animation: rotateBg 30s linear infinite;
}

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

/* 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(0, 255, 136, 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, #00ff88, 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: #00ff88;
}

.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: #00ff88;
    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: #FF6B35;
    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: #FF6B35;
}

.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(ellipse at center, rgba(139, 92, 246, 0.1), 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 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, .team-member, .faq-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border-radius: 24px !important;
    position: relative;
    overflow: hidden;
}

.mission-card:hover, .service-card:hover, .team-member:hover, .faq-item:hover {
    transform: translateY(-10px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(139, 92, 246, 0.1) !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%, #FF6B35 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/smart-city.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/smart-city.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%);
    }
}

