/* Global Variables */
:root {
    --primary-action: #0191FB;
    /* Deep Sky Blue */
    --main-dark: #101A3B;
    /* Midnight Blue */
    --highlight-green: #A2E907;
    /* Chartreuse Green */
    --highlight-aqua: #08F5DA;
    /* Aqua */
    --white: #FFFFFF;
    --light-gray: #F4F6F9;
    --text-color: #333333;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Tools */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--main-dark);
}

.highlight-text {
    color: var(--primary-action);
}

.highlight-green {
    color: var(--highlight-green);
    text-decoration: underline;
    /* OR define a text shadow to make it pop */
    color: #5d8a00;
    /* Darker version for text readability on white */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-action);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(1, 145, 251, 0.3);
}

.btn-primary:hover {
    background-color: #007ccb;
    transform: translateY(-2px);
}

.btn-secondary-outline {
    border-color: var(--primary-action);
    color: var(--primary-action);
    background: transparent;
}

.btn-secondary-outline:hover {
    background-color: var(--primary-action);
    color: var(--white);
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--main-dark);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--main-dark);
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-action);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--main-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    /* High impact */
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--main-dark) 0%, #0d1226 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(1, 145, 251, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero h1 .highlight-text {
    color: var(--highlight-aqua);
    /* Pop color on dark bg */
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Align cards vertically */
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.recommended {
    border: 2px solid var(--primary-action);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(1, 145, 251, 0.15);
}

.pricing-card.recommended:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-action);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(1, 145, 251, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 20px;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--main-dark);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--primary-action);
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.period {
    color: #888;
    margin-left: 5px;
    font-size: 1rem;
}

.card-body {
    flex-grow: 1;
    margin-bottom: 25px;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features i {
    color: var(--highlight-green);
    width: 20px;
    text-align: center;
}

/* Special styling for icon inside green */
.pricing-card.recommended .features i {
    color: var(--primary-action);
}

.installation-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(162, 233, 7, 0.1);
    /* Light green bg */
    border-radius: var(--border-radius);
    color: var(--main-dark);
}

/* Coverage Section */
.coverage {
    padding: 80px 0;
    text-align: center;
}

.coverage-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.coverage-content p {
    margin-bottom: 50px;
    color: #666;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.location-item {
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.location-item:hover {
    transform: translateY(-5px);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-action);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: var(--main-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.7;
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links ul li a:hover {
    color: var(--highlight-green);
    opacity: 1;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--highlight-green);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-action);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: var(--highlight-green);
    color: var(--main-dark);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background-color: #92d406;
    /* Slightly darker shift for hover */
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 10px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-card.recommended {
        transform: scale(1);
    }

    .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}