@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Open+Sans:wght@300;400;600;700;800&display=swap');


:root {
    --primary-color: #0052D4;
    --secondary-color: #4364F7;
    --accent-color: #6FB1FC;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #f4f7fe;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 82, 212, 0.1);
    --transition: all 0.3s ease;
    --neon-blue: #00f3ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling project-wide */
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 5px 15px rgba(0, 82, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 82, 212, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Sticky Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 5px 0;
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    width: 0;
    transition: none;
    z-index: 1001;
    pointer-events: none;
}

.nav-indicator.animate {
    animation: nav-sweep 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes nav-sweep {
    0% {
        left: 0;
        width: 0;
    }
    50% {
        left: 0;
        width: 100%;
    }
    100% {
        left: 100%;
        width: 0;
    }
}

header.scrolled {
    padding: 5px 0;
}

/* WiFi Icon Animation */
.wifi-icon {
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.wifi-dot {
    animation: wifi-pulse 2s infinite ease-in-out;
}

.wifi-wave-1 {
    animation: wifi-pulse 2s infinite ease-in-out 0.2s;
    opacity: 0;
}

.wifi-wave-2 {
    animation: wifi-pulse 2s infinite ease-in-out 0.4s;
    opacity: 0;
}

.wifi-wave-3 {
    animation: wifi-pulse 2s infinite ease-in-out 0.6s;
    opacity: 0;
}

@keyframes wifi-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

header .container {
    max-width: 100%;
    padding: 0 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    z-index: 1001;
}

/* Hero Section */
.hero {
    height: calc(100vh - 65px);
    margin-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero::after {
    display: none;
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(67, 100, 247, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-overlay-logo {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    width: 580px;
    height: 120px;
    max-width: 100%;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hero-overlay-logo {
        max-width: 250px;
        left: 20px;
        bottom: 20px;
    }
}

/* Feature Cards */
.features .container {
    max-width: 1400px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.feature-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

/* Plans Section */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(0, 82, 212, 0.05);
    transition: var(--transition);
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 204, 0, 0.4);
    border-color: #FFD700;
    background: #FFD700; /* Vibrant Gold/Yellow */
    color: #000;
}

.plan-card:hover h2,
.plan-card:hover p,
.plan-card:hover div {
    color: #000 !important;
}

.plan-card.special {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.plan-card.special .price,
.plan-card.special .speed {
    color: white;
}

.plan-card .speed {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

.plan-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* OTT/IPTV Sections */
.ott-section .container {
    max-width: 1600px;
}

.ott-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

@media (min-width: 1100px) {
    .ott-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

.ott-item {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ott-item img {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    padding-right: 20px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: #000000;
    color: var(--neon-blue);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-links h4 {
    margin-bottom: 25px;
    color: var(--neon-blue);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
        opacity: 0.9;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-logo img {
        height: 70px;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        text-align: center;
    }

    .hero-flex {
        flex-direction: column;
    }

    .hero-flex .hero-content {
        order: 2;
    }

    .hero-flex .hero-image-container {
        order: 1;
        margin-bottom: 30px;
    }
}

/* Clients Section */
.clients-section {
    background-color: #fdf8f4;
    padding: 5px 0 100px;
    overflow: hidden;
}

.clients-section .badge {
    background: #fff7ed;
    color: #f97316;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 0;
}

.clients-section h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 50px;
    margin-top: -15px;
    text-align: center;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    gap: 30px;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.client-card {
    background: white;
    min-width: 250px;
    flex-shrink: 0;
    height: 150px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    overflow: hidden;
}


.client-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition);
}

.client-card:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 17 - 30px * 17));
    }
}


/* Technical Partners Section */
.technical-partners-section {
    background-color: #ffffff;
    padding: 0 0 100px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.technical-partners-section .badge {
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 2.5rem;
    display: inline-block;
    margin-bottom: 0;
}

.technical-partners-section h2 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 50px;
    margin-top: -15px;
    text-align: center;
}

.marquee-content.partners {
    animation: scroll-partners 25s linear infinite;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 9 - 30px * 9));
    }
}

.marquee-content.ott {
    animation: scroll-ott 20s linear infinite;
}

@keyframes scroll-ott {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 7 - 30px * 7));
    }
}

.ott-card {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    min-width: 350px;
    flex-shrink: 0;
    overflow: hidden;
}

.ott-card img {
    width: 100%;
    height: 150px;
    object-fit: fill;
    margin-bottom: 15px;
    border-radius: 15px;
}

.ott-card h4 {
    margin: 0;
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .clients-section h2, .technical-partners-section h2 {
        font-size: 2rem;
    }
    
    .clients-section .badge, .technical-partners-section .badge {
        font-size: 1.5rem;
        padding: 6px 15px;
    }
    
    .client-card, .ott-card {
        min-width: 200px;
        height: 120px;
        padding: 15px;
    }

    .ott-card img {
        max-height: 80px;
        margin-bottom: 10px;
    }

    .ott-card h4 {
        font-size: 1rem;
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-200px * 17 - 30px * 17)); }
    }

    @keyframes scroll-partners {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-200px * 9 - 30px * 9)); }
    }

    @keyframes scroll-ott {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-200px * 7 - 30px * 7)); }
    }
}

