/* ========================================
   SEKSITREFFIT SUOMESSA - Custom CSS
   Site de rencontre adulte en Finlande
======================================== */

:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --primary-light: #f8bbd9;
    --secondary-color: #9c27b0;
    --accent-color: #ff4081;
    --dark-color: #1a1a2e;
    --darker-color: #16213e;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--darker-color));
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.navbar {
    background: var(--gradient-dark) !important;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff !important;
}

.navbar-brand i {
    color: var(--primary-color);
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

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

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.4);
    color: #fff;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    background: var(--gradient-dark);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(233,30,99,0.1)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

/* Hero Swiper - Tinder style cards */
.hero-swiper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.swiper-container {
    position: relative;
    width: 300px;
    height: 420px;
    perspective: 1000px;
}

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

.swiper-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    background: #fff;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s ease;
}

.swiper-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 10;
}

.swiper-card.next {
    opacity: 0.7;
    transform: scale(0.95) translateY(10px);
    z-index: 5;
}

.swiper-card.prev {
    opacity: 0;
    transform: scale(0.9) translateX(-100px) rotate(-10deg);
    z-index: 1;
}

.swiper-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.swiper-card-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.swiper-card-info p {
    font-size: 1rem;
    margin: 0;
    color: rgba(255,255,255,0.9);
}

.swiper-card-info p i {
    color: var(--primary-color);
}

.swiper-online {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #28a745;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.swiper-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-online 1.5s infinite;
}

.swiper-actions {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.swiper-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.swiper-btn-nope {
    background: #fff;
    color: #ff6b6b;
}

.swiper-btn-nope:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(255,107,107,0.4);
}

.swiper-btn-like {
    background: var(--gradient-primary);
    color: #fff;
}

.swiper-btn-like:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(233,30,99,0.5);
}

/* Animation de swipe automatique */
@keyframes swipeLeft {
    0% { transform: scale(1) translateX(0) rotate(0); opacity: 1; }
    100% { transform: scale(0.9) translateX(-150px) rotate(-15deg); opacity: 0; }
}

