/* ================================
   INTERACTIVE HIRE SEO SECTION
   Brand Colors: #FFC700, #FF8E53
   ================================ */

.hire-seo-interactive {
    padding: 0;
    background: #ffffff;
    overflow: hidden;
}

/* Interactive Hero */
.interactive-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #FFC700 0%, #FF8E53 100%);
    color: #1a1a1a;
    padding: 4rem 2rem;
    position: relative;
}

.floating-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
    color: #1a1a1a;
    border: 2px solid rgba(26, 26, 26, 0.2);
}

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

.glitch-text {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    animation: fadeInUp 1s ease;
    color: #1a1a1a;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #1a1a1a;
    opacity: 0.85;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    font-size: 1rem;
    color: #1a1a1a;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Story Timeline */
.story-timeline {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #FFC700, #FF8E53);
    transform: translateX(-50%);
}

.timeline-card {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-card:nth-child(even) {
    flex-direction: row-reverse;
}

.card-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 2rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.4);
    z-index: 2;
}

.card-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #f8f9fa;
}

.card-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 199, 0, 0.15);
    border-color: #FFC700;
}

.card-content h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

/* Interactive Tabs */
.interactive-tabs-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.tabs-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.tab-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tab-card:hover {
    transform: translateY(-5px);
    border-color: #FFC700;
    box-shadow: 0 15px 40px rgba(255, 199, 0, 0.2);
}

.tab-card.active {
    border-color: #FFC700;
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
}

.tab-icon {
    font-size: 2.5rem;
}

.tab-card h3 {
    flex: 1;
    font-size: 1.3rem;
    margin: 0;
    color: #1a1a1a;
}

.tab-card.active h3 {
    color: #1a1a1a;
}

.tab-arrow {
    font-size: 1.5rem;
    opacity: 0.5;
}

.tab-content {
    max-width: 1000px;
    margin: 0 auto;
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active-tab {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFC700;
}

.content-wrapper h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.content-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.best-for-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #FFF9E6;
    border-left: 4px solid #FFC700;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #1a1a1a;
}

/* Flip Cards */
.flip-cards-section {
    padding: 5rem 2rem;
    background: white;
}

.flip-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.flip-card {
    perspective: 1000px;
    height: 300px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-front {
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
    text-align: center;
}

.flip-card-back {
    background: #1a1a1a;
    color: white;
    transform: rotateY(180deg);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.flip-card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.flip-hint {
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
    color: #1a1a1a;
}

.flip-card-back p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Warning Slider */
.warning-slider-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: white;
}

.warning-slider-section .section-title {
    color: white;
}

.warning-slider-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.warning-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.warning-slide {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 199, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(255, 199, 0, 0.3);
}

.warning-slide.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.warning-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.warning-slide h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFC700;
}

.warning-slide p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.slide-counter {
    margin-top: 2rem;
    opacity: 0.6;
    font-size: 1rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 199, 0, 0.5);
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

/* Pricing Interactive */
.pricing-interactive {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE7D1 100%);
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-tier {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid #e0e0e0;
}

.pricing-tier:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 199, 0, 0.3);
    border-color: #FFC700;
}

