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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Color Variables */
:root {
    --primary-blue: #003EE8;
    --secondary-blue: #003EE8;
    --dark-blue: #00005F;
    --white: #FFFFFF;
    --green-cta: #00D863;
    --green-hover: #00C157;
    --red-accent: #FF0000;
    --text-dark: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 62, 232, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-desktop {
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cta-nav {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 30px !important;
    border: 2px solid var(--white) !important;
    transition: all 0.3s ease !important;
}

.cta-nav:hover {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

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

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

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

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding-top: 80px;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.nav-links-mobile {
    list-style: none;
    padding: 40px;
}

.nav-links-mobile li {
    margin-bottom: 30px;
}

.nav-links-mobile a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    justify-items: center;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-left .hero-text-light {
    color: rgba(255, 255, 255, 0.6);
}

.hero-left .hero-text-bright {
    color: var(--white);
}

.hero-left p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    background: var(--green-cta);
    color: var(--white);
    padding: 18px 36px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease 0.4s both;
    min-height: 44px;
}

.cta-button:hover {
    background: var(--green-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 216, 99, 0.4);
}

.hero-right {
    position: relative;
    animation: fadeInRight 1s ease 0.6s both;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
}

.hero-image-wrapper {
    position: relative;
    transform: scale(1.5);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-width: none;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.3) 0%, rgba(255, 0, 0, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 100px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-blue {
    color: var(--primary-blue);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-card.reverse {
    direction: rtl;
}

.service-card.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.service-badge.orange {
    background: linear-gradient(45deg, #FF6B35, #F7931E);
}

.service-badge.red {
    background: var(--red-accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.service-content p {
    font-size: 24px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-btn {
    background: var(--red-accent);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    min-height: 44px;
}

.contact-btn:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.3);
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

.services-cta .contact-btn {
    font-size: 16px;
    padding: 20px 40px;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--dark-blue);
    color: var(--white);
}

.pricing h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.pricing h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 60px;
    opacity: 0.8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 80px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-blue);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 64, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.speed-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.speed {
    font-size: 80px;
    font-weight: 700;
    color: var(--secondary-blue);
    line-height: 1;
}

.speed-unit {
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: 400;
    color: var(--white);
}

.price sup {
    font-size: 20px;
}

.pricing-card.combo {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-blue);
}

.combo-icon img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    object-fit: contain;
}

.combo-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 2px;
}

.combo-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

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

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 100px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon img {
    width: 40px;
    height: 30px;
}

.stars {
    margin-bottom: 20px;
}

.stars img {
    width: 120px;
    height: 20px;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
}

/* Footer CTA Section */
.footer-cta {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    text-align: center;
    color: var(--white);
}

.footer-cta-content p {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 50px;
    line-height: 1.3;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.3px;
}

.footer-cta-content .text-light {
    color: rgba(255, 255, 255, 0.6);
}

.footer-cta-content .text-bright {
    color: var(--white);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.contact-item img {
    width: 20px;
    height: 20px;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.contact-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    margin: 40px 0 30px;
}

.footer-logo img {
    height: 60px;
}

/* Light Footer */
.light-footer {
    background: #f5f5f5;
    padding: 20px 0;
    text-align: center;
}

.footer-yunto {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-yunto img {
    height: 25px;
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.9;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .hero-left p {
        font-size: 16px;
    }
    
    .cta-button {
        width: 100%;
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .hero-image-wrapper {
        transform: scale(1) !important;
        margin-top: 20px;
    }
    
    .hero-image-wrapper::before {
        width: 300px !important;
        height: 300px !important;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .services h2 {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .service-card.reverse {
        direction: ltr;
    }
    
    .service-content h3 {
        font-size: 28px;
    }
    
    .service-content p {
        font-size: 18px;
    }
    
    .contact-btn {
        width: 100%;
        font-size: 12px;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing h2 {
        font-size: 28px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonials h2 {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-cta {
        padding: 60px 0 40px;
    }
    
    .footer-cta-content p {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 20px;
        margin: 40px 0 30px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 28px;
    }
    
    .services h2,
    .pricing h2,
    .testimonials h2 {
        font-size: 24px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .cta-content p {
        font-size: 18px;
    }
    
    .speed {
        font-size: 48px;
    }
    
    .speed-unit {
        font-size: 20px;
    }
    
    .price {
        font-size: 28px;
    }
}