:root {
    --primary-nomad: #06b6d4;
    --secondary-nomad: #0891b2;
    --accent-nomad: #22d3ee;
    --accent-purple: #8b5cf6;
    --nomad-gradient: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
    --dark-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-dark: #1f2937;
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-nomad: rgba(6, 182, 212, 0.3);
    --shadow-nomad: 0 20px 60px rgba(6, 182, 212, 0.2);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-nomad);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nomad-gradient);
    transition: width 0.3s;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-nomad);
}

.cta-nav {
    background: var(--nomad-gradient);
    color: var(--text-primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-nomad);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--primary-nomad);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    animation: nomadPulse 10s ease-in-out infinite;
}

@keyframes nomadPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.85;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(6, 182, 212, 0.03) 2px,
            rgba(6, 182, 212, 0.03) 4px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.highlight-nomad {
    background: var(--nomad-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(20deg);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-nomad);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--nomad-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-nomad);
    color: var(--accent-nomad);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-nomad {
    background: var(--nomad-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-nomad);
}

.btn-nomad:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(6, 182, 212, 0.3);
}

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

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--accent-nomad);
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.arrow-down {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-nomad);
    color: var(--accent-nomad);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Nomad Locations */
.nomad-locations {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f0f14 100%);
}

.location-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.location-filter {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    color: var(--text-secondary);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.location-filter:hover,
.location-filter.active {
    background: var(--nomad-gradient);
    color: var(--text-primary);
    border-color: var(--primary-nomad);
    transform: translateY(-2px);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-nomad);
    border-color: var(--primary-nomad);
}

.location-card.featured {
    border: 2px solid var(--primary-nomad);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2);
}

.location-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: transform 0.4s;
}

.location-card:hover .image-placeholder {
    transform: scale(1.1);
}

.wifi-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.wifi-badge.excellent {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.wifi-badge.good {
    background: rgba(59, 130, 246, 0.9);
    color: white;
}

.wifi-badge.moderate {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--nomad-gradient);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.location-content {
    padding: 2rem;
}

.location-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.location-subtitle {
    color: var(--accent-nomad);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.nomad-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.score-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.score-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--nomad-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(6, 182, 212, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-nomad);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.highlight-icon {
    font-size: 1.8rem;
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-value {
    font-weight: 700;
    color: var(--primary-nomad);
    font-size: 0.95rem;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-nomad);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid var(--border-nomad);
}

/* Coworking Section */
.coworking-section {
    background: var(--dark-gradient);
}

.coworking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.coworking-card {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.coworking-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-nomad);
}

.coworking-card.featured {
    border: 2px solid var(--primary-nomad);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--nomad-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.coworking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.coworking-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: var(--text-primary);
}

.price-tag {
    background: var(--nomad-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.coworking-card .location {
    color: var(--accent-nomad);
    margin-bottom: 1rem;
}

.coworking-card .description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.amenities span {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--border-nomad);
    color: var(--accent-nomad);
    padding: 0.4rem 0.9rem;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* Cost of Living */
.cost-living {
    background: #0f0f14;
}

.cost-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.cost-card {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
}

.cost-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-nomad);
}

.cost-card.featured {
    border: 2px solid var(--primary-nomad);
}

.recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--nomad-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.cost-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.total-cost {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--nomad-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.cost-breakdown {
    list-style: none;
}

.cost-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    color: var(--text-secondary);
}

.cost-breakdown li:last-child {
    border-bottom: none;
}

.cost-breakdown li span:last-child {
    font-weight: 700;
    color: var(--primary-nomad);
}

/* Community Section */
.community-section {
    background: var(--dark-gradient);
}

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

.community-card {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-nomad);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.community-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Practical Info */
.practical-info {
    background: #0f0f14;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-nomad);
}

.info-card ul {
    list-style: none;
}

.info-card li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card strong {
    color: var(--accent-nomad);
}

/* CTA Guide */
.cta-guide {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

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

.cta-text h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.guide-includes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.include-item {
    color: var(--accent-nomad);
    font-size: 0.95rem;
}

.guide-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.guide-form-container h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.guide-form {
    display: grid;
    gap: 1.2rem;
}

.guide-form input,
.guide-form select,
.guide-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-nomad);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.guide-form input:focus,
.guide-form select:focus,
.guide-form textarea:focus {
    outline: none;
    border-color: var(--primary-nomad);
    background: rgba(6, 182, 212, 0.05);
}

.guide-form input::placeholder,
.guide-form textarea::placeholder {
    color: var(--text-secondary);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.privacy-note {
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* Contact */
.contact {
    background: var(--bg-dark);
}

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

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-nomad);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-nomad);
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background: #0a0a0f;
    border-top: 1px solid var(--border-nomad);
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-nomad);
}

.footer-bottom {
    border-top: 1px solid var(--border-nomad);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .cta-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid var(--border-nomad);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

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

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .location-highlights {
        grid-template-columns: 1fr;
    }

    .guide-includes {
        grid-template-columns: 1fr;
    }

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

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

    .locations-grid,
    .coworking-grid,
    .cost-comparison,
    .info-grid {
        grid-template-columns: 1fr;
    }
}