/* ============================================
   IPTV Ireland - Main Stylesheet
   Ireland Flag Colors: Green, White, Orange
   ============================================ */

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

:root {
    /* Ireland Flag Colors */
    --color-green: #169B62;
    --color-white: #FFFFFF;
    --color-orange: #FF883E;
    --color-dark-green: #0d7a4f;
    --color-dark-orange: #e66d1a;
    
    /* Neutral Colors */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg-light: #f8f9fa;
    --color-border: #e0e0e0;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ============================================
   HEADER STYLES
   ============================================ */

.main-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    min-height: 70px;
}

.logo-section {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover {
    color: var(--color-green);
    background-color: var(--color-bg-light);
}

.nav-link.active {
    color: var(--color-green);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-sm);
    right: var(--spacing-sm);
    height: 2px;
    background-color: var(--color-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
}

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

.mobile-menu-toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) 0;
    margin: 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    background: transparent;
    padding: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--color-green);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    gap: 8px;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: none;
    background-color: transparent;
    color: var(--color-orange);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    animation: pulseText 2s ease-in-out infinite;
}

@keyframes pulseText {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-light);
    max-width: 100%;
    font-weight: 400;
    background: transparent;
    padding: 0;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-green {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
    color: var(--color-white);
}

.btn-green:hover {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-green) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22, 155, 98, 0.4);
}

.btn-orange {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-dark-orange) 100%);
    color: var(--color-white);
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--color-dark-orange) 0%, var(--color-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 136, 62, 0.4);
}

/* ============================================
   TRUST BOX STYLES
   ============================================ */

.trust-box {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(8px);
}

.trust-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 3px;
    font-size: 1.3rem;
}

.star {
    color: #e0e0e0;
    line-height: 1;
}

.star.filled {
    color: #FFB800;
}

.star.half {
    background: linear-gradient(90deg, #FFB800 50%, #e0e0e0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
}

.rating-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.trust-info {
    text-align: center;
}

.trust-text {
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
    font-weight: 500;
}

.trust-text strong {
    color: var(--color-green);
    font-weight: 700;
}

.trustpilot-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--spacing-sm);
}

.trustpilot-logo svg {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   FEATURES SECTION STYLES
   ============================================ */

.features-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.features-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-green);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.feature-card-description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CHANNELS SECTION STYLES
   ============================================ */

.channels-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.channels-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.channels-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.channels-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.channels-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-md) 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    cursor: grab;
}

.channels-scroll-wrapper:active {
    cursor: grabbing;
}

.channels-scroll {
    display: flex;
    gap: var(--spacing-md);
    animation: scrollChannels 60s linear infinite;
    width: fit-content;
    will-change: transform;
}

/* Show 6 channels on desktop */
@media (min-width: 769px) {
    .channels-scroll-wrapper {
        --visible-channels: 6;
    }
    
    .channel-item {
        width: calc((100% - 5 * var(--spacing-md)) / 6);
        min-width: 150px;
        max-width: 200px;
    }
}

.channels-scroll-wrapper:hover .channels-scroll,
.channels-scroll-wrapper.paused .channels-scroll {
    animation-play-state: paused;
}

.channels-scroll-wrapper.paused {
    cursor: default;
}

.channels-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.channel-control-btn {
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.channel-control-btn:hover {
    background: var(--color-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(22, 155, 98, 0.3);
}

.channel-control-btn:active {
    transform: translateY(0);
}

.channel-item {
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
}

/* Desktop: Show 6 channels visible */
@media (min-width: 769px) {
    .channel-item {
        width: calc((100vw - 2 * var(--spacing-md) - 5 * var(--spacing-md)) / 6);
        min-width: 150px;
        max-width: 200px;
    }
}

/* Mobile: Show 3 channels visible */
@media (max-width: 768px) {
    .channel-item {
        width: calc((100vw - 2 * var(--spacing-sm) - 2 * var(--spacing-md)) / 3);
        min-width: calc((100vw - 2 * var(--spacing-sm) - 2 * var(--spacing-md)) / 3);
        max-width: calc((100vw - 2 * var(--spacing-sm) - 2 * var(--spacing-md)) / 3);
    }
    
    .channels-scroll-wrapper {
        padding: var(--spacing-sm) 0;
    }
    
    .channels-scroll {
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .channel-item {
        width: calc((100vw - 2 * var(--spacing-xs) - 2 * var(--spacing-sm)) / 3);
        min-width: calc((100vw - 2 * var(--spacing-xs) - 2 * var(--spacing-sm)) / 3);
        max-width: calc((100vw - 2 * var(--spacing-xs) - 2 * var(--spacing-sm)) / 3);
    }
}

.channel-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.channel-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.channel-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.channel-item:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.channel-item:hover .channel-logo img {
    filter: brightness(1.1);
}


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

/* ============================================
   VODs SECTION STYLES
   ============================================ */

.vods-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
    overflow: hidden;
}

.vods-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.vods-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.vods-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.vods-scroll-wrapper {
    position: relative;
    overflow: hidden;
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-md) 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    cursor: grab;
}

.vods-scroll-wrapper:active {
    cursor: grabbing;
}

.vods-scroll {
    display: flex;
    gap: var(--spacing-lg);
    animation: scrollVODs 80s linear infinite;
    width: fit-content;
    will-change: transform;
    align-items: stretch;
}

.vods-scroll:hover {
    animation-play-state: paused;
}

/* Desktop: Show 5 VODs visible for full size */
@media (min-width: 769px) {
    .vod-item {
        width: calc((100vw - 2 * var(--spacing-md) - 4 * var(--spacing-lg)) / 5);
        min-width: 250px;
        max-width: 320px;
        height: 400px;
    }
}

.vod-item {
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

.vod-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.vod-image {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.vod-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
}

.vod-item:hover .vod-image img {
    transform: scale(1.1);
}

.vods-scroll-wrapper:hover .vods-scroll,
.vods-scroll-wrapper.paused .vods-scroll {
    animation-play-state: paused;
}

.vods-scroll-wrapper.paused {
    cursor: default;
}

@keyframes scrollVODs {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - var(--spacing-lg) / 2));
    }
}

