/* --- Global Styles --- */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1a2c; /* Dark Blue Background */
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    font-weight: 700;
    margin-top: 0;
}

.voip {
    color: #39ff14; /* Bright Green */
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #39ff14; /* Bright Green */
    color: #0d1a2c;
    border: 2px solid #39ff14;
}

.btn-primary:hover {
    background-color: #2cc90c;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #00bfff; /* Sky Blue */
}

.btn-secondary:hover {
    background-color: #00bfff;
    color: #0d1a2c;
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(13, 26, 44, 0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #00bfff20;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

header nav a:hover {
    color: #00bfff;
}

.cta-nav-btn {
    margin-left: 30px;
    padding: 8px 15px;
    background-color: #39ff14;
    color: #0d1a2c !important;
    border-radius: 5px;
}

/* --- Hero Section --- */
.hero-bg {
    background: linear-gradient(135deg, #0d1a2c, #1a426e); /* Dark Blue Gradient */
    padding: 100px 0;
    text-align: center;
    border-bottom: 10px solid #00bfff;
}

#hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #ccc;
}

.trust-icons {
    margin-top: 40px;
    color: #00bfff;
    font-size: 1.1em;
}

.trust-icons p {
    color: #fff;
    margin-bottom: 10px;
}

/* --- Services Section --- */
#services {
    padding: 80px 0;
    text-align: center;
    background-color: #0a1423;
}

#services h3 {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #00bfff;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #1a2a40;
    padding: 30px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    border-left: 5px solid #39ff14;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.2);
}

.card i {
    font-size: 3em;
    color: #39ff14;
    margin-bottom: 15px;
}

.card h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #00bfff;
}

/* --- Pricing Section --- */
#pricing {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0d1a2c, #0d385f);
}

#pricing h3 {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #39ff14;
}

.setup-fee-note {
    font-size: 1.1em;
    color: #ff0000; /* Red color to highlight the charge */
    margin-bottom: 30px;
    font-weight: 600;
}

.pricing-plans {
    display: flex;
    justify-content: center; /* Center the two plans */
    gap: 30px;
    flex-wrap: wrap;
}

.plan {
    background-color: #1a2a40;
    padding: 40px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
    border: 1px solid #00bfff20;
    transition: all 0.3s ease;
}

.plan.popular {
    border: 3px solid #39ff14;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.plan h4 {
    font-size: 1.8em;
    color: #00bfff;
    margin-bottom: 10px;
    position: relative;
}

.plan .tag {
    position: absolute;
    top: -30px;
    right: -20px;
    background-color: #39ff14;
    color: #0d1a2c;
    font-size: 0.8em;
    padding: 3px 8px;
    border-radius: 3px;
    transform: rotate(5deg);
}

.plan .price {
    font-size: 3em;
    color: #39ff14;
    font-weight: 700;
    margin: 10px 0 5px 0;
}

.plan .price span {
    font-size: 0.5em;
    color: #ccc;
    font-weight: 400;
}

.plan .billing-type {
    margin-bottom: 30px;
    font-style: italic;
    color: #aaa;
}

.plan ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
}

.plan ul li {
    padding: 8px 0;
    border-bottom: 1px solid #1f3650;
}

.plan ul li i {
    color: #39ff14;
    margin-right: 10px;
}

/* --- Contact Section --- */
#contact {
    padding: 80px 0;
    text-align: center;
}

.contact-box {
    background-color: #1a2a40;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 191, 255, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.contact-box h3 {
    font-size: 2em;
    color: #00bfff;
    margin-bottom: 30px;
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-box input,
.contact-box textarea {
    padding: 15px;
    border: 1px solid #39ff14;
    border-radius: 5px;
    background-color: #0d1a2c;
    color: #fff;
    font-size: 1em;
}

.contact-box input::placeholder,
.contact-box textarea::placeholder {
    color: #999;
}

.contact-box textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-box .btn-primary {
    padding: 15px;
}

.note {
    font-size: 0.9em;
    color: #aaa;
    margin-top: 15px;
}

/* --- Floating Contact Buttons (WhatsApp/Telegram) --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-contact a {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.floating-contact a:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25d366; /* WhatsApp Green */
}

.telegram-btn {
    background-color: #0088cc; /* Telegram Blue */
}

/* --- Footer --- */
footer {
    background-color: #0a1423;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #00bfff20;
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    #hero h2 {
        font-size: 2em;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        min-width: 80%;
    }

    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }

    .plan {
        width: 80%;
    }

    .plan.popular {
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    header .container {
        flex-direction: column;
    }

    header nav {
        margin-top: 10px;
    }

    header nav a {
        margin: 0 10px;
        display: inline-block;
    }
}
