:root {
    /* Future Fibre Palette */
    --primary-color: #0062cc;
    /* Robot Blue */
    --secondary-color: #004a99;
    /* Deep Blue */
    --accent-color: #00f2ff;
    /* Cyan Neon */
    --accent-purple: #7b42f6;
    /* Digital Purple */

    --text-color: #333333;
    --text-light: #ffffff;

    /* Backgrounds */
    --bg-light: #ffffff;
    --bg-off-white: #f0f2f5;

    /* Glassmorphism 2.0 */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --border-radius: 24px;
    /* More modern rounded corners */

    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    /* Stronger shadow for floating effect */
    --shadow-hover: 0 20px 40px -5px rgba(0, 98, 204, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.7;
    /* Improved readability */
    font-size: 1.125rem;
    /* Slightly larger text */
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    margin-bottom: 0 !important;
}

/* --- Utilities --- */
.fill-primary {
    fill: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-footer {
    max-width: 100%;
}

footer .container {
    max-width: 100%;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 98, 204, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-icon-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.section-title {
    font-size: 3rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 98, 204, 0.2);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- Header --- */
/* --- Header Glassmorphism --- */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links .mobile-actions {
    display: none;
}

.menu-toggle {
    display: none;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
}

.theme-toggle-btn svg {
    transition: 0.3s;
}

/* --- Hero Section (Slider) --- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
    padding-top: 80px;
}

/* Gradient Overlay for better text readability */
.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient stronger at bottom right */
    background: linear-gradient(to top right, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.slides-container {
    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-content-wrapper {
    position: relative;
    z-index: 10;
    /* Above overlay */
    height: 100%;
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    justify-content: flex-end;
    /* Align to right */
    padding-bottom: 150px;
    /* Space from bottom (wave + padding) */
}

.hero-content {
    margin-left: auto;
    /* Push to right */
    margin-right: 0;
    max-width: 700px;
    padding: 1rem;
    color: white;
    text-align: right;
    /* Align text to right */
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    opacity: 0;
    animation: slideUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content h1 {
    animation-delay: 0.2s;
}

.hero-content p {
    animation-delay: 0.4s;
    margin-left: auto;
    /* Align paragraph block to right if smaller than container */
}

.hero-buttons {
    animation-delay: 0.6s;
    display: flex;
    justify-content: flex-end;
    /* Align buttons to right */
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 20;
    cursor: pointer;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--accent-color);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    /* Text Gradient */
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 30px rgba(0, 212, 255, 0.3);
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
}

/* --- Features / Plans Preview --- */
.services {
    padding: 8rem 0;
    background-color: #0000008c;
    position: relative;
}

.services .section-title {
    color: white;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    /* White background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    color: var(--text-color);
    /* Ensure dark text */

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s ease;
}

.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.15);
    /* Soft cyan glow */
    border-color: var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* --- Plans Pricing --- */
.plans {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2c3e50);
    /* Dark background to reduce brightness */
    color: white;
    position: relative;
}

.plans .section-title {
    color: white;
    /* Fix title contrast on dark bg */
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.95);
    /* White background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-color);
    /* Ensure dark text */
    padding: 4rem 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 5px solid var(--primary-color);
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.plan-card:hover {
    transform: scale(1.05) translateY(-5px);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 98, 204, 0.4);
    border-color: var(--primary-color);
}

.plan-card.featured {
    border-top: 5px solid var(--accent-color);
    background: linear-gradient(to bottom right, #ffffff, #f0fbff);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-period {
    color: #999;
    font-size: 1rem;
    margin-left: 5px;
    display: inline-block;
    vertical-align: baseline;
    font-weight: 400;
}

.plan-features {
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1rem;
}

.plan-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

.plan-card .btn {
    margin-top: auto;
}

/* --- Values Section --- */
.values-section {
    padding: 1rem 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
    position: relative;
}

.values-content p {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

/* --- Contact Form (Futuristic Tech) --- */
.contact {
    padding: 6rem 0;
    /* Dark Futuristic Background with Tech Image Overlay */
    background: linear-gradient(rgba(0, 30, 60, 0.85), rgba(0, 30, 60, 0.9)),
        url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
    position: relative;
    border-top: 2px solid var(--accent-color);
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 10;

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add a glowing border line at top of card */
.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 0 0 4px 4px;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #999;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two equal columns */
    gap: 2rem;
}

.form-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-right {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-group {
    margin-bottom: 0;
    /* Managed by gap */
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* Slightly sharper as per image */
    font-size: 0.95rem;
    color: #555;
    background: #fdfdfd;
}

.form-group textarea {
    width: 100%;
    height: 100%;
    /* Fill column height */
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    resize: none;
    min-height: 200px;
    /* Fallback */
}

.form-btn-container {
    margin-top: 1rem;
}

.form-btn-container .btn {
    width: 100%;
    border-radius: 4px;
    /* Square off slightly */
    padding: 0.8rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group textarea {
        height: 150px;
    }

    .form-group textarea {
        height: 150px;
    }
}

/* SVG Separators */
.section-separator-top,
.section-separator-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.section-separator-top {
    top: -1px;
    /* Overlap slightly */
}

.section-separator-bottom {
    bottom: -1px;
    /* Overlap slightly */
}

.section-separator-top svg,
.section-separator-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

@media (max-width: 768px) {

    .section-separator-top svg,
    .section-separator-bottom svg {
        height: 40px;
    }
}

/* --- WhatsApp Modal Styles --- */
.wa-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1999;
    /* Just below the modal content z-index if needed, but here wrapper helps handle outside click */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: transparent;
    /* Transparent bg so it looks like a popup */
    /* Remove backdrop blur for cleaner popup feel or keep it subtle */
    /* backdrop-filter: blur(2px); */
    align-items: flex-end;
    /* Align to bottom for mobile usually, but we position absolute */
    justify-content: flex-end;
}

.wa-modal-content {
    background-color: #fff;
    position: fixed;
    bottom: 100px;
    /* 30px (btn bottom) + 60px (btn height) + 10px gap */
    right: 30px;
    /* Aligned with button */
    padding: 1.5rem;
    border: 1px solid rgba(0, 98, 204, 0.2);
    /* Primary color border light */
    width: 350px;
    max-width: 90vw;
    border-radius: 16px;
    border-bottom-right-radius: 4px;
    /* Little tail effect direction */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    font-family: var(--font-main);
    animation: slideUpModal 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
}

@keyframes slideUpModal {
    from {
        transform: translateY(20px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.wa-close-btn {
    color: #999;
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    background: #f5f5f5;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-close-btn:hover {
    color: var(--primary-color);
    background: #e0e0e0;
}

.wa-modal-header {
    margin-bottom: 1.5rem;
    padding-right: 30px;
}

.wa-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.4;
}

.wa-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.wa-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    background-color: white;
}

.wa-card:hover {
    border-color: var(--primary-color);
    background-color: #f0f8ff;
    /* AliceBlue equivalent or light primary tint */
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 98, 204, 0.1);
}

.wa-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-right: 1rem;
}

.wa-icon svg {
    width: 100%;
    height: 100%;
}

.wa-text h4 {
    margin: 0 0 0.2rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.wa-text p {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
    font-weight: 400;
}

/* --- Google Play Button --- */
.btn-google-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    background-image: linear-gradient(#000, #000), linear-gradient(45deg, #4285F4, #34A853, #FBBC05, #EA4335);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-google-play:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.4);
    background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
}

.btn-google-play svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.btn-google-play:hover svg {
    transform: rotate(10deg) scale(1.1);
}

.btn-google-play div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.btn-google-play span.small-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.btn-google-play span.big-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* --- Apple Store Button --- */
.btn-apple-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    background-image: linear-gradient(#000, #000), linear-gradient(45deg, #A2AAAD, #F0F0F0, #5E5E5E);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-apple-store:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    background-image: linear-gradient(#1a1a1a, #1a1a1a), linear-gradient(45deg, #F0F0F0, #A2AAAD, #5E5E5E);
}

.btn-apple-store svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    transition: transform 0.4s ease;
}

.btn-apple-store:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.btn-apple-store div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.btn-apple-store span.small-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.btn-apple-store span.big-text {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #a2aaad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* --- Footer --- */
footer {
    background-color: #0b0d10;
    background-image: radial-gradient(circle at 50% 0%, #1a202c 0%, #0b0d10 70%);
    color: #ccc;
    padding: 4rem 0 0;
    margin-top: auto;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    /* margin-bottom: 3rem; */
    border-bottom: 1px solid #222;
    padding-bottom: 1rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    /* Subtle movement */
}

/* Specific Contact Styling */
.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
}

/* Facebook Placeholder */
.fb-page-placeholder {
    background: #fff;
    height: 130px;
    width: 100%;
    max-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b5998;
    font-weight: bold;
    border-radius: 4px;
}

/* Social Buttons */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.social-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-btn.instagram:hover {
    background: #E1306C;
    /* Fallback */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

/* Compact Black Bottom Bar */
.footer-bottom {
    background-color: #000;
    padding: 8px 0;
    margin-top: 0.5rem;
    width: 100%;
}

.footer-bottom p {
    text-align: center;
    font-size: 0.75rem;
    color: #fff;
    margin: 0;
    line-height: 1.4;
    opacity: 0.8;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* simple mobile hide for now */
    }

    .service-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 2px solid white;
    z-index: 1001;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 242, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 255, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.benefit-icon {
    animation: float 4s ease-in-out infinite;
}

.hero-buttons .btn-primary {
    animation: pulse 2s infinite;
}

/* --- Benefits Strip --- */
.benefits {
    background: var(--primary-color);
    padding: 2rem 0;
    color: white;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    text-align: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    max-width: 200px;

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.5s ease-out;
}

.benefit-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.benefit-item:nth-child(1) {
    transition-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    transition-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    transition-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    transition-delay: 0.4s;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    /* allow absolute positioning of pseudo-elements */
    z-index: 1;
}

/* --- Benefit Specific Animations --- */

/* 1. Rocket Launch with Fire */
.benefit-rocket .benefit-icon::before {
    content: '🔥';
    /* Using emoji for fire to match style, positioned behind */
    position: absolute;
    bottom: -10px;
    left: -10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    transform: rotate(225deg);
}

.benefit-rocket:hover .benefit-icon {
    transform: translate(10px, -10px) scale(1.2);
    /* Moves up-right like taking off */
}

.benefit-rocket:hover .benefit-icon::before {
    opacity: 1;
    animation: jet-flicker 0.1s infinite alternate;
}

@keyframes jet-flicker {
    from {
        transform: rotate(225deg) scale(0.8) translate(0, 0);
    }

    to {
        transform: rotate(225deg) scale(1.1) translate(-2px, 2px);
    }
}

/* 2. Wi-Fi Pulse (Signal Loading) */
@keyframes wifi-load {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.benefit-wifi .benefit-icon svg {
    width: 60px;
    height: 60px;
    display: block;
}

.benefit-wifi .benefit-icon svg path {
    opacity: 0.3;
    /* Start dimmed */
    transition: opacity 0.3s ease;
}

.benefit-wifi:hover .benefit-icon svg path {
    animation: wifi-load 1s infinite alternate;
}

.benefit-wifi:hover .benefit-icon .wifi-1 {
    animation-delay: 0s;
}

.benefit-wifi:hover .benefit-icon .wifi-2 {
    animation-delay: 0.2s;
}

.benefit-wifi:hover .benefit-icon .wifi-3 {
    animation-delay: 0.4s;
}

.benefit-wifi:hover .benefit-icon .wifi-4 {
    animation-delay: 0.6s;
}

.benefit-wifi:hover .benefit-icon {
    /* Remove previous simple scale/shadow if conflicting */
    animation: none;
    transform: scale(1.1);
    /* Slight scale */
}


.benefit-infinity .benefit-icon svg {
    width: 60px;
    height: 60px;
    display: block;
    /* Ensure it behaves correctly in layout */
}

/* 3. Infinity Internal Flow */
@keyframes infinity-flow {
    to {
        stroke-dashoffset: -50;
    }
}

.benefit-infinity .benefit-icon .infinity-loop {
    stroke-dasharray: 10 40;
    /* Segment length vs gap */
    stroke-dashoffset: 0;
    transition: stroke-width 0.3s, opacity 0.3s ease;
    opacity: 0.3;
    /* Initial dimmed state */
}

.benefit-infinity:hover .benefit-icon .infinity-loop {
    animation: infinity-flow 1s linear infinite;
    stroke-width: 3;
    /* Slight thicken on active */
    opacity: 1;
    /* Full opacity on hover */
}

.benefit-infinity:hover .benefit-icon {
    transform: scale(1.1);
    animation: none;
    /* Disable previous translation */
}


.benefit-sync .benefit-icon svg {
    width: 60px;
    height: 60px;
    display: block;
}

/* 4. Sync Arrows (Rotate inside square) */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.benefit-sync .sync-arrows {
    transform-origin: center;
    /* Ensure rotation happens around center */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.3;
    /* Match Wi-Fi initial state */
}

.benefit-sync:hover .sync-arrows {
    animation: spin 1s linear infinite reverse;
    color: var(--accent-color);
    opacity: 1;
    /* Restore to full color on hover */
}

.benefit-sync:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-title {
    font-weight: 700;
    font-size: 1.1rem;
}

.benefit-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- Alerts --- */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* --- Company Values Carousel --- */
.values-carousel {
    position: relative;
    min-height: 200px;
}

.value-slide {
    display: none;
    text-align: center;
    animation: fadeEffect 1s;
}

.value-slide.active {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.carousel-dots {
    text-align: center;
    /* margin-top: 20px; */
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active,
.dot:hover {
    background-color: var(--primary-color);
}


/* --- FAQ Accordion --- */
.faq-section {
    border-bottom: 2px solid var(--accent-color);
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: rgba(219, 219, 219, 0.74);
}

.faq-question {
    width: 100%;
    border: none;
    background: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--card-bg);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-color);
    opacity: 0.9;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- Speed Test Section --- */
.speedtest-section {
    padding: 5rem 0;
    background-color: rgba(219, 219, 219, 0.74);
}

.speedtest-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 0 1rem;
}

.speedtest-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.speedtest-text h3 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin: 0;
}

.speedtest-action .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 98, 204, 0.4);
}

/* --- Coverage Section --- */
.coverage-section {
    padding: 4rem 0;
    position: relative;
    background-color: #0000008c;
    color: white;
}

.coverage-section .section-title {
    color: white;
}