* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOP BAR ================= */

.topbar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 14px;
    padding: 8px 0;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 20px;
}

/* ================= MAIN HEADER ================= */

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    color: #0f172a;
}

.logo-icon {
    margin-right: 8px;
    font-size: 22px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    margin-left: 30px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e91e63;
}

/* Button */
.nav-btn {
    background: #e91e63;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-btn:hover {
    background: #d81b60;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .logo {
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 20px;
        color: #0f172a;
    }
}



/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .nav-menu a {
        margin: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}









/* ================= HERO PREMIUM ================= */

.hero {
    height: calc(100vh - 70px);
    background: url("images/hero-bg.jpg") center center / cover fixed no-repeat;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    background: linear-gradient(
        rgba(15, 23, 42, 0.50),
        rgba(15, 23, 42, 0.50)
    );
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
    max-width: 750px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn.primary {
    background: #e91e63;
    color: #ffffff;
}

.hero-btn.primary:hover {
    background: #d81b60;
}

.hero-btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-btn.secondary:hover {
    background: #ffffff;
    color: #0f172a;
}

/* ===== Scroll Indicator ===== */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 25px;
    height: 40px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    width: 6px;
    height: 6px;
    background: #ffffff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ===== Fade Animation ===== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards;
}

.delay { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Mobile ===== */

@media (max-width: 768px) {

    .hero {
        height: 85vh;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}











/* ================= WHY SECTION ================= */

.why-section {
    padding: 100px 0;
    background: #f1f5f9;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: auto;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #64748b;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.why-card .icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0f172a;
}

.why-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 26px;
    }
}















/* ================= PRICING SECTION ================= */

.pricing-section {
    padding: 110px 0;
    background: #f8fafc;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    transition: 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0f172a;
}

.speed {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.price span {
    font-size: 14px;
    color: #64748b;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #475569;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.pricing-btn:hover {
    background: #d81b60;
}

/* Featured Plan */

.featured {
    background: #0f172a;
    color: white;
    transform: scale(1.05);
}

.featured .speed,
.featured h3,
.featured .price {
    color: white;
}

.featured ul li {
    color: #cbd5e1;
}

.featured .pricing-btn {
    background: #e91e63;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e91e63;
    color: white;
    padding: 5px 15px;
    font-size: 12px;
    border-radius: 20px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .featured {
        transform: none;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}















/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 110px 0;
    background: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 18px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.about-content p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #334155;
}

.about-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #e91e63;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #d81b60;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 28px;
    }
}












/* ================= STATS SECTION ================= */

.stats-section {
    padding: 100px 0;
    background: #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.stat-card p {
    font-size: 16px;
    color: #475569;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 32px;
    }
}













/* ================= COVERAGE SECTION ================= */

.coverage-section {
    padding: 100px 0;
    background: #f8fafc;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.coverage-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.area-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.coverage-card h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 10px;
}

.coverage-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}










/* ================= TESTIMONIALS SECTION ================= */

.testimonials-section {
    padding: 110px 0;
    background: #f1f5f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.testimonial-card .avatar {
    font-size: 36px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 13px;
    color: #64748b;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}










/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 110px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
    margin-bottom: 30px;
}

.contact-list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #334155;
}

.contact-map img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    margin-top: 20px;
}

/* Contact Form */

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e91e63;
    box-shadow: 0 0 8px rgba(233,30,99,0.3);
}

.contact-form button {
    padding: 12px 20px;
    background: #e91e63;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background: #d81b60;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}









/* ================= FOOTER ================= */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #CCC;
}

.footer h3,
.footer h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: #e91e63;
}

.footer-social .social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 20px;
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social .social-icons a:hover {
    color: #e91e63;
}

/* Footer bottom text */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}