/* 3D Plan Cards Redesign - Polished */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.plan-card-3d {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 580px;
}

@media (max-width: 480px) {
    .plan-card-3d {
        padding: 40px 20px;
        min-height: auto;
    }
}


.plan-card-3d:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(255, 102, 0, 0.2);
    background: linear-gradient(135deg, #FF8C00, #FF4500);
}

.plan-card-3d:hover h3, 
.plan-card-3d:hover .speed, 
.plan-card-3d:hover .price,
.plan-card-3d:hover ul li,
.plan-card-3d:hover ul li i,
.plan-card-3d:hover .btn-subscribe {
    color: #ffffff !important;
}

.plan-card-3d:hover .bg-circle {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.plan-card-3d:hover .router-img {
    filter: brightness(1.2) contrast(1.1) grayscale(0.5) sepia(0.5) hue-rotate(10deg);
    opacity: 0.8;
}

.plan-card-3d .bg-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(67, 100, 247, 0.06) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    z-index: 0;
}

.plan-card-3d h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    z-index: 2;
}

.plan-card-3d .speed {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.1;
    z-index: 2;
}

.plan-card-3d .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 35px;
    z-index: 2;
}

@media (max-width: 480px) {
    .plan-card-3d .speed {
        font-size: 2.5rem;
    }
    .plan-card-3d .price {
        font-size: 1.8rem;
    }
}

.plan-card-3d ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
    padding-left: 10px;
    z-index: 2;
}

.plan-card-3d ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 500;
    color: #444;
}

.plan-card-3d ul li i {
    font-size: 1.2rem;
    color: #111;
}

.plan-card-3d .router-img {
    position: absolute;
    bottom: 20px;
    right: 5px;
    width: 200px;
    height: auto;
    z-index: 1;
    opacity: 0.9;
    mix-blend-mode: multiply; /* Removes white background */
    filter: brightness(1.02) contrast(1.05); /* Ensures background is pure white */
    pointer-events: none;
    transform: rotate(-5deg);
}

.plan-card-3d.special .router-img {
    mix-blend-mode: multiply;
    opacity: 0.7;
    filter: brightness(1.1) contrast(1.2); /* Stronger filter for colored background */
}

.plan-card-3d .btn-subscribe {
    margin-top: auto;
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
    z-index: 3;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-card-3d .btn-subscribe:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Special Lite card styling */
.plan-card-3d.special {
    background: linear-gradient(135deg, #0052D4, #4364F7);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 82, 212, 0.2);
}

.plan-card-3d.special h3, 
.plan-card-3d.special .speed, 
.plan-card-3d.special .price,
.plan-card-3d.special ul li,
.plan-card-3d.special ul li i {
    color: white;
}

.plan-card-3d.special .btn-subscribe {
    color: white;
}

.plan-card-3d .badge-popular {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FFCC00;
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}


/* Modern Contact Page Styles */
.contact-modern-section {
    padding: 180px 0 100px; /* Increased padding to prevent cropping */
    background-color: #f8fafc;
    background-image: radial-gradient(var(--primary-color) 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    background-position: center;
    position: relative;
    opacity: 0.98;
}

.contact-modern-section .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-modern-section h1 {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.contact-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.contact-card-modern h2, .contact-card-modern h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method-icon {
    width: 45px;
    height: 45px;
    background: rgba(0, 82, 212, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-content h4 {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 5px;
}

.contact-method-content p {
    color: #1e293b;
    font-weight: 600;
    line-height: 1.5;
}

/* Modern Form Styling */
.modern-form .form-group {
    margin-bottom: 25px;
}

.modern-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-form .form-control {
    width: 100%;
    padding: 14px 18px;
    background-color: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.3s ease;
}

.modern-form .form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 82, 212, 0.1);
    outline: none;
}

.btn-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 82, 212, 0.25);
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 212, 0.35);
}

.btn-modern i {
    transition: transform 0.3s ease;
}

.btn-modern:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .contact-modern-section {
        padding: 140px 0 70px;
    }

    .contact-modern-section h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .contact-card-modern {
        padding: 30px 20px;
    }

    .contact-card-modern h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .contact-method-item {
        gap: 15px;
    }

    .contact-method-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .plan-card[style*="scale(1.05)"] {
        transform: scale(1) !important;
        margin-top: 10px;
    }
}

/* Page Utility Classes */
.page-section {
    padding: 150px 0 100px;
}

.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.responsive-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .responsive-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .responsive-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .page-section {
        padding: 120px 0 60px;
    }
}

@media (max-width: 480px) {
    .responsive-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
}
