/* 
* iptv malta - Main Stylesheet
* Author: Manus AI
* Version: 1.0
*/

/* ===== Base Styles ===== */
:root {
    /* Color Variables */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #f97316;
    --accent-color: #22c55e;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --gray-light: #e2e8f0;
    --gray-dark: #334155;
    
    /* Typography */
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-round: 9999px;
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* New Shape Variables */
    --card-tilt: rotate(-2deg);
    --card-tilt-reverse: rotate(2deg);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-md);
}

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

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

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1565C0;
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #ff5252;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== Header ===== */
header {
    background: linear-gradient(135deg, #000000 0%, #052b68 100%);
    color: white;
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
}

.logo img {
    height: 40px;
}

.logo a {
    text-decoration: none;
    color: white;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: white;
    transition: color 0.3s ease;
}

.logo h1:hover {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    color: white;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    transform: translateY(-2px);
}

.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.mobile-menu-btn {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0D47A1 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0.1;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    padding-right: var(--spacing-lg);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===== Features Section ===== */
.features {
    background-color: white;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: center;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius-round);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--gray-color);
}

/* ===== Pricing Section ===== */
.pricing {
    background-color: var(--gray-light);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.pricing-cards .section-header {
    grid-column: 1 / -1;
    text-align: center;
    margin: 60px 0 30px;
    position: relative;
}

.pricing-cards .section-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.pricing-cards .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
}