.pricing-tier.recommended {
    position: relative;
    border: 3px solid #FFC700;
    box-shadow: 0 10px 40px rgba(255, 199, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #FFC700;
    color: #1a1a1a;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 1;
}

.tier-header {
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
    padding: 2.5rem;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tier-name {
    font-size: 1.3rem;
    opacity: 0.9;
}

.tier-details {
    padding: 2rem;
}

.tier-details > p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tier-includes {
    margin-bottom: 1.5rem;
}

.include-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.05rem;
    color: #444;
}

.tier-best {
    padding: 1.2rem;
    background: #FFF9E6;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    border-left: 3px solid #FFC700;
}

.pricing-insight {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    font-size: 1.15rem;
    color: #1a1a1a;
    line-height: 1.8;
    border-left: 4px solid #FFC700;
}

.pricing-insight strong {
    color: #FFC700;
}

/* Process Interactive */
.process-interactive {
    padding: 5rem 2rem;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-box {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.step-box:hover {
    border-color: #FFC700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.2);
}

.step-header {
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-num {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 2px solid rgba(26, 26, 26, 0.2);
}

.step-header h3 {
    font-size: 1.4rem;
    line-height: 1.3;
}

.step-body {
    padding: 2rem;
}

.step-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.action-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 199, 0, 0.4);
}

/* Questions Accordion */
.questions-accordion {
    padding: 5rem 2rem;
    background: #f8f9fa;
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.accordion-item:hover {
    border-color: #FFC700;
}

.accordion-header {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: #FFF9E6;
}

.accordion-header span:first-child {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    line-height: 1.5;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 2rem 2rem;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #444;
}

/* Final CTA Interactive */
.final-cta-interactive {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    color: white;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    opacity: 0.2;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.cta-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.cta-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

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

.cta-btn {
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
}

.cta-btn.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 199, 0, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid #FFC700;
}

.cta-btn.secondary:hover {
    background: linear-gradient(135deg, #FFC700, #FF8E53);
    color: #1a1a1a;
}

.cta-note {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .glitch-text {
        font-size: 2rem;
    }

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

    .timeline-line {
        left: 40px;
    }

    .timeline-card {
        flex-direction: column !important;
        padding-left: 100px;
    }

    .card-number {
        position: absolute;
        left: 0;
    }

    .tabs-container {
        grid-template-columns: 1fr;
    }

    .flip-cards-grid {
        grid-template-columns: 1fr;
    }

    .pricing-tiers,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        gap: 2rem;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
    }

    .warning-slider {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .interactive-hero {
        padding: 3rem 1.5rem;
    }

    .glitch-text {
        font-size: 1.7rem;
    }

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

    .card-content {
        padding: 2rem;
    }

    .warning-slide {
        padding: 3rem 1.5rem;
    }

    .step-header {
        flex-direction: column;
        text-align: center;
    }
}
 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
        }

        .location-section {
            width: 100%;
            padding: 60px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
        }

        .section-header h2 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-header p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .slider-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .slider-wrapper {
            overflow: hidden;
            border-radius: 15px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .location-card {
            min-width: 100%;
            padding: 0 15px;
        }

        .card-content {
            background: #fff;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .card-content:hover {
            transform: translateY(-5px);
        }

        .country-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 3px solid #667eea;
        }

        .country-flag {
            font-size: 3rem;
        }

        .country-info h3 {
            color: #2d3748;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .country-info p {
            color: #718096;
            font-size: 0.95rem;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .location-item {
            background: linear-gradient(135deg, #f6f8fb 0%, #e9ecef 100%);
            padding: 25px;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

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

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

        .location-item:hover {
            border-color: #667eea;
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .location-item h4 {
            color: #2d3748;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .location-icon {
            color: #667eea;
            font-size: 1.2rem;
        }

        .location-item p {
            color: #718096;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-nav:hover {
            background: #667eea;
            color: #fff;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 10px;
        }

        .slider-nav.next {
            right: 10px;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #fff;
            width: 35px;
            border-radius: 6px;
        }

        @media (max-width: 1024px) {
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

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

            .card-content {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .location-section {
                padding: 40px 0;
            }

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

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

            .slider-container {
                padding: 0 50px;
            }

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

            .card-content {
                padding: 25px;
            }

            .country-header h3 {
                font-size: 1.5rem;
            }

            .location-item h4 {
                font-size: 1.1rem;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.5rem;
            }

            .slider-container {
                padding: 0 45px;
            }

            .card-content {
                padding: 20px;
            }

            .country-flag {
                font-size: 2.5rem;
            }

            .country-header {
                gap: 10px;
            }

            .location-item {
                padding: 20px;
            }

            .slider-nav {
                width: 35px;
                height: 35px;
            }

            .slider-nav.prev {
                left: 5px;
            }

            .slider-nav.next {
                right: 5px;
            }
        }
