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

/* CSS Custom Properties */
:root {
    --primary-color: #6B5FFF;
    --secondary-color: #FF5F6B;
    --accent-color: #5FFFB5;
    --dark-bg: #0A0B0D;
    --dark-surface: #1A1B1F;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A3A7;
    --border-color: #2A2B2F;
    --gradient-1: linear-gradient(135deg, #6B5FFF 0%, #FF5F6B 100%);
    --gradient-2: linear-gradient(135deg, #5FFFB5 0%, #6B5FFF 100%);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 11, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-tag {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-cta {
    color: var(--accent-color);
    font-weight: 600;
}

.nav-cta:hover {
    color: var(--accent-color);
    opacity: 0.8;
}

.wallet-btn {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 95, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Account for fixed navbar when using in-page anchors */
section[id] {
    scroll-margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(107, 95, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 95, 107, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Ensure hero text block lays out well and doesn't overflow */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 680px;
    min-width: 0;
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback for browsers that don't support background-clip: text */
    background-size: 100%;
    display: inline-block;
}

/* Fallback for older browsers */
@supports not (-webkit-background-clip: text) {
    .gradient-text {
        color: #6B5FFF;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 3.2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Avoid cramped wrapping while keeping mobile-friendly width */
.hero-actions .btn {
    min-height: 44px;
    padding-inline: 1.1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    line-height: 1.1;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 95, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-color: #5865F2 !important;
    color: #5865F2 !important;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: #5865F2 !important;
    color: white !important;
    border-color: #5865F2 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.discord-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discord-icon svg {
    width: 100%;
    height: 100%;
    max-width: 18px;
    max-height: 18px;
    display: block;
}

.btn-discord:hover .discord-icon {
    transform: scale(1.1);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    width: 100%;
    justify-content: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-secondary);
}

/* Cities Carousel */
.cities-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 60px;
    overflow: hidden;
    background: rgba(26, 27, 31, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
}

.cities-track {
    display: flex;
    gap: 2rem;
    animation: scroll-cities 45s linear infinite;
    white-space: nowrap;
    align-items: center;
    height: 100%;
}

.cities-track:hover {
    animation-play-state: paused;
}

.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.carousel-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    text-align: center;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(107, 95, 255, 0.1) 0%, rgba(255, 95, 107, 0.1) 100%);
    border: 1px solid rgba(107, 95, 255, 0.2);
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.city-flag {
    font-size: 1.25rem;
}

.city-name {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.city-item:hover::before {
    left: 100%;
}

.city-item:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(107, 95, 255, 0.3);
}

.carousel-overlay-left,
.carousel-overlay-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 1;
}

.carousel-overlay-left {
    left: 0;
    background: linear-gradient(to right, rgba(26, 27, 31, 0.8) 0%, transparent 100%);
}

.carousel-overlay-right {
    right: 0;
    background: linear-gradient(to left, rgba(26, 27, 31, 0.8) 0%, transparent 100%);
}

@keyframes scroll-cities {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Add a subtle glow effect to the carousel */
.cities-carousel::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(107, 95, 255, 0.2) 0%, rgba(255, 95, 107, 0.2) 50%, rgba(95, 255, 181, 0.2) 100%);
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0.3;
    z-index: -1;
    animation: carousel-glow 8s ease-in-out infinite;
}

@keyframes carousel-glow {
    0%, 100% { 
        opacity: 0.2; 
        filter: blur(20px);
    }
    50% { 
        opacity: 0.4; 
        filter: blur(25px);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

.gus-avatar {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(107, 95, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.gus-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.crypto-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(107, 95, 255, 0.2);
}

.badge img {
    width: 30px;
    height: 30px;
}

.badge span {
    font-weight: 600;
    font-size: 1rem;
}

.floating-card {
    position: relative;
    width: 400px;
    height: 500px;
    background: var(--dark-surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

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

.card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.crypto-icons {
    display: flex;
    gap: 2rem;
}

.crypto-icons img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--dark-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(107, 95, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.feature-card p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(107, 95, 255, 0.1) 0%, rgba(255, 95, 107, 0.1) 100%);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.email-signup {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* How It Works - Tenants */
.how-it-works {
    padding: 80px 0;
    background: var(--dark-surface);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Properties Section */
.properties {
    padding: 80px 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.property-image {
    height: 200px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.property-price {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    margin-bottom: 0.5rem;
}

.property-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.property-features span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.properties-cta {
    text-align: center;
}

/* About Section - Redesigned */
.about {
    padding: 80px 0;
    background: var(--dark-surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* CTA Section Updates */
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--dark-surface);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Property Owners Page Styles */
.hero-owners {
    background: linear-gradient(135deg, rgba(95, 255, 181, 0.05) 0%, rgba(107, 95, 255, 0.05) 100%);
}

.owner-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.owner-benefits-card {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item .check {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--dark-surface);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(95, 255, 181, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* How It Works - Owners */
.how-it-works-owners {
    padding: 80px 0;
}

.owner-steps {
    max-width: 800px;
    margin: 0 auto;
}

.owner-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.owner-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2rem;
    top: 4rem;
    bottom: -2rem;
    width: 2px;
    background: var(--border-color);
}

.step-icon {
    font-size: 2rem;
    width: 64px;
    height: 64px;
    background: var(--dark-surface);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--dark-surface);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--dark-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price {
    margin: 2rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.revenue-model {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.revenue-model h3 {
    margin-bottom: 1rem;
}

.revenue-model p {
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--dark-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
}

/* CTA Owners */
.cta-owners {
    background: linear-gradient(135deg, rgba(95, 255, 181, 0.1) 0%, rgba(107, 95, 255, 0.1) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 11, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--border-color);
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateY(0);
    }
    
    .nav-menu .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-visual {
        order: 1; /* show text first on mobile */
        margin-bottom: 2rem;
        transform: none !important;
    }
    
    .gus-avatar {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .crypto-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        margin-top: 2rem;
    }

    /* Mobile Cities Carousel */
    .cities-carousel {
        max-width: calc(100% + 40px);
        height: 50px;
        margin: 0 -20px;
        border-radius: 25px;
    }

    .carousel-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .cities-track {
        gap: 1rem;
        animation-duration: 35s;
    }

    .city-item {
        padding: 0.375rem 1rem;
        font-size: 0.75rem;
        border-radius: 20px;
    }

    .city-flag {
        font-size: 0.9rem;
    }

    .city-name {
        font-size: 0.7rem;
    }

    .carousel-overlay-left,
    .carousel-overlay-right {
        width: 40px;
    }

    /* Search Form Mobile Optimization */
    .search-form {
        padding: 1.5rem;
        margin: 0 -10px 2rem;
        border-radius: 15px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: stretch;
    }
    
    .form-group {
        min-width: auto;
        flex: none;
    }
    
    .city-group {
        min-width: auto;
        flex: none;
    }
    
    .stay-type-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stay-btn {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }

    /* Property Cards Mobile */
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-card {
        margin: 0 -10px;
    }

    .email-signup {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
        text-align: center;
    }

    .owner-step {
        flex-direction: column;
        text-align: center;
    }

    .owner-step::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cities-carousel {
        height: 45px;
        border-radius: 25px;
    }

    .carousel-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .cities-track {
        gap: 0.75rem;
        animation-duration: 30s;
    }

    .city-item {
        padding: 0.25rem 0.75rem;
        font-size: 0.7rem;
        border-radius: 20px;
    }

    .city-flag {
        font-size: 0.8rem;
    }

    .city-name {
        font-size: 0.6rem;
    }

    .carousel-overlay-left,
    .carousel-overlay-right {
        width: 30px;
    }
}

/* Ensure Select2 respects container width */
.select2-container {
    width: 100% !important;
}

.mobile-menu-toggle span {
    height: 3px;
}

/* Native date input – dark styling to match search form */
.search-form input[type="date"] {
    color-scheme: dark; /* hint browsers to draw controls dark */
    color: #e2e8f0;
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Chrome / Edge */
.search-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(1.2);
    opacity: 0.85;
    cursor: pointer;
}
.search-form input[type="date"]::-webkit-datetime-edit { color: #e2e8f0; }
.search-form input[type="date"]::-webkit-datetime-edit-fields-wrapper { color: #e2e8f0; }
.search-form input[type="date"]::-webkit-datetime-edit-text { color: #94a3b8; }
.search-form input[type="date"]::-webkit-datetime-edit-month-field { color: #e2e8f0; }
.search-form input[type="date"]::-webkit-datetime-edit-day-field { color: #e2e8f0; }
.search-form input[type="date"]::-webkit-datetime-edit-year-field { color: #e2e8f0; }

/* Firefox respects color-scheme; keep focus styles consistent */
.search-form input[type="date"]:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

/* Flatpickr dark theme overrides (search form) */
.search-section .flatpickr-calendar,
.search-form .flatpickr-calendar {
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: #e2e8f0;
    backdrop-filter: blur(8px);
    z-index: 10060;
}

.search-section .flatpickr-calendar.open,
.search-form .flatpickr-calendar.open {
    z-index: 10060;
}

.search-section .flatpickr-months,
.search-form .flatpickr-months,
.search-section .flatpickr-weekdays,
.search-form .flatpickr-weekdays {
    background: transparent;
}

.search-section .flatpickr-weekday,
.search-form .flatpickr-weekday {
    color: #94a3b8;
}

.search-section .flatpickr-current-month,
.search-form .flatpickr-current-month {
    color: #e2e8f0;
}

.search-section .flatpickr-current-month .flatpickr-monthDropdown-months,
.search-form .flatpickr-current-month .flatpickr-monthDropdown-months {
    background: rgba(15, 23, 42, 0.96);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.search-section .flatpickr-current-month .numInput.cur-year,
.search-form .flatpickr-current-month .numInput.cur-year,
.search-section .flatpickr-current-month input.cur-year,
.search-form .flatpickr-current-month input.cur-year {
    background: rgba(15, 23, 42, 0.6);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
}

.search-section .flatpickr-day,
.search-form .flatpickr-day {
    color: #e2e8f0;
    border-radius: 8px;
}

.search-section .flatpickr-day:hover,
.search-form .flatpickr-day:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-section .flatpickr-day.prevMonthDay,
.search-form .flatpickr-day.prevMonthDay,
.search-section .flatpickr-day.nextMonthDay,
.search-form .flatpickr-day.nextMonthDay,
.search-section .flatpickr-day.disabled,
.search-form .flatpickr-day.disabled {
    color: #64748b;
}

.search-section .flatpickr-day.today:not(.selected),
.search-form .flatpickr-day.today:not(.selected) {
    border: 1px solid #00d4ff;
}

.search-section .flatpickr-day.selected,
.search-form .flatpickr-day.selected,
.search-section .flatpickr-day.startRange,
.search-form .flatpickr-day.startRange,
.search-section .flatpickr-day.endRange,
.search-form .flatpickr-day.endRange {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: #ffffff;
}

.search-section .flatpickr-day.inRange,
.search-form .flatpickr-day.inRange {
    background: rgba(0, 212, 255, 0.15);
    color: #e2e8f0;
}