/* ============================================
   PRICING SECTION STYLES
   ============================================ */

.pricing-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.pricing-card-center {
    order: 2;
}

.pricing-card-first {
    order: 1;
}

.pricing-card-featured {
    order: 3;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-center,
    .pricing-card-first,
    .pricing-card-featured {
        order: 0;
    }
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 255, 250, 0.95) 100%);
    border: 2px solid rgba(22, 155, 98, 0.15);
    border-radius: 24px;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 12px rgba(22, 155, 98, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: visible;
    backdrop-filter: blur(10px);
    align-items: stretch;
}

.pricing-card::before {
    display: none;
}

.pricing-card:hover::before {
    display: none;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(22, 155, 98, 0.18), 0 10px 32px rgba(22, 155, 98, 0.12);
    border-color: var(--color-green);
    border-width: 2.5px;
}

.pricing-card-featured {
    border-color: var(--color-orange);
    border-width: 2.5px;
    transform: scale(1.04);
    box-shadow: 0 12px 48px rgba(255, 136, 62, 0.12), 0 6px 20px rgba(255, 136, 62, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.98) 50%, rgba(255, 255, 255, 1) 100%);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card-featured::before {
    display: none;
}

.pricing-card-featured:hover {
    transform: scale(1.06) translateY(-14px);
    box-shadow: 0 28px 72px rgba(255, 136, 62, 0.22), 0 12px 36px rgba(255, 136, 62, 0.14);
    border-color: var(--color-orange);
    border-width: 2.5px;
}

.pricing-card-premium {
    border-color: var(--color-green);
    border-width: 2.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 255, 245, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 10px 36px rgba(22, 155, 98, 0.12), 0 4px 14px rgba(22, 155, 98, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card-premium::before {
    display: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.pricing-card-premium:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 24px 64px rgba(22, 155, 98, 0.2), 0 10px 32px rgba(22, 155, 98, 0.14);
    border-color: var(--color-green);
    border-width: 2.5px;
}

.pricing-badge {
    position: absolute;
    top: -18px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff6b35 100%);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 136, 62, 0.5), 0 3px 10px rgba(255, 136, 62, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-badge-premium {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
    box-shadow: 0 6px 20px rgba(22, 155, 98, 0.5), 0 3px 10px rgba(22, 155, 98, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(22, 155, 98, 0.15);
    position: relative;
}

.pricing-card-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-green);
    border-radius: 2px;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 8px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--color-text-light);
    margin: 0;
}

.pricing-features {
    flex: 1;
    margin-bottom: var(--spacing-lg);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-height: 200px;
    transition: min-height 0.3s ease;
    flex: 1;
}

.feature-item {
    padding: var(--spacing-sm) 0;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 1;
    display: block;
}

.feature-item.hidden {
    display: none;
    opacity: 0;
    max-height: 0;
    padding: 0;
    margin: 0;
    border: none;
    overflow: hidden;
}

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

.feature-gift-top {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.1rem;
    padding: var(--spacing-sm) 0;
    margin-bottom: var(--spacing-xs);
    border-bottom: 2px solid rgba(255, 136, 62, 0.3);
}

.feature-gift {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(255, 136, 62, 0.15) 0%, rgba(255, 136, 62, 0.05) 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    margin-top: var(--spacing-sm);
    border: 2px solid var(--color-orange);
    box-shadow: 0 2px 8px rgba(255, 136, 62, 0.2);
}

.see-more-btn {
    width: 100%;
    padding: 0;
    margin-top: var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--color-green);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.see-more-btn:hover {
    color: var(--color-dark-green);
    text-decoration-thickness: 2px;
}

.pricing-card-featured .see-more-btn {
    color: var(--color-orange);
}

.pricing-card-featured .see-more-btn:hover {
    color: #ff6b35;
}

.pricing-cta {
    text-align: center;
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.pricing-cta .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pricing-cta .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* ============================================
   HOW TO ORDER SECTION STYLES
   ============================================ */

.how-to-order-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 255, 250, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

.order-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.order-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.order-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto var(--spacing-xl);
}

@media (min-width: 769px) {
    .order-steps {
        flex-direction: row;
        gap: var(--spacing-sm);
        justify-content: space-between;
        align-items: stretch;
    }
}

.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 255, 250, 0.95) 100%);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(22, 155, 98, 0.1);
    border: 2px solid rgba(22, 155, 98, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.order-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green) 0%, var(--color-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.order-step:hover::before {
    transform: scaleX(1);
}

.order-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(22, 155, 98, 0.25), 0 4px 15px rgba(22, 155, 98, 0.15);
    border-color: var(--color-green);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 255, 245, 0.98) 100%);
}