@keyframes swipeIn {
    0% { transform: scale(0.95) translateY(10px); opacity: 0.7; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Responsive hero swiper */
@media (max-width: 992px) {
    .hero-swiper {
        margin-top: 3rem;
    }

    .swiper-container {
        width: 260px;
        height: 360px;
    }
}

@media (max-width: 576px) {
    .swiper-container {
        width: 240px;
        height: 320px;
    }

    .swiper-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .swiper-card-info h4 {
        font-size: 1.25rem;
    }
}

.hero-city {
    min-height: 60vh;
}

/* ========================================
   STATISTICS
======================================== */
.stats-section {
    background: var(--light-color);
    padding: 4rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   LIVE PROFILES SECTION - Messages style Instagram
======================================== */
.live-profiles-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.live-profiles-section .section-header h2 {
    color: #fff;
}

.live-profiles-section .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.live-profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.live-profile-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.live-profile-card:nth-child(1) { animation-delay: 0.1s; }
.live-profile-card:nth-child(2) { animation-delay: 0.2s; }
.live-profile-card:nth-child(3) { animation-delay: 0.3s; }
.live-profile-card:nth-child(4) { animation-delay: 0.4s; }
.live-profile-card:nth-child(5) { animation-delay: 0.5s; }
.live-profile-card:nth-child(6) { animation-delay: 0.6s; }

.live-profile-img {
    position: relative;
    flex-shrink: 0;
}

.live-profile-img img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
}

.live-profile-img .online-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #28a745;
    border-radius: 50%;
    border: 2px solid #1a1a2e;
    animation: pulse-online 1.5s infinite;
}

.message-bubble {
    background: #fff;
    border-radius: 20px;
    border-top-left-radius: 5px;
    padding: 1rem 1.25rem;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    flex-grow: 1;
    transition: transform 0.3s ease;
}

.message-bubble:hover {
    transform: translateY(-5px);
}

.message-bubble::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 15px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.message-bubble .profile-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.message-bubble p {
    margin: 0;
    color: var(--dark-color);
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .live-profiles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .live-profiles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .live-profile-img img {
        width: 60px;
        height: 60px;
    }

    .message-bubble {
        padding: 0.85rem 1rem;
    }

    .message-bubble p {
        font-size: 0.9rem;
    }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    padding: 5rem 0;
    background: #fff;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.feature-item h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.feature-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* ========================================
   DIRECTORY / ANNUAIRE
======================================== */
.directory-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.directory-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.directory-section .lead {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Search Box */
.search-box {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.search-box .form-control {
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
}

.search-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.search-results.show {
    display: block;
}

.search-results a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
}

.search-results a:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* Popular Cities */
.popular-cities {
    margin-bottom: 3rem;
}

.popular-cities h4 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.city-badge {
    display: inline-block;
    background: #fff;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 50px;
    color: var(--text-color);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.city-badge:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Region Accordion */
.region-accordion .accordion-item {
    border: none;
    margin-bottom: 0.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.region-accordion .accordion-button {
    font-weight: 600;
    background: #fff;
    color: var(--dark-color);
    padding: 1rem 1.5rem;
}

.region-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: #fff;
}

.region-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.region-accordion .accordion-body {
    background: #fff;
    padding: 1.5rem;
}

.dept-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: var(--light-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dept-link:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* ========================================
   PROFILE CARDS
======================================== */
.profiles-section {
    padding: 5rem 0;
    background: #fff;
}

.profiles-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.profile-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.profile-avatar {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-avatar i {
    font-size: 6rem;
    color: rgba(255,255,255,0.9);
}

.profile-avatar .profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.08);
}

.profile-avatar .age-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.profile-avatar .online-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #28a745;
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.profile-avatar .online-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-online 1.5s infinite;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.profile-card .card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.profile-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.profile-card .location {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.profile-card .location i {
    color: var(--primary-color);
}

.profile-card .description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.profile-card .btn {
    width: 100%;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive profile cards - portrait format */
@media (max-width: 768px) {
    .profile-card .card-body {
        padding: 1rem;
    }

    .profile-card h5 {
        font-size: 1rem;
    }
}

/* ========================================
   FAQ SECTION
======================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    background: #fff;
    padding: 1.25rem 1.5rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--primary-color);
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   NEARBY CITIES
======================================== */
.nearby-section {
    padding: 5rem 0;
    background: #fff;
}

.nearby-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.nearby-city-card {
    display: block;
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.nearby-city-card:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.nearby-city-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.nearby-city-card:hover i {
    color: #fff;
}

.nearby-city-card h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.nearby-city-card p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-section .btn {
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 3rem;
}

.cta-section .btn:hover {
    background: var(--dark-color);
    color: #fff;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--gradient-dark);
    padding: 4rem 0 2rem;
    color: rgba(255,255,255,0.8);
}

.footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 0.25rem 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   BREADCRUMB
======================================== */
.breadcrumb-section {
    background: var(--light-color);
    padding: 1rem 0;
}

.breadcrumb {
    margin: 0;
    background: transparent;
}

.breadcrumb-item a {
    color: var(--text-light);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

/* ========================================
   MAP CONTAINER
======================================== */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ========================================
   REGION PAGE
======================================== */
.region-hero {
    background: var(--gradient-dark);
    padding: 4rem 0;
}

.region-hero h1 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.region-hero p {
    color: rgba(255,255,255,0.8);
}

.cities-grid {
    padding: 4rem 0;
}

.city-list-card {
    display: block;
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.city-list-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left: 4px solid var(--primary-color);
}

.city-list-card h5 {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
}

.city-list-card span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Filter Input */
.filter-input {
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    border: 2px solid #e0e0e0;
    margin-bottom: 2rem;
}

.filter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* ========================================
   MODAL
======================================== */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
}

.modal-header {
    background: var(--gradient-primary);
    color: #fff;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

/* ========================================
   INTRO SECTION (City Pages)
======================================== */
.intro-section {
    padding: 4rem 0;
    background: #fff;
}

.intro-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.intro-section p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.intro-stat {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.intro-stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.intro-stat h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.intro-stat p {
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    .footer {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .stat-card {
        padding: 1rem;
    }

    .stat-card h3 {
        font-size: 1.75rem;
    }

    .profile-avatar {
        height: 150px;
    }

    .profile-avatar i {
        font-size: 3.5rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(233, 30, 99, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(233, 30, 99, 0);
    }
}

.btn-cta {
    animation: pulse 2s infinite;
}

/* ========================================
   UTILITIES
======================================== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: var(--primary-light) !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ========================================
   SEO ENHANCED SECTIONS - NEW STYLES
======================================== */

/* Hero Description */
.hero-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-top: 1rem;
}

/* CTA Note */
.cta-note {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.75rem;
}

/* Stats Card in Hero */
.stats-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.stats-header {
    background: rgba(233, 30, 99, 0.3);
    padding: 1rem 1.5rem;
    color: #fff;
    font-weight: 600;
}

.stats-body {
    padding: 1.5rem;
}

.stat-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row i {
    font-size: 1.25rem;
    margin-right: 1rem;
    width: 30px;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.75rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Main CTA Section */
.main-cta-section {
    padding: 3rem 0;
    background: var(--light-color);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.content-section.bg-light {
    background: var(--light-color);
}

/* Highlight Box */
.highlight-box {
    background: #fff;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-sm);
}

.highlight-box h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

.check-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.check-list li i {
    color: var(--primary-color);
}

/* Type Cards */
.type-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.type-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.type-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.type-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.event-item {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--primary-color);
}

.event-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 30px;
}

.event-item span {
    font-weight: 500;
    color: var(--text-color);
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-content h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Steps Container */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-item:hover {
    box-shadow: var(--shadow-md);
}

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

.step-content h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.step-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Nearby Links (SEO) */
.nearby-link {
    display: block;
    background: var(--light-color);
    padding: 1rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: var(--transition);
    text-align: center;
}

.nearby-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.nearby-link i {
    color: var(--primary-color);
}

.nearby-link:hover i {
    color: #fff;
}

/* Final CTA */
.final-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta .lead {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.btn-glow {
    background: #fff;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    animation: glow 2s ease-in-out infinite alternate;
}

.btn-glow:hover {
    background: var(--dark-color);
    color: #fff;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(255,255,255,0.5), 0 0 10px rgba(255,255,255,0.3);
    }
    to {
        box-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.5);
    }
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.map-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.map-section .map-container {
    height: 400px;
}

.map-section .map-container iframe {
    height: 100%;
}

/* Section Subtitle */
.section-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .stats-card {
        margin-top: 2rem;
    }

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

    .cta-box .col-lg-4 {
        margin-top: 1.5rem;
    }

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

    .benefit-item, .step-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon, .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .benefit-content, .step-content {
        text-align: center;
    }

    .type-card {
        margin-bottom: 1rem;
    }
}

/* ========================================
   HOME PAGE ENHANCED SECTIONS
======================================== */

/* Hero CTA Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--primary-color);
}

/* Social Proof Section */
.social-proof-section {
    background: #fff;
    padding: 4rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.proof-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.proof-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.proof-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.proof-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.proof-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.why-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.why-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Cities SEO Section */
.cities-seo-section {
    padding: 5rem 0;
    background: #fff;
}

.city-seo-link {
    display: flex;
    align-items: center;
    background: var(--light-color);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    color: var(--text-color);
    transition: var(--transition);
    height: 100%;
}

.city-seo-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.city-seo-link i {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.city-seo-link:hover i {
    color: #fff;
}

.city-seo-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Relationship Types Section */
.relationship-types-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.relationship-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.rel-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.rel-icon i {
    font-size: 1.75rem;
}

.relationship-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.relationship-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: #fff;
}

.step-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: #fff;
}

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

.step-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Events Section (Home) */
.events-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.event-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.event-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.event-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* FAQ Home Section */
.faq-home-section {
    padding: 5rem 0;
    background: #fff;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
}

.final-cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-box h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.final-cta-box .lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

/* Responsive for home sections */
@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-proof-section {
        margin-top: 0;
    }

    .proof-card {
        padding: 1.5rem 1rem;
    }

    .proof-card h3 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .city-seo-link {
        padding: 0.75rem 1rem;
    }

    .city-seo-link span {
        font-size: 0.8rem;
    }

    .final-cta-box h2 {
        font-size: 1.75rem;
    }
}

/* ========================================
   MEGA FOOTER - ALL CITIES BY REGION
======================================== */

.mega-footer {
    background: var(--gradient-dark);
    padding: 0;
    color: rgba(255,255,255,0.8);
}

/* Footer Top - Brand & Info */
.footer-top {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-brand h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-quick-links h5,
.footer-info h5 {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-quick-links li,
.footer-info li {
    margin-bottom: 0.5rem;
}

.footer-quick-links a,
.footer-info a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-quick-links a:hover,
.footer-info a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Footer Cities Section */
.footer-cities-section {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-cities-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.footer-cities-header h5 {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-cities-header .badge {
    background: var(--primary-color);
    font-size: 0.75rem;
    padding: 0.35em 0.75em;
}

/* Region Tabs */
.footer-region-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-region-tab {
    background: rgba(255,255,255,0.1);
    border: none;
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.footer-region-tab:hover {
    background: rgba(255,255,255,0.2);
}

.footer-region-tab.active {
    background: var(--primary-color);
    color: #fff;
}

/* Cities Grid */
.footer-cities-grid {
    display: none;
}

.footer-cities-grid.active {
    display: block;
}

.footer-cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-city-link {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-city-link:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Region Link in footer */
.footer-region-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-region-link:hover {
    text-decoration: underline;
}

/* All Regions Grid (Alternative View) */
.footer-all-regions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.footer-region-block h6 {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-region-block h6 a {
    color: #fff;
}

.footer-region-block h6 a:hover {
    color: var(--primary-color);
}

.footer-region-block h6 .count {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-weight: normal;
}

.footer-region-cities {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-region-cities a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 0.2rem 0;
    transition: var(--transition);
}

.footer-region-cities a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-region-cities .more-link {
    color: var(--primary-color);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.footer-region-cities .more-link:hover {
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom-bar {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom-bar p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

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

/* Toggle button for cities */
.footer-toggle-cities {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-toggle-cities:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary-color);
    color: #fff;
}

.footer-toggle-cities i {
    transition: transform 0.3s ease;
}

.footer-toggle-cities.expanded i {
    transform: rotate(180deg);
}

/* Collapsible cities container */
.footer-cities-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.footer-cities-collapse.show {
    max-height: 2000px;
}

/* Responsive Mega Footer */
@media (max-width: 992px) {
    .footer-all-regions {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-all-regions {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cities-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-region-tabs {
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .footer-region-tab {
        white-space: nowrap;
    }
}

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