.pricing-cards .section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-card.multi-device {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.pricing-card.multi-device:hover {
    transform: translateY(-5px);
}

.pricing-card.multi-device .pricing-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-card.multi-device .pricing-header h3 {
    color: #343a40;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-card.multi-device .price {
    color: #0056b3;
    font-size: 2.2rem;
    font-weight: 700;
}

.pricing-card.multi-device .device-explanation {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 15px 0;
    padding: 10px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 3px solid #0056b3;
}

.pricing-card.multi-device .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.pricing-card.multi-device .pricing-features li {
    color: #495057;
    margin: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.pricing-card.multi-device .pricing-features i {
    color: #0056b3;
    font-size: 1.1rem;
    background: rgba(0, 86, 179, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pricing-card.multi-device .pricing-cta {
    margin-top: 20px;
}

.pricing-card.multi-device .btn-outline {
    border: 1px solid #0056b3;
    color: #0056b3;
    padding: 10px 25px;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.pricing-card.multi-device .btn-outline:hover {
    background: #0056b3;
    color: #ffffff;
    transform: translateY(-2px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-light);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 1.2rem;
    margin-right: 2px;
}

.period {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
}

.pricing-features ul {
    margin-bottom: var(--spacing-lg);
}

.pricing-features li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--accent-color);
    margin-right: var(--spacing-sm);
}

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

.pricing-payment-methods {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.payment-methods-divider {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.payment-methods-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 86, 179, 0.2), transparent);
}

.payment-methods-divider span {
    position: relative;
    background: var(--light-color);
    padding: 0 var(--spacing-lg);
    color: var(--gray-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.payment-methods-image {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.payment-methods-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.payment-methods-image img {
    width: 100%;
    height: auto;
    opacity: 0.9;
    transition: opacity var(--transition-normal);
}

.payment-methods-image:hover img {
    opacity: 1;
}

@media (max-width: 768px) {
    .pricing-payment-methods {
        padding: 0 var(--spacing-md);
        margin-top: var(--spacing-lg);
    }

    .payment-methods-image {
        max-width: 100%;
        padding: var(--spacing-md);
    }

    .payment-methods-divider span {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }
}

/* ===== Channels Section ===== */
.channels {
    background-color: white;
}

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

.channel-category {
    margin-bottom: var(--spacing-lg);
}

.channel-category h3 {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-light);
}

.channel-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.channel-logo {
    background-color: white;
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.channel-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.channels-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.channels-note {
    color: var(--gray-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 250px;
}

.btn-lg i {
    margin-left: var(--spacing-sm);
    transition: transform var(--transition-fast);
}

.btn-lg:hover i {
    transform: translateX(5px);
}

/* ===== Devices Section ===== */
.devices {
    background-color: var(--gray-light);
}

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

.device-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-normal);
}

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

.device-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .pricing-card.multi-device {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .pricing-card.multi-device .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .pricing-card.multi-device .price {
        font-size: 2rem;
    }
    
    .pricing-card.multi-device .device-explanation {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .pricing-card.multi-device .pricing-features li {
        font-size: 1rem;
    }
    
    .pricing-card.multi-device .btn-outline {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* ===== Trust Building Section ===== */
.trust-section {
    background-color: white;
    padding: var(--spacing-xl) 0;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-dark);
    font-weight: 500;
}

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

.trust-feature {
    padding: var(--spacing-xl);
    background-color: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background-color: #EBF5FF;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-round);
    flex-shrink: 0;
}

.trust-feature-content {
    flex: 1;
}

.trust-feature h3 {
    font-size: 1.25rem;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-feature p {
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.trust-testimonials {
    margin-bottom: var(--spacing-xl);
}

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

.testimonial-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

.testimonial-rating {
    color: #f1c40f;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    color: var(--gray-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.testimonial-author p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
}

.badge {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    flex: 0 1 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

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

.badge img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.trust-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.trust-cta h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    color: white;
}

.trust-cta p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

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

@media (max-width: 768px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .trust-feature {
        padding: var(--spacing-lg);
    }

    .trust-feature h3 {
        font-size: 1.1rem;
    }

    .trust-feature p {
        font-size: 0.9rem;
    }

    .badge {
        flex: 0 1 calc(50% - var(--spacing-md));
        padding: var(--spacing-sm);
        min-height: 100px;
    }
    
    .badge img {
        max-height: 50px;
        max-width: 100px;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        gap: var(--spacing-sm);
    }
    
    .badge {
        flex: 0 1 100%;
        min-height: 90px;
    }
    
    .badge img {
        max-height: 45px;
        max-width: 90px;
    }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 var(--spacing-lg);
    }

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

    .pricing-cards, 
    .features-grid,
    .devices-grid {
        gap: var(--spacing-md);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 15px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: var(--spacing-xl);
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-image img {
        max-width: 80%;
    }

    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

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

    /* Header Mobile Styles */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #000000 0%, #052b68 100%);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .cta-button {
        display: none;
    }

    /* Hero Mobile Styles */
    .hero h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Features Mobile Styles */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing Mobile Styles */
    .pricing-card {
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    /* Channels Mobile Styles */
    .channels-grid {
        grid-template-columns: 1fr;
    }

    .channel-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Trust Section Mobile Styles */
    .trust-features {
        grid-template-columns: 1fr;
        padding: 0 var(--spacing-md);
    }

    .trust-feature {
        padding: var(--spacing-lg);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    /* Devices Mobile Styles */
    .devices-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Mobile Styles */
    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: var(--spacing-xl);
    }

    .contact-form {
        width: 100%;
    }

    /* Footer Mobile Styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: var(--spacing-md);
    }

    .trust-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .trust-icon {
        margin-bottom: var(--spacing-md);
    }

    .testimonial-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-bottom: var(--spacing-sm);
    }

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

/* Add mobile menu functionality */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--spacing-sm);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Add smooth transitions for mobile menu */
.nav-links {
    transition: all 0.3s ease;
}

.nav-links.active {
    animation: slideDown 0.3s ease forwards;
}

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

/* ===== Contact Section ===== */
.contact {
    background-color: var(--light-color);
    padding: var(--spacing-xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: #1565C0;
    margin-bottom: 1rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.contact-text p {
    color: var(--gray-color);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-form {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Contact Mobile Styles */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .contact-icon {
        margin-bottom: var(--spacing-sm);
    }
    
    .contact-text h3 {
        font-size: 1.1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-content {
        gap: var(--spacing-md);
    }
    
    .contact-item {
        padding: var(--spacing-sm);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: var(--spacing-md);
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px;
        font-size: 0.9rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, #000000 0%, #0D47A1 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.footer-logo {
    position: relative;
    padding: var(--spacing-lg);
    background: rgba(0, 86, 179, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-logo h1 {
    font-size: 2.2rem;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo p {
    color: #e6f3ff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: var(--spacing-md);
}

.footer-column {
    padding: var(--spacing-md);
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    color: #e6f3ff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: #ffffff;
    padding-left: var(--spacing-sm);
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-column a:hover::before {
    width: 15px;
    opacity: 1;
}

.footer-bottom {
 
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
}

.copyright {
    color: #e6f3ff;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(0, 61, 127, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.payment-methods img {
    height: 32px;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(1.2) contrast(1.2);
}

.payment-methods img:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: brightness(1.4) contrast(1.2);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer-bottom {
        padding: var(--spacing-lg);
    }

    .footer-bottom-left {
        flex-direction: column;
        gap: var(--spacing-lg);
        align-items: center;
        text-align: center;
    }

    .payment-methods {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column a::before {
        display: none;
    }
}

/* ===== FAQ Section ===== */
.faq {
    background-color: var(--light-color);
    padding: var(--spacing-xl) 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: background-color var(--transition-fast);
  
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question {
    background-color: #B3E5FC;
}

 

.faq-item.active .faq-question i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: var(--spacing-lg);
    max-height: 300px;
    border-top: 1px solid var(--gray-light);
}

.faq-answer p {
    color: var(--gray-color);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
    .faq-accordion {
        padding: 0 var(--spacing-md);
    }

    .faq-question {
        padding: var(--spacing-md);
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: var(--spacing-md);
    }

    .faq-item.active .faq-answer {
        padding: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* ===== Security & Payment Section ===== */
.security {
    background: radial-gradient(circle at 30% 20%, #f8f9fa 0%, #e9ecef 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.security::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.security::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.03) 0%, rgba(0, 86, 179, 0) 60%);
    border-radius: 50%;
    z-index: 1;
}

.security-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.security-badge {
    flex: 0 1 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 50px 20px 50px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.security-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.security-badge:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.1);
}

.security-badge:hover::before {
    opacity: 1;
}

.security-badge img {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.security-badge:hover img {
    transform: scale(1.1) rotate(5deg);
}

.security-badge p {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
    position: relative;
    padding-bottom: 1rem;
}

.security-badge p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
}

.payment-methods {
    position: relative;
    background: white;
    padding: 3rem;
    border-radius: 60px 30px 60px 60px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.payment-methods::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 60%);
    opacity: 0.1;
    border-radius: 0 60px 0 100%;
}

.payment-methods-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 45px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: grayscale(100%) opacity(0.6);
}

.payment-methods img:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-5px) scale(1.1);
}

/* Security Section Mobile Styles */
@media (max-width: 992px) {
    .security-badges {
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }

    .security-badge {
        flex: 0 1 calc(50% - var(--spacing-lg));
    }
}

@media (max-width: 768px) {
    .security {
        padding: var(--spacing-lg) 0;
    }

    .security-badge {
        flex: 0 1 100%;
        max-width: 400px;
        padding: 2rem;
        border-radius: 40px 15px 40px 40px;
    }

    .payment-methods {
        padding: 2rem;
        margin: 0 var(--spacing-md);
        border-radius: 40px 20px 40px 40px;
    }

    .payment-methods-container {
        gap: 2rem;
    }

    .payment-methods img {
        height: 35px;
    }
}

@media (max-width: 576px) {
    .security-badge {
        padding: 1.5rem;
        border-radius: 30px 10px 30px 30px;
    }

    .security-badge img {
        width: 60px;
        height: 60px;
    }

    .payment-methods {
        padding: 1.5rem;
        border-radius: 30px 15px 30px 30px;
    }

    .payment-methods-container {
        gap: 1.5rem;
    }

    .payment-methods img {
        height: 30px;
    }
}

/* Remove floating animations */
.pricing-card,
.feature-card,
.trust-feature,
.security-badge,
.testimonial-card {
    animation: none;
}

/* ===== Cookie Consent ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 86, 179, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 320px;
    width: auto;
    display: none;
    transform: translateY(100px);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.cookie-consent.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent .container {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
}

.cookie-consent p {
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.cookie-consent a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent a:hover {
    color: #e6f3ff;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
}

.cookie-buttons .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    min-width: 70px;
    text-align: center;
}

.cookie-buttons .btn-primary {
    background: #ffffff;
    color: #0056b3;
    border: none;
}

.cookie-buttons .btn-primary:hover {
    background: #e6f3ff;
    transform: translateY(-1px);
}

.cookie-buttons .btn-outline {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.cookie-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        width: auto;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 12px 15px;
    }
    
    .cookie-consent p {
        font-size: 0.8rem;
    }
    
    .cookie-buttons .btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--border-color);
    gap: var(--spacing-xl);
}

.footer-bottom-section .footer-social,
.footer-bottom-section .footer-column {
    flex: 1;
    max-width: 320px;
}

.footer-bottom-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-bottom-section .social-icons {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.footer-bottom-section .social-icons a {
    color: var(--text-color);
    font-size: 1.4rem;
    transition: all var(--transition-normal);
    padding: var(--spacing-xs);
    border-radius: 50%;
    background: var(--background-light);
}

.footer-bottom-section .social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: var(--background-hover);
}

.footer-bottom-section .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-section .footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-bottom-section .footer-column ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-normal);
    font-size: 0.95rem;
}

.footer-bottom-section .footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-xs);
}

@media (max-width: 768px) {
    .footer-bottom-section {
        flex-direction: column;
        gap: var(--spacing-lg);
        padding: var(--spacing-md) 0;
    }

    .footer-bottom-section .footer-social,
    .footer-bottom-section .footer-column {
        max-width: 100%;
        text-align: center;
    }

    .footer-bottom-section .social-icons {
        justify-content: center;
    }

    .footer-bottom-section .footer-column ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }

    .footer-bottom-section .footer-column ul li {
        margin-bottom: 0;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
    }
}

/* Sales Notification Styles */
.sales-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 15px;
    max-width: 350px;
    z-index: 1000;
    display: none;
    animation: slideIn 0.5s ease;
    border-left: 4px solid var(--primary-color);
}

.sales-notification-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.sales-notification-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 10px;
}

.sales-notification-header h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.sales-notification-content {
    display: flex;
    align-items: center;
}

.sales-notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
    flex-shrink: 0;
}

.sales-notification-text {
    flex: 1;
}

.sales-notification-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sales-notification-text .location {
    font-size: 0.8rem;
    color: #777;
    margin-top: 3px;
}

.sales-notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
}

.sales-notification-close:hover {
    color: #333;
}

.sales-notification-time {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(-100%); opacity: 0; }
}

@media (max-width: 768px) {
    .sales-notification {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* Supported Devices Styles */
.supported-devices {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.device i {
    font-size: 2rem;
    color: white;
}

.device span {
    color: white;
    font-size: 0.9rem;
    text-transform: capitalize;
}

@media (max-width: 768px) {
    .supported-devices {
        gap: 1rem;
    }
    .device i {
        font-size: 1.5rem;
    }
    .device span {
        font-size: 0.8rem;
    }
}

/* Channel Logo Styles */
.channel-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.channel-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(33.333% - 1rem);
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.channel-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    z-index: 1;
}

.channel-name {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
    text-align: center;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Specific channel styles */
.channel-logo:nth-child(1) .channel-name {
    color: #e30613; /* TF1 red */
    font-weight: 700;
}

.channel-logo:nth-child(2) .channel-name {
    color: #0057b8; /* TV2 blue */
}

.channel-logo:nth-child(3) .channel-name {
    color: #00a0e9; /* TVNorge blue */
}

.channel-logo:nth-child(4) .channel-name {
    color: #000000; /* Canal+ black */
    font-weight: 700;
}

.channel-logo:nth-child(5) .channel-name {
    color: #ffcc00; /* M6 yellow */
    font-weight: 700;
}

.channel-logo:nth-child(6) .channel-name {
    color: #e30613; /* Arte red */
}

.channel-logo:nth-child(7) .channel-name {
    color: #000000; /* C8 black */
    font-weight: 700;
}

.channel-logo:nth-child(8) .channel-name {
    color: #ff0000; /* W9 red */
    font-weight: 700;
}

.channel-logo:nth-child(9) .channel-name {
    color: #0057b8; /* TMC blue */
}

/* Sport channels */
.channel-category:nth-child(2) .channel-logo:nth-child(1) .channel-name {
    color: #000000; /* Canal+ Sport black */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(2) .channel-name {
    color: #e30613; /* Eurosport red */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(3) .channel-name {
    color: #0057b8; /* RMC Sport blue */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(4) .channel-name {
    color: #e30613; /* beIN Sports red */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(5) .channel-name {
    color: #ff0000; /* ESPN red */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(6) .channel-name {
    color: #0057b8; /* Olympia blue */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(7) .channel-name {
    color: #e30613; /* L'Équipe red */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(8) .channel-name {
    color: #00a0e9; /* Sport+ blue */
    font-weight: 700;
}

.channel-category:nth-child(2) .channel-logo:nth-child(9) .channel-name {
    color: #00a050; /* Golf+ green */
    font-weight: 700;
}

/* Entertainment channels */
.channel-category:nth-child(3) .channel-logo:nth-child(1) .channel-name {
    color: #000000; /* Canal+ Cinéma black */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(2) .channel-name {
    color: #000000; /* Canal+ Décalé black */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(3) .channel-name {
    color: #000000; /* Canal+ Docs black */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(4) .channel-name {
    color: #000000; /* Canal+ Kids black */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(5) .channel-name {
    color: #000000; /* Canal+ Grand Écran black */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(6) .channel-name {
    color: #e50914; /* Netflix red */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(7) .channel-name {
    color: #113ccf; /* Disney+ blue */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(8) .channel-name {
    color: #5822b4; /* HBO purple */
    font-weight: 700;
}

.channel-category:nth-child(3) .channel-logo:nth-child(9) .channel-name {
    color: #00a8e1; /* Prime blue */
    font-weight: 700;
}

@media (max-width: 768px) {
    .channel-logo {
        width: calc(50% - 1rem);
        height: 50px;
    }
    
    .channel-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .channel-logo {
        width: calc(33.333% - 1rem);
        height: 45px;
    }
    
    .channel-name {
        font-size: 0.8rem;
    }
}

/* How It Works Section Styles */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.step-icon {
    margin: 20px 0;
    font-size: 3rem;
    color: var(--primary-color);
}

.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
    }
    
    .step-card {
        margin-bottom: 30px;
    }
}

/* Contact Page Specific Styles */
.contact-page {
    padding: 0;
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-split {
    display: flex;
    min-height: 80vh;
    position: relative;
}

.contact-split-left {
    flex: 1;
    background: var(--primary-color);
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-split-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/contact/pattern.svg');
    opacity: 0.1;
    z-index: 1;
}

.contact-split-left-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.contact-split-left h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    color: wheat;
}

.contact-split-left h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: white;
    border-radius: 2px;
}

.contact-split-left p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.contact-split-left-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.contact-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-split-right {
    flex: 1;
    background: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-container h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-form {
    width: 100%;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(3, 169, 244, 0.1);
}

.contact-form .btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s ease;
    z-index: -1;
}

.contact-form .btn:hover::before {
    width: 100%;
}

.contact-methods-section {
    padding: 5rem 0;
    background: white;
}

.contact-methods-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-methods-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-methods-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.contact-methods-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.contact-methods-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #1565C0;
    margin-bottom: 1rem;
}

.contact-method h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-method p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-method h2 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .contact-icon {
        font-size: 1.75rem;
    }

    .contact-method h2 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .contact-method p {
        font-size: 0.9rem;
    }
}

.contact-info-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info-box {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.contact-info-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    position: relative;
}

.contact-info-box p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-address {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-address::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.contact-address h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
}

.contact-address p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.contact-address p:last-child {
    margin-bottom: 0;
}

.contact-hours {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.contact-hours-item {
    margin: 0.5rem 1.5rem;
    text-align: center;
    background: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.contact-hours-item:hover {
    transform: translateY(-5px);
}

.contact-hours-item .day {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-hours-item .time {
    color: var(--gray-dark);
}

.map-container {
    margin-top: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1.2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
    border-left: 4px solid #28a745;
    animation: fadeIn 0.5s ease;
}

.contact-error {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 1.2rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    text-align: center;
    border-left: 4px solid #dc3545;
    animation: fadeIn 0.5s ease;
}

.form-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none;
}

.form-loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.phone {
    background: var(--primary-color);
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Contact Page Mobile Styles */
@media (max-width: 768px) {
    .contact-split {
        flex-direction: column;
        padding: 20px;
    }

    .contact-split-left,
    .contact-split-right {
        width: 100%;
        padding: 20px;
    }

    .contact-split-left-content {
        text-align: center;
        padding: 20px 0;
    }

    .contact-split-left-stats {
        flex-direction: column;
        gap: 20px;
    }

    .contact-stat {
        width: 100%;
    }

    .contact-form-container {
        padding: 20px;
    }

    .contact-methods-section {
        padding: 40px 20px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 30px;
    }

    .contact-method {
        width: 100%;
        padding: 20px;
    }

    section.contact-split {
        padding: 0px !important;
    }
    
    .contact-info-section {
      /*  padding: 40px 20px; */
    }

    .contact-info-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-address {
        width: 100%;
        padding: 20px;
    }

    .map-container {
        height: 300px;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .chat-widget {
        width: 100%;
        height: 100%;
        right: 0;
        bottom: 0;
        border-radius: 0;
    }

    .chat-header {
        padding: 15px;
    }

    .chat-body {
        height: calc(100vh - 120px);
    }

    .chat-input {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-split-left-content h1 {
        font-size: 28px;
    }

    .contact-split-left-content p {
        font-size: 16px;
    }

    .contact-stat-number {
        font-size: 24px;
    }

    .contact-stat-label {
        font-size: 14px;
    }

    .contact-form-container h2 {
        font-size: 24px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
        padding: 12px;
    }

    .contact-methods-header h2 {
        font-size: 24px;
    }

    .contact-method h2 {
        font-size: 20px;
    }

    .contact-method p {
        font-size: 14px;
    }

    .contact-address h2 {
        font-size: 24px;
    }

    .contact-hours-item {
        padding: 10px;
    }

    .day {
        font-size: 14px;
    }

    .time {
        font-size: 14px;
    }
}

/* Contact Methods Container Mobile Styles */
@media (max-width: 992px) {
    .contact-methods-container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-methods-container {
        padding: 0 0.5rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-method h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .contact-method p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-methods-header {
        margin-bottom: 2rem;
    }

    .contact-methods-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .contact-methods-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .contact-methods-container {
        padding: 0 0.25rem;
    }

    .contact-method {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-method h2 {
        font-size: 1.2rem;
    }

    .contact-method p {
        font-size: 0.9rem;
    }

    .contact-methods-header h2 {
        font-size: 1.5rem;
    }

    .contact-methods-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .trust-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: var(--spacing-lg);
    }

    .trust-icon {
        margin-bottom: var(--spacing-md);
        margin-right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .trust-feature-content {
        text-align: center;
    }
}

.highlight-mark {
    position: relative;
    display: inline-block;
    color: inherit;
}

.highlight-mark::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 0, 0.3);
    z-index: -1;
    border-radius: 2px;
}

   /* About Page Specific Styles */
        .hero-section {
            position: relative;
            height: 80vh;
            background: linear-gradient(135deg, #03A9F4, rgba(0, 0, 0, 0.6)), url(images/about/hero-bg.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
          
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
            z-index: 1;
        }
 
 

        .hero-content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.3s;
            opacity: 0;
            animation-fill-mode: forwards;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .hero-btn {
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius-md);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .hero-btn:hover::before {
            width: 100%;
        }

        .hero-btn-primary {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }

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

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .hero-scroll-indicator i {
            font-size: 2rem;
            color: white;
        }

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

        @media (max-width: 768px) {
            .hero-section {
                height: 70vh;
            }

            .hero-content {
                padding: 2rem;
                width: 90%;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 60vh;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

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

        .stats-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .timeline-section {
            padding: 5rem 0;
            position: relative;
            background: var(--light-color);
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: white;
            border: 4px solid var(--primary-color);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item:nth-child(even)::after {
            left: -16px;
        }

        .timeline-content {
            padding: 20px;
            background-color: white;
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
        }

        .vision-section {
            padding: 5rem 0;
            background: white;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            align-items: center;
        }

        .vision-image {
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .vision-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .vision-image:hover img {
            transform: scale(1.05);
        }

        .vision-content h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .vision-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .vision-list {
            list-style: none;
            padding: 0;
        }

        .vision-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .vision-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .team-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
        }

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

        .team-member {
            background: white;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-member img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-member-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-member-info h3 {
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .team-member-info p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .team-social a {
            color: var(--text-muted);
            transition: color 0.3s ease;
        }

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

        .testimonials-section {
            padding: 5rem 0;
            background: white;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .testimonial-item {
            text-align: center;
            padding: 2rem;
            background: var(--light-color);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .cta-buttons .btn {
            padding: 0.8rem 2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .cta-buttons .btn-primary:hover {
            background: rgba(255, 255, 255, 0.9);
        }

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

        .cta-buttons .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

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

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item::after {
                left: 15px;
            }

            .timeline-item:nth-child(even)::after {
                left: 15px;
            }

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

            .vision-image {
                order: -1;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

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

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }

           /* About Page Specific Styles */
           .hero-section {
            position: relative;
            height: 80vh;
            background: linear-gradient(135deg, #03A9F4, rgba(0, 0, 0, 0.6)), url(images/about/hero-bg.jpg);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
          
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
            z-index: 1;
        }

      
 

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease 0.3s;
            opacity: 0;
            animation-fill-mode: forwards;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .hero-btn {
            padding: 0.8rem 2rem;
            border-radius: var(--border-radius-md);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .hero-btn:hover::before {
            width: 100%;
        }

        .hero-btn-primary {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }

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

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .hero-scroll-indicator i {
            font-size: 2rem;
            color: white;
        }

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

        @media (max-width: 768px) {
            .hero-section {
                height: 70vh;
            }

            .hero-content {
                padding: 2rem;
                width: 90%;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 60vh;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

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

        .stats-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .timeline-section {
            padding: 5rem 0;
            position: relative;
            background: var(--light-color);
        }

        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: white;
            border: 4px solid var(--primary-color);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item:nth-child(even)::after {
            left: -16px;
        }

        .timeline-content {
            padding: 20px;
            background-color: white;
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
        }

        .vision-section {
            padding: 5rem 0;
            background: white;
        }

        .vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            align-items: center;
        }

        .vision-image {
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }

        .vision-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .vision-image:hover img {
            transform: scale(1.05);
        }

        .vision-content h2 {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .vision-content p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .vision-list {
            list-style: none;
            padding: 0;
        }

        .vision-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
        }

        .vision-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .team-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--light-color) 0%, #f8f9fa 100%);
        }

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

        .team-member {
            background: white;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-member img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .team-member-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-member-info h3 {
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .team-member-info p {
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .team-social a {
            color: var(--text-muted);
            transition: color 0.3s ease;
        }

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

        .testimonials-section {
            padding: 5rem 0;
            background: white;
        }

        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .testimonial-item {
            text-align: center;
            padding: 2rem;
            background: var(--light-color);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-color);
        }

        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .cta-buttons .btn {
            padding: 0.8rem 2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

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

        .cta-buttons .btn-primary:hover {
            background: rgba(255, 255, 255, 0.9);
        }

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

        .cta-buttons .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

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

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item::after {
                left: 15px;
            }

            .timeline-item:nth-child(even)::after {
                left: 15px;
            }

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

            .vision-image {
                order: -1;
            }
        }

        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }

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

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
        }