.step-number {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(22, 155, 98, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-bottom: var(--spacing-sm);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.order-step:hover .step-number {
    background: linear-gradient(135deg, var(--color-orange) 0%, #ff6b35 100%);
    box-shadow: 0 8px 25px rgba(255, 136, 62, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.15) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.5);
}

.step-content {
    flex: 1;
    width: 100%;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.order-step:hover .step-title {
    color: var(--color-green);
}

.step-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}


@media (max-width: 768px) {
    .how-to-order-section {
        padding: var(--spacing-lg) 0;
    }
    
    .how-to-order-section .container {
        padding: 0 var(--spacing-md);
    }
    
    .order-header {
        margin-bottom: var(--spacing-lg);
        padding: 0;
    }
    
    .order-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-xs);
    }
    
    .order-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
    }
    
    .order-steps {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: 0;
        margin: 0 auto var(--spacing-lg);
        max-width: 100%;
    }
    
    .order-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: var(--spacing-md);
        flex: none;
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
        gap: var(--spacing-md);
        border-radius: 12px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .step-content {
        width: 100%;
        padding: 0;
        flex: 1;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-xs);
        line-height: 1.4;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .order-step:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 25px rgba(22, 155, 98, 0.2), 0 3px 12px rgba(22, 155, 98, 0.1);
    }
    
    .order-step:hover .step-number {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .how-to-order-section {
        padding: var(--spacing-lg) 0;
    }
    
    .how-to-order-section .container {
        padding: 0 var(--spacing-md);
    }
    
    .order-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .order-title {
        font-size: 1.5rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .order-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .order-steps {
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .order-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-lg) var(--spacing-md);
        gap: var(--spacing-md);
        border-radius: 12px;
        margin-bottom: var(--spacing-sm);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .step-content {
        width: 100%;
    }
    
    .step-title {
        font-size: 1.05rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1.3;
    }
    
    .step-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .order-step:hover {
        transform: translateY(-2px);
    }
    
    .order-step:hover .step-number {
        transform: scale(1.05);
    }
}

/* ============================================
   COMPATIBLE APPS SECTION STYLES
   ============================================ */

.apps-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

.apps-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.apps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.apps-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(22, 155, 98, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(22, 155, 98, 0.2);
    border-color: var(--color-green);
    background: rgba(255, 255, 255, 1);
}

.app-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-sm);
}

.app-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.app-item:hover .app-logo img {
    transform: scale(1.1);
}

.app-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.app-item:hover .app-name {
    color: var(--color-green);
}

@media (max-width: 768px) {
    .apps-section {
        padding: var(--spacing-lg) 0;
    }
    
    .apps-title {
        font-size: 2rem;
    }
    
    .apps-subtitle {
        font-size: 1.1rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .app-item {
        padding: var(--spacing-md);
    }
    
    .app-logo {
        height: 60px;
        margin-bottom: var(--spacing-xs);
    }
    
    .app-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .apps-title {
        font-size: 1.75rem;
    }
    
    .apps-subtitle {
        font-size: 1rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .app-item {
        padding: var(--spacing-sm);
    }
    
    .app-logo {
        height: 50px;
    }
    
    .app-name {
        font-size: 0.8rem;
    }
}

/* ============================================
   COMPATIBLE DEVICES SECTION STYLES
   ============================================ */

.devices-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 255, 250, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

.devices-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.devices-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.devices-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(22, 155, 98, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.device-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-green) 0%, var(--color-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.device-item:hover::before {
    transform: scaleX(1);
}

.device-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(22, 155, 98, 0.25), 0 4px 15px rgba(22, 155, 98, 0.15);
    border-color: var(--color-green);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 255, 245, 0.98) 100%);
}

.device-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.device-icon svg {
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.device-item:hover .device-icon svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(22, 155, 98, 0.25));
}

.device-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.device-item:hover .device-name {
    color: var(--color-green);
}

.device-description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .devices-section {
        padding: var(--spacing-lg) 0;
    }
    
    .devices-title {
        font-size: 2rem;
    }
    
    .devices-subtitle {
        font-size: 1.1rem;
    }
    
    .devices-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .device-item {
        padding: var(--spacing-md);
    }
    
    .device-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--spacing-sm);
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .device-name {
        font-size: 1.1rem;
    }
    
    .device-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .devices-title {
        font-size: 1.75rem;
    }
    
    .devices-subtitle {
        font-size: 1rem;
    }
    
    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .device-item {
        padding: var(--spacing-sm);
    }
    
    .device-icon {
        width: 44px;
        height: 44px;
        margin-bottom: var(--spacing-xs);
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .device-name {
        font-size: 1rem;
    }
    
    .device-description {
        font-size: 0.85rem;
    }
}

/* ============================================
   CLIENT REVIEWS SECTION STYLES
   ============================================ */

.reviews-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 255, 250, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.reviews-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: var(--spacing-lg) 0;
    cursor: grab;
    padding: var(--spacing-md) 0;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

.reviews-scroll-wrapper:active {
    cursor: grabbing;
}

.reviews-scroll {
    display: flex;
    gap: var(--spacing-lg);
    will-change: transform;
    transition: transform 0.1s linear;
}

.review-item {
    flex-shrink: 0;
    width: calc((100% - (3 * var(--spacing-lg))) / 4);
    min-width: calc((100% - (3 * var(--spacing-lg))) / 4);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.review-item:hover {
    transform: scale(1.05);
}

.review-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 220%;
    overflow: visible;
    cursor: pointer;
    border: none;
    background: transparent;
}

.review-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    box-shadow: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.review-image-wrapper:hover .review-image {
    transform: scale(1.05);
}

