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

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

body {
    font-family: 'Inter', 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.06) 1px, transparent 1px) 0 0 / 28px 28px,
        linear-gradient(90deg, rgba(255,255,255,0.06) 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: 'Inter', 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: 'Inter', 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: 20px 20px 20px;
        text-align: center;
        gap: 30px;
        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: 20px;
    }

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

    .hero-subline {
        text-align: center;
    }


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

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

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

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

    .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: 400px;
        height: 400px;
        margin-bottom: 0;
        padding: 0px;
        margin: 10px auto;
    }

    .hero-video {
        width: 400px;
        height: 400px;
        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: 320px;
        height: 320px;
        margin: 10px auto;
        padding: 0;
    }

    .hero-visual {
        margin-top: -20px;
        width: 100%;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        max-width: 320px;
        max-height: 320px;
        mix-blend-mode: screen;
        margin-bottom: 10px;
    }

    .hero-bottom-text {
        margin-top: -30px;
        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: 'Raleway', 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 */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 1100;
    padding: 8px; /* larger hit area */
    border-radius: 8px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* 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;
    }
}
/* Mobile dropdown menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #151515;
    border-top: 1px solid #2a2a2a;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1050;
}

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

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #2a2a2a;
}

.mobile-close {
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.mobile-links {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    display: grid;
    justify-items: center;
}

.mobile-links .nav-link {
    display: block;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid #1f1f1f;
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: #fff;
    transition: color .2s ease, background .2s ease;
}

.mobile-links .nav-link:hover {
    background: #1b1b1b;
    color: #b9a6ff;
}

.mobile-auth {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid #2a2a2a;
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s 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);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
    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, float 6s ease-in-out 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: 'Inter', 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: 'Inter', 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: 'Inter', sans-serif;
}

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

.property-dates {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    font-family: 'Inter', 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: 'Inter', sans-serif;
}

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

.contact-item {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-family: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', 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;
    }
}