/* Complete CSS with all enhancements */
:root {
    --primary: #6c63ff;
    --primary-dark: #4d44db;
    --primary-light: #a29bfe;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --dark: #2d3436;
    --dark-gray: #636e72;
    --medium-gray: #b2bec3;
    --light-gray: #dfe6e9;
    --white: #ffffff;
    --success: #00b894;
    --warning: #fdcb6e;
    --error: #d63031;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Offer Banner */
.offer-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.offer-content {
    position: relative;
    font-size: 0.95rem;
}

.offer-close {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}

.header-scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.tagline {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: -5px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger .line {
    width: 25px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    position: relative;
    overflow: hidden;
}

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

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(108, 99, 255, 0.2);
    z-index: -1;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: rgba(108, 99, 255, 0.1);
}

.cta-button i {
    margin-right: 8px;
    font-size: 1.1rem;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.trust-badges {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

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

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

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

.service-header {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.service-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.service-header img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-header img {
    transform: scale(1.1);
}

.service-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

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

.service-card:hover .service-header h3::after {
    width: 80px;
}

.toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    margin-top: 15px;
}

.toggle-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.toggle-btn i {
    transition: var(--transition);
}

.service-details {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--white);
}

.service-details.active {
    max-height: 2000px;
    padding: 30px;
    border-top: 1px solid var(--light-gray);
}

.service-details p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.service-details ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--dark-gray);
}

.service-details ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-button {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
}

.service-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Feature Explorer */
.feature-explorer {
    margin: 25px 0;
}

.feature-search {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.feature-search:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.feature {
    background: rgba(108, 99, 255, 0.05);
    border: 1px solid rgba(108, 99, 255, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition-fast);
}

.feature:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

/* Social Services */
.social-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.platform {
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.platform.instagram {
    border-color: #E1306C;
    background: rgba(225, 48, 108, 0.03);
}

.platform.tiktok {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.03);
}

.platform.facebook {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.03);
}

.platform.youtube {
    border-color: #FF0000;
    background: rgba(255, 0, 0, 0.03);
}

.platform h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform h4 i {
    font-size: 1.2rem;
}

.platform ul {
    padding-left: 15px;
}

.platform ul li {
    font-size: 0.85rem;
    margin-bottom: 6px;
    list-style-type: square;
    color: var(--dark-gray);
}

.platform ul li::before {
    display: none;
}

/* Growth Calculator */
.growth-calculator {
    background: rgba(108, 99, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid rgba(108, 99, 255, 0.1);
}

.growth-calculator h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.calculator-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#platform-select {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

#growth-range {
    flex: 2;
}

#growth-amount {
    min-width: 60px;
    text-align: right;
    font-weight: 600;
    color: var(--primary);
}

.calculator-result {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Pricing Badge */
.pricing-badge {
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 15px 0;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.price {
    font-size: 1.2rem;
}

.duration {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Service Comparison */
.service-comparison {
    margin-top: 50px;
    overflow-x: auto;
}

.service-comparison h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

th,
td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

tr:nth-child(even) {
    background: rgba(108, 99, 255, 0.03);
}

tr:hover {
    background: rgba(108, 99, 255, 0.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.rating {
    color: var(--warning);
    font-size: 0.9rem;
}

blockquote {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: rgba(108, 99, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.client-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(100%);
}

.client-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    font-weight: 500;
    gap: 8px;
}

.whatsapp-float a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* Live Chat */
.live-chat {
    position: fixed;
    bottom: 30px;
    right: 100px;
    z-index: 100;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.chat-toggle:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.chat-toggle i {
    font-size: 1.5rem;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: scale(0);
    transform-origin: bottom right;
    transition: var(--transition);
}

.chat-window.active {
    transform: scale(1);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

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

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

    .trust-badges {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        margin-top: 30px;
    }
}

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

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }

    nav ul.active {
        left: 0;
    }

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

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

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

    .social-services {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .live-chat {
        bottom: 20px;
        right: 90px;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }

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

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

    .calculator-controls {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Mobile TV Packages */
.channel-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.package {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

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

.package h4 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package h4 i {
    font-size: 1.1rem;
}

.package ul {
    margin: 15px 0;
    padding-left: 20px;
}

.package ul li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.package-price {
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}

.premium {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Device Compatibility */
.device-compatibility {
    margin: 25px 0;
}

.devices {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.device i {
    font-size: 1.8rem;
    color: var(--primary);
}

/* International Numbers */
.country-selector {
    margin: 25px 0;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.country {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: rgba(108, 99, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

.flag {
    font-size: 1.2rem;
}

.price {
    font-weight: 600;
    color: var(--primary);
}

.number-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.feature i {
    color: var(--success);
}

/* Web Development */
.development-process {
    margin: 25px 0;
}

.process-steps {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.step {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h6 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.web-technologies {
    margin: 25px 0;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.tech-badge {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Other Tech Services */
.tech-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tech-service {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition);
}

.tech-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary);
}

.tech-service h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.tech-service ul {
    padding-left: 20px;
}

.tech-service ul li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.tech-support {
    margin: 25px 0;
    text-align: center;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.support-option {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-option.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.support-option.phone {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
}

.support-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .channel-packages {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .tech-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .tech-services-grid {
        grid-template-columns: 1fr;
    }

    .support-options {
        flex-direction: column;
    }

    .support-option {
        justify-content: center;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.about-content {
    margin-bottom: 50px;
}

.about-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: rgba(108, 99, 255, 0.03);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-sm);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

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

.team-section {
    margin-top: 60px;
}

.team-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.team-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.team-member {
    display: flex;
    gap: 30px;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--light-gray);
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.bio {
    margin-bottom: 20px;
    line-height: 1.7;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.about-image {
    position: relative;
    text-align: center;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

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

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.info-item p {
    margin: 0;
    font-size: 1rem;
}

.info-item a {
    color: var(--dark);
    transition: var(--transition);
}

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

.business-hours {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.business-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.business-hours p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.social-links h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

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

.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 0;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
}

.logo-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.payment-methods {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    .team-member {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .logo-col p {
        text-align: center;
    }
}