.review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
}

.review-image-wrapper:hover .review-overlay {
    opacity: 1;
}

.review-overlay svg {
    width: 48px;
    height: 48px;
}

/* Review Navigation Dots */
.reviews-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-green);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-dot span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-green);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-dot.active {
    background: var(--color-green);
    transform: scale(1.2);
}

.review-dot.active span {
    opacity: 1;
    background: white;
}

.review-dot:hover {
    transform: scale(1.3);
    border-color: var(--color-dark-green);
}

.review-dot:hover span {
    opacity: 1;
}

@media (max-width: 768px) {
    .reviews-dots-container {
        gap: 10px;
        margin-top: var(--spacing-md);
        padding: var(--spacing-sm) 0;
    }
    
    .review-dot {
        width: 10px;
        height: 10px;
    }
    
    .review-dot span {
        width: 5px;
        height: 5px;
    }
}

@media (max-width: 480px) {
    .reviews-dots-container {
        gap: 8px;
    }
    
    .review-dot {
        width: 9px;
        height: 9px;
        border-width: 1.5px;
    }
    
    .review-dot span {
        width: 4px;
        height: 4px;
    }
}


/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.review-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.review-modal-image {
    max-width: 100%;
    max-height: calc(90vh - 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    background: white;
    padding: var(--spacing-md);
}

.review-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.review-modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.review-modal-prev {
    left: 20px;
}

.review-modal-next {
    right: 20px;
}

.review-modal-nav svg {
    width: 24px;
    height: 24px;
}

.review-modal-dots {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

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

.review-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.review-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.review-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.review-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg) scale(1.1);
}

.review-modal-close svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 1200px) {
    .review-item {
        width: calc((100% - (3 * var(--spacing-xl))) / 4);
        min-width: calc((100% - (3 * var(--spacing-xl))) / 4);
    }
    
    .reviews-scroll {
        gap: var(--spacing-xl);
    }
    
    .review-image-wrapper {
        padding-top: 240%;
    }
}

@media (min-width: 1400px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .review-image-wrapper {
        padding-top: 230%;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: var(--spacing-lg) 0;
    }
    
    .reviews-title {
        font-size: 2rem;
    }
    
    .reviews-subtitle {
        font-size: 1.1rem;
    }
    
    .review-item {
        width: calc((100% - (1 * var(--spacing-md))) / 2);
        min-width: calc((100% - (1 * var(--spacing-md))) / 2);
    }
    
    .reviews-scroll {
        gap: var(--spacing-md);
    }
    
    .review-image-wrapper {
        padding-top: 220%;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(22, 155, 98, 0.2);
    }
    
    .review-overlay {
        opacity: 0.7;
    }
    
    .review-image-wrapper:active .review-overlay {
        opacity: 1;
    }
    
    .review-modal-content {
        max-width: 95%;
        padding: var(--spacing-md);
    }
    
    .review-modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
    }
    
    .review-modal-close svg {
        width: 20px;
        height: 20px;
    }
    
    .review-modal-nav {
        width: 40px;
        height: 40px;
    }
    
    .review-modal-prev {
        left: 10px;
    }
    
    .review-modal-next {
        right: 10px;
    }
    
    .review-modal-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .review-item {
        width: calc((100% - (1 * var(--spacing-sm))) / 2);
        min-width: calc((100% - (1 * var(--spacing-sm))) / 2);
    }
    
    .reviews-scroll {
        gap: var(--spacing-sm);
    }
    
    .review-image-wrapper {
        padding-top: 240%;
    }
    
    .review-modal-nav {
        width: 35px;
        height: 35px;
    }
    
    .review-modal-prev {
        left: 5px;
    }
    
    .review-modal-next {
        right: 5px;
    }
    
    .review-modal-nav svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   GLOBAL COVERAGE MAP SECTION STYLES
   ============================================ */

.coverage-map-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 255, 250, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

.coverage-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.coverage-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.coverage-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.7;
}

.coverage-note {
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(22, 155, 98, 0.05);
    border-left: 4px solid var(--color-green);
    border-radius: 8px;
    line-height: 1.6;
}

.coverage-note-link {
    color: var(--color-green);
    font-weight: 700;
    text-decoration: none;
    font-style: normal;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.coverage-note-link:hover {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}

.continents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

.continent-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 255, 250, 0.95) 100%);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(22, 155, 98, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.continent-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-green), var(--color-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.continent-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(22, 155, 98, 0.2);
    border-color: var(--color-green);
}

.continent-box:hover::before {
    transform: scaleX(1);
}

.continent-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(22, 155, 98, 0.1);
}

.continent-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.1), rgba(22, 155, 98, 0.05));
    flex-shrink: 0;
}

.uk-ireland-icon {
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.15), rgba(255, 140, 0, 0.1));
}

.europe-icon {
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.15), rgba(22, 155, 98, 0.05));
}

.asia-icon {
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.15), rgba(22, 155, 98, 0.05));
}

.arab-icon {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 140, 0, 0.05));
}

.americas-icon {
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.15), rgba(22, 155, 98, 0.05));
}

.continent-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 0;
    flex: 1;
}

.uk-ireland-box .continent-title {
    background: linear-gradient(135deg, var(--color-green), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.europe-box .continent-title {
    color: var(--color-green);
}

.asia-box .continent-title {
    color: var(--color-green);
}

.arab-box .continent-title {
    color: var(--color-orange);
}

.americas-box .continent-title {
    color: var(--color-green);
}

.continent-countries {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.country-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(22, 155, 98, 0.08);
    color: var(--color-text);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(22, 155, 98, 0.15);
    transition: all 0.2s ease;
}

.country-tag:hover {
    background: rgba(22, 155, 98, 0.15);
    border-color: var(--color-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(22, 155, 98, 0.2);
}

.arab-box .country-tag {
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.15);
}

.arab-box .country-tag:hover {
    background: rgba(255, 140, 0, 0.15);
    border-color: var(--color-orange);
    box-shadow: 0 4px 8px rgba(255, 140, 0, 0.2);
}

.coverage-dots-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.coverage-dot {
    pointer-events: auto;
    cursor: pointer;
}

.coverage-dot:hover .pulse-dot {
    filter: drop-shadow(0 0 12px currentColor) drop-shadow(0 0 16px currentColor) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.coverage-dot:hover .pulse-ring {
    opacity: 0.8;
}

.coverage-dot:hover rect {
    opacity: 1;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.coverage-dot:hover text {
    font-weight: 900;
}

.coverage-label {
    pointer-events: none;
    font-family: var(--font-family);
    font-weight: 900;
    letter-spacing: 0.8px;
    text-shadow: none;
    filter: none;
}


.coverage-dot text {
    pointer-events: none;
    font-family: Arial, sans-serif;
}

.pulse-dot {
    filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 12px currentColor) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.pulse-ring {
    filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 15px currentColor);
}


@media (max-width: 768px) {
    .coverage-map-section {
        padding: var(--spacing-lg) 0;
    }
    
    .coverage-title {
        font-size: 2rem;
    }
    
    .coverage-subtitle {
        font-size: 1.1rem;
    }
    
    .continents-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .continent-box {
        padding: var(--spacing-md);
    }
    
    .continent-title {
        font-size: 1.3rem;
    }
    
    .country-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
}

@media (max-width: 480px) {
    .coverage-title {
        font-size: 1.75rem;
    }
    
    .coverage-subtitle {
        font-size: 1rem;
    }
    
    .continents-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-sm);
    }
    
    .continent-box {
        padding: var(--spacing-md);
    }
    
    .continent-header {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .continent-title {
        font-size: 1.2rem;
    }
    
    .country-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
}

/* iPhone specific styles */
@media (max-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    .coverage-label {
        font-size: 18px;
        font-weight: 900;
    }
    
    .coverage-dot circle.pulse-dot {
        r: 20 !important;
        stroke-width: 3 !important;
    }
    
    .coverage-dot circle.pulse-ring {
        r: 35 !important;
    }
    
    .coverage-dot rect {
        width: 60px !important;
        height: 24px !important;
    }
    
    .coverage-dot text {
        font-size: 18px !important;
    }
}

/* Ensure consistent dot sizes across all devices */
.coverage-dots-overlay {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.coverage-dot circle.pulse-dot {
    stroke-width: 2.5;
}

@media (max-width: 768px) {
    .coverage-dot circle.pulse-dot {
        r: 20;
        stroke-width: 3;
    }
    
    .coverage-dot circle.pulse-ring {
        r: 35;
    }
}

@media (max-width: 480px) {
    .coverage-dot circle.pulse-dot {
        r: 20;
        stroke-width: 3;
    }
    
    .coverage-dot circle.pulse-ring {
        r: 35;
    }
    
    .coverage-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}

/* Page Content */
.page-content {
    min-height: 400px;
    padding: var(--spacing-lg) 0;
}

.page-content h1 {
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.page-content h2 {
    font-size: 2rem;
    color: var(--color-text);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.page-content h3 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.page-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.page-content li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.8;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: auto;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: var(--spacing-sm);
}

.footer-heading {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-orange);
    padding-bottom: var(--spacing-xs);
    display: inline-block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: var(--spacing-xs) 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-orange);
    padding-left: var(--spacing-xs);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-copyright,
.footer-dmca {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-dmca {
    color: var(--color-orange);
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Mobile Hero Section */
    .hero-section {
        min-height: 100vh;
        padding: var(--spacing-lg) 0;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: var(--spacing-sm);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-badge {
        margin-bottom: var(--spacing-sm);
    }
    
    .badge-text {
        font-size: 1rem;
        padding: 0;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-lg);
        justify-content: center;
        align-items: center;
        width: 100%;
        display: flex;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 32px;
        font-size: 1rem;
        margin: 0;
        display: block;
    }
    
    .trust-box {
        margin-top: var(--spacing-md);
        padding: var(--spacing-sm) var(--spacing-md);
        max-width: 100%;
    }
    
    .trust-rating {
        gap: var(--spacing-xs);
    }
    
    .stars {
        font-size: 1.2rem;
    }
    
    .rating-score {
        font-size: 1.3rem;
    }
    
    .trustpilot-logo svg {
        height: 28px;
    }
    
    /* Mobile Header */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 0;
        align-items: stretch;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu-open {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: var(--spacing-sm);
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .nav-link.active {
        background-color: var(--color-bg-light);
        border-left: 3px solid var(--color-green);
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Mobile Features Section */
    .features-section {
        padding: var(--spacing-lg) 0;
    }
    
    .features-title {
        font-size: 2rem;
    }
    
    .features-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Mobile Channels Section */
    .channels-section {
        padding: var(--spacing-lg) 0;
    }
    
    .channels-title {
        font-size: 1.75rem;
    }
    
    .channels-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile Apps Section */
    .apps-section {
        padding: var(--spacing-lg) 0;
    }
    
    .apps-title {
        font-size: 1.75rem;
    }
    
    .apps-subtitle {
        font-size: 1rem;
    }
    
    .apps-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: var(--spacing-md);
    }
    
    /* Mobile VODs Section */
    .vods-section {
        padding: var(--spacing-lg) 0;
    }
    
    .vods-title {
        font-size: 1.75rem;
    }
    
    .vods-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile Pricing Section */
    .pricing-section {
        padding: var(--spacing-lg) 0;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-card-title {
        font-size: 1.2rem;
    }
    
    /* Mobile Channels Section - Show 3 images */
    .channels-title {
        font-size: 1.75rem;
    }
    
    .channels-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile VODs Section */
    .vods-section {
        padding: var(--spacing-lg) 0;
    }
    
    .vods-title {
        font-size: 1.75rem;
    }
    
    .vods-subtitle {
        font-size: 1rem;
    }
    
    /* Mobile: Show 2 VODs visible for full size */
    .vod-item {
        width: calc((100vw - 2 * var(--spacing-sm) - 1 * var(--spacing-lg)) / 2);
        min-width: 180px;
        max-width: 250px;
        height: 300px;
    }
    
    /* Mobile Pricing Section */
    .pricing-section {
        padding: var(--spacing-lg) 0;
    }
    
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .pricing-card {
        padding: var(--spacing-lg);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .pricing-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-plan-name {
        font-size: 1.3rem;
    }
    
    .see-more-btn {
        font-size: 0.9rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    /* Mobile Coverage Map Section */
    .coverage-map-section {
        padding: var(--spacing-lg) 0;
    }
    
    .coverage-title {
        font-size: 1.75rem;
    }
    
    .coverage-subtitle {
        font-size: 1rem;
    }
    
    .continents-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    /* Mobile SEO Content Section */
    .seo-content-section {
        padding: var(--spacing-lg) 0;
    }
    
    .seo-main-title {
        font-size: 1.5rem;
    }
    
    .seo-subtitle {
        font-size: 1.2rem;
    }
    
    .seo-paragraph {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .header-content {
        min-height: 60px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .main-content {
        padding: var(--spacing-md) 0;
    }
    
    .main-footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
    
    /* Small Mobile Hero Section */
    .hero-section {
        min-height: 100vh;
        padding: var(--spacing-md) 0;
    }
    
    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero-badge {
        margin-bottom: var(--spacing-xs);
    }
    
    .badge-text {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 28px;
        font-size: 0.95rem;
        margin: 0 auto;
    }
    
    .trust-box {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .stars {
        font-size: 1.1rem;
    }
    
    .rating-score {
        font-size: 1.2rem;
    }
    
    .trust-text {
        font-size: 0.85rem;
    }
    
    .trustpilot-logo svg {
        height: 26px;
    }
    
    /* Small Mobile Features Section */
    .features-title {
        font-size: 1.75rem;
    }
    
    .features-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: var(--spacing-sm);
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-card-title {
        font-size: 1.1rem;
    }
    
    .feature-card-description {
        font-size: 0.95rem;
    }
    
    /* Small Mobile Channels Section */
    .channels-title {
        font-size: 1.5rem;
    }
    
    .channels-subtitle {
        font-size: 0.9rem;
    }
    
    .channel-item {
        width: calc((100% - 2 * var(--spacing-md)) / 3);
        min-width: 100px;
        max-width: 150px;
        padding: 0;
    }
    
    .channel-logo {
        width: 60px;
        height: 40px;
    }
    
    .channel-logo img {
        max-width: 100%;
        max-height: 100%;
    }
    
    .channel-name {
        font-size: 0.85rem;
    }
    
    .channels-controls {
        margin-top: var(--spacing-sm);
        flex-wrap: wrap;
    }
    
    .channel-control-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    
    /* Small Mobile VODs Section */
    .vods-title {
        font-size: 1.5rem;
    }
    
    .vods-subtitle {
        font-size: 0.9rem;
    }
    
    .vod-item {
        min-width: 180px;
        max-width: 220px;
        height: 300px;
    }
    
    /* Small Mobile Pricing Section */
    .pricing-title {
        font-size: 1.75rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: var(--spacing-md);
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .pricing-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .pricing-card-featured:hover {
        transform: scale(1.02) translateY(-8px);
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-plan-name {
        font-size: 1.2rem;
    }
    
    .feature-item {
        font-size: 0.95rem;
    }
    
    .feature-gift {
        font-size: 1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   CHECKOUT SECTION STYLES
   ============================================ */

.checkout-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 245, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
    min-height: 80vh;
}

.checkout-content {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.checkout-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.checkout-form-section {
    background: rgba(255, 255, 255, 0.98);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(22, 155, 98, 0.1);
    transition: all 0.3s ease;
}

.checkout-form-section:hover {
    box-shadow: 0 12px 40px rgba(22, 155, 98, 0.15);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.selected-plan-box {
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.1) 0%, rgba(22, 155, 98, 0.05) 100%);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 2px solid var(--color-green);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(22, 155, 98, 0.1);
    transition: all 0.3s ease;
}

.selected-plan-box:hover {
    box-shadow: 0 6px 20px rgba(22, 155, 98, 0.15);
    transform: translateY(-2px);
}

.plan-info h3 {
    font-size: 1.5rem;
    color: var(--color-green);
    margin-bottom: var(--spacing-xs);
}

.plan-duration {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.plan-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--color-green);
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green);
}

.checkout-form {
    margin-top: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(22, 155, 98, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}

.checkout-btn {
    width: 100%;
    margin-top: var(--spacing-lg);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    position: relative;
    overflow: hidden;
}


.checkout-features-section {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 90px;
}

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

.checkout-features-list li {
    padding: var(--spacing-sm) 0;
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.checkout-features-list .feature-gift {
    color: var(--color-orange);
    font-weight: 700;
    background: rgba(255, 136, 62, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 6px;
    margin-top: var(--spacing-sm);
    border: 2px solid var(--color-orange);
}

/* Checkout Messages */
.checkout-message {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 500;
}

.checkout-success {
    background: rgba(22, 155, 98, 0.1);
    border: 2px solid var(--color-green);
    color: var(--color-green);
}

.checkout-error {
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid #dc3545;
    color: #dc3545;
}

.checkout-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Form Select */
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    background: var(--color-white);
    color: var(--color-text);
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}

/* WhatsApp Combined Wrapper */
.whatsapp-combined-wrapper {
    display: flex;
    gap: var(--spacing-sm);
    align-items: stretch;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.whatsapp-combined-wrapper:focus-within {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}

.country-code-select-wrapper {
    position: relative;
    flex-shrink: 0;
}

/* Country Dropdown */
.country-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.2s ease;
    transform: translateY(-5px);
}

.country-dropdown.dropdown-open {
    max-height: 380px;
    opacity: 1;
    overflow: visible;
    transform: translateY(0);
    border-color: var(--color-green);
}

.country-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    border-radius: 8px 8px 0 0;
}

.search-icon {
    width: 16px;
    height: 16px;
    color: #999;
    flex-shrink: 0;
}

.country-search {
    flex: 1;
    border: none;
    padding: 6px 0;
    font-size: 0.95rem;
    font-family: var(--font-family);
    outline: none;
    background: transparent;
    color: var(--color-text);
}

.country-search::placeholder {
    color: #999;
}

.countries-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 4px 0;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.15s ease;
    border-left: 3px solid transparent;
}

.country-item:hover {
    background: #f5f5f5;
    border-left-color: var(--color-green);
}

.loading-countries,
.no-results {
    padding: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

.item-flag {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    width: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-name {
    flex: 1;
    font-weight: 400;
    color: var(--color-text);
    font-size: 0.95rem;
}

.item-code {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
    flex-shrink: 0;
    min-width: 45px;
    text-align: right;
}

.whatsapp-number-input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.whatsapp-number-input-wrapper input {
    width: 100%;
    border: none;
    padding: 14px 18px;
    font-size: 1rem;
    outline: none;
    background: var(--color-white);
}


/* Form Help Text */
.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 4px;
    line-height: 1.5;
}

/* WhatsApp Validation */
.whatsapp-validation {
    margin-top: 6px;
    font-size: 0.875rem;
    min-height: 20px;
}

.validation-success {
    color: var(--color-green);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.validation-error {
    color: #dc3545;
    font-weight: 600;
}

.validation-info {
    color: var(--color-text-light);
}

/* Checkbox Label */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(22, 155, 98, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.6;
    user-select: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-text {
    color: var(--color-green);
    font-weight: 600;
}

/* Custom Channels Group */
#custom_channels_group {
    animation: fadeIn 0.3s ease;
}

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

#custom_channels_group textarea {
    font-family: var(--font-family);
    resize: vertical;
}

@media (max-width: 768px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .checkout-features-section {
        position: static;
    }
    
    .checkout-title {
        font-size: 2rem;
    }
    
    .checkout-subtitle {
        font-size: 1.1rem;
    }
    
    .whatsapp-input-wrapper-new {
        flex-wrap: wrap;
    }
    
    .country-trigger-btn {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
        justify-content: space-between;
    }
    
    .whatsapp-number-input-new {
        width: 100%;
        border-top: 1px solid var(--color-border);
        padding-left: 18px;
    }
    
    .country-code-prefix {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--color-border);
        padding: 12px 18px;
    }
    
    .country-dropdown-menu-new {
        position: fixed;
        left: var(--spacing-md);
        right: var(--spacing-md);
        max-width: calc(100vw - 2 * var(--spacing-md));
    }
}

/* Custom Scrollbar for Country Options */
.country-options-list::-webkit-scrollbar {
    width: 8px;
}

.country-options-list::-webkit-scrollbar-track {
    background: rgba(22, 155, 98, 0.05);
    border-radius: 4px;
}

.country-options-list::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 4px;
}

.country-options-list::-webkit-scrollbar-thumb:hover {
    background: var(--color-dark-green);
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
}

/* SEO Content Section */
.seo-content-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 255, 250, 0.95) 50%, rgba(255, 255, 255, 1) 100%);
}

.seo-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-text-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    background: transparent;
    padding: var(--spacing-xl);
    border-radius: 0;
    box-shadow: none;
}

.seo-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--color-green), var(--color-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-content-block {
    margin-bottom: var(--spacing-md);
}

.seo-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
}

.seo-paragraph {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    text-align: justify;
    margin-bottom: var(--spacing-md);
}


.seo-cta {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.seo-subscribe-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(22, 155, 98, 0.4);
    transition: all 0.3s ease;
}

.seo-subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(22, 155, 98, 0.6);
}

@media (max-width: 968px) {
    .seo-content-section {
        padding: var(--spacing-lg) 0;
    }
    
    .seo-text-content {
        padding: var(--spacing-lg);
    }
    
    .seo-main-title {
        font-size: 1.8rem;
    }
    
    .seo-subtitle {
        font-size: 1.3rem;
    }
    
    .seo-paragraph {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .seo-content-section {
        padding: var(--spacing-md) 0;
    }
    
    .seo-text-content {
        padding: var(--spacing-md);
    }
    
    .seo-main-title {
        font-size: 1.5rem;
    }
    
    .seo-subtitle {
        font-size: 1.2rem;
    }
    
    .seo-paragraph {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .seo-subscribe-btn {
        padding: 0.9rem 2rem;
        font-size: 1.1rem;
    }
}

/* ============================================
   PAGE HERO STYLES (Contact, About, FAQs)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--color-white);
    margin-bottom: var(--spacing-xl);
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--color-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(22, 155, 98, 0.15);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-green), var(--color-dark-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.contact-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
}

.contact-info-text {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.contact-info-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: var(--color-dark-orange);
    gap: var(--spacing-sm);
}

.contact-info-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-header {
    margin-bottom: var(--spacing-lg);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-xs);
}

.contact-form-subtitle {
    color: var(--color-text-light);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(22, 155, 98, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: var(--spacing-sm);
    width: 100%;
    justify-content: center;
}

.contact-submit-btn svg {
    width: 20px;
    height: 20px;
}

/* Quick Help Section */
.quick-help-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.05) 0%, rgba(255, 136, 62, 0.05) 100%);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.quick-help-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.quick-help-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-help-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-green);
    box-shadow: 0 8px 30px rgba(22, 155, 98, 0.2);
}

.quick-help-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.quick-help-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
}

.quick-help-card-text {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.quick-help-link {
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.quick-help-link:hover {
    color: var(--color-dark-orange);
    transform: translateX(5px);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .quick-help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: var(--spacing-lg);
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .quick-help-title {
        font-size: 2rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-story-section {
    padding: var(--spacing-xl) 0;
}

.about-story-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

/* Mission & Values Section */
.mission-values-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.05) 0%, rgba(255, 136, 62, 0.05) 100%);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.mission-card {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-green);
    box-shadow: 0 8px 30px rgba(22, 155, 98, 0.2);
}

.mission-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-md);
}

.mission-text {
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1rem;
}

.mission-text strong {
    color: var(--color-green);
    font-weight: 700;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-xl) 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.why-choose-item {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-green);
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(22, 155, 98, 0.2);
    border-left-color: var(--color-orange);
}

.why-choose-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-green);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    opacity: 0.3;
}

.why-choose-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-sm);
}

.why-choose-text {
    color: var(--color-text);
    line-height: 1.7;
    font-size: 1rem;
}

/* Stats Section */
.about-stats-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
}

/* About CTA Section */
.about-cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.05) 0%, rgba(255, 136, 62, 0.05) 100%);
}

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

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: var(--spacing-md);
}

.about-cta-text {
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .mission-values-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section-title {
        font-size: 2rem;
    }
    
    .mission-values-grid,
    .why-choose-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-text {
        font-size: 1.1rem;
    }
    
    .about-cta-buttons {
        flex-direction: column;
    }
    
    .about-cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   FAQs PAGE STYLES
   ============================================ */

.faqs-section {
    padding: var(--spacing-xl) 0;
}

.faqs-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faqs-intro {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.05) 0%, rgba(255, 136, 62, 0.05) 100%);
    border-radius: 16px;
}

.faqs-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.faqs-intro-text a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faqs-intro-text a:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

.faqs-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item.faq-active {
    border-color: var(--color-green);
    box-shadow: 0 4px 20px rgba(22, 155, 98, 0.15);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.05) 0%, rgba(255, 136, 62, 0.05) 100%);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.faq-active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    color: var(--color-text);
    line-height: 1.8;
    font-size: 1rem;
}

.faq-answer-content a {
    color: var(--color-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-answer-content a:hover {
    color: var(--color-orange);
    text-decoration: underline;
}

/* FAQs CTA Section */
.faqs-cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    border-top: 2px solid rgba(22, 155, 98, 0.1);
    border-bottom: 2px solid rgba(22, 155, 98, 0.1);
    position: relative;
}

.faqs-cta-content {
    text-align: center;
    color: var(--color-text);
}

.faqs-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.faqs-cta-text {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
    line-height: 1.7;
}

.faqs-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.faqs-cta-buttons .btn {
    font-weight: 700;
}

.faqs-cta-buttons .btn.btn-green {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-dark-green) 100%);
    color: var(--color-white);
}

.faqs-cta-buttons .btn.btn-green:hover {
    background: linear-gradient(135deg, var(--color-dark-green) 0%, var(--color-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 155, 98, 0.3);
}

.faqs-cta-buttons .btn.btn-orange {
    background: var(--color-orange);
    color: var(--color-white);
}

.faqs-cta-buttons .btn.btn-orange:hover {
    background: var(--color-dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

@media (max-width: 768px) {
    .faqs-intro {
        padding: var(--spacing-md);
    }
    
    .faqs-intro-text {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
        font-size: 0.95rem;
    }
    
    .faqs-cta-title {
        font-size: 2rem;
    }
    
    .faqs-cta-text {
        font-size: 1.1rem;
    }
    
    .faqs-cta-buttons {
        flex-direction: column;
    }
    
    .faqs-cta-buttons .btn {
        width: 100%;
    }
}
