:root {
    --primary-dark: #000c28;
    --primary-blue: #00219b;
    --gradient-blue: #1746ea;
    --accent-blue: #4576ff;
    --white: #ffffff;
    --bg-light: #f7f9ff;
    --text-dark: #102041;
    --text-secondary: #667395;
    --border-light: rgba(23, 70, 234, 0.12);
    --shadow-soft: 0 18px 45px rgba(11, 28, 77, 0.12);
    --shadow-strong: 0 24px 60px rgba(0, 12, 40, 0.24);
    --radius-lg: 28px;
    --radius-md: 22px;
    --container: min(1160px, calc(100% - 32px));
    --transition: 0.3s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(0, 12, 40, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    width: 156px;
    height: 56px;
    padding: 8px;
    border-radius: 18px;
    object-fit: contain;
    /*background: rgba(255, 255, 255, 0.08);*/
}

.logo-text-container {
    color: var(--white);
    line-height: 1;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
}

.logo-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 6px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    font-weight: 700;
    border-radius: 999px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
}

.hero {
    position: relative;
    min-height: 100vh;
    padding: 150px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(69, 118, 255, 0.2), transparent 18%),
        radial-gradient(circle at bottom left, rgba(23, 70, 234, 0.16), transparent 20%),
        linear-gradient(180deg, #000c28 0%, #03153f 100%);
    color: var(--white);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.hero-bg-stars .star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    animation: twinkle 4s infinite ease-in-out;
}

.hero-bg-stars .star:nth-child(1) { top: 16%; right: 12%; animation-delay: 0s; }
.hero-bg-stars .star:nth-child(2) { top: 24%; left: 15%; animation-delay: 0.8s; }
.hero-bg-stars .star:nth-child(3) { top: 36%; right: 24%; animation-delay: 1.3s; }
.hero-bg-stars .star:nth-child(4) { top: 58%; left: 8%; animation-delay: 1.7s; }
.hero-bg-stars .star:nth-child(5) { top: 70%; right: 17%; animation-delay: 2.1s; }
.hero-bg-stars .star:nth-child(6) { top: 44%; left: 40%; animation-delay: 2.8s; }

.hero-badge,
.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
}

.hero-badge {
    color: #dce7ff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-title {
    margin: 24px 0 18px;
    line-height: 1.04;
    font-size: clamp(2.8rem, 5.8vw, 5.5rem);
    padding: 30px;

}

.title-line {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #9db8ff 35%, #4576ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.offer-badge {
    margin-bottom: 18px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(69, 118, 255, 0.25), rgba(23, 70, 234, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-subtitle {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.06rem;
    line-height: 2;
}

.hero-features {
    margin-top: 20px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 12px;
}

.hero-features i {
    color: #7ca3ff;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 18px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-blue), var(--gradient-blue));
    box-shadow: 0 16px 36px rgba(23, 70, 234, 0.28);
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.compact-btn {
    padding: 12px 18px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.stat-item {
    padding: 18px;
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 900;
}

.stat-label {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
}

.dish-container {
    position: relative;
    width: min(520px, 100%);
    height: 520px;
    margin: 0 auto;
}

.satellite-dish {
    position: absolute;
    left: 50%;
    bottom: 72px;
    width: 270px;
    height: 270px;
    transform: translateX(-50%);
}

.dish-bowl {
    position: absolute;
    left: 0;
    bottom: 48px;
    width: 210px;
    height: 210px;
    border: 16px solid rgba(255, 255, 255, 0.9);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(-35deg);
    box-shadow: 0 0 35px rgba(69, 118, 255, 0.28);
}

.dish-arm {
    position: absolute;
    right: 50px;
    bottom: 116px;
    width: 92px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffffff, #6f9cff);
    transform: rotate(-25deg);
}

.dish-receiver {
    position: absolute;
    right: 124px;
    bottom: 151px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #85a9ff);
    box-shadow: 0 0 18px rgba(133, 169, 255, 0.45);
}

.dish-stand {
    position: absolute;
    left: 104px;
    bottom: 0;
    width: 54px;
    height: 120px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(124, 163, 255, 0.34));
    transform: skewX(-16deg);
}

.signal-waves {
    position: absolute;
    inset: 0;
}

.signal-wave {
    position: absolute;
    border: 2px solid rgba(87, 130, 255, 0.48);
    border-radius: 50%;
    animation: wavePulse 3.4s infinite ease-out;
}

.wave-1 {
    width: 180px;
    height: 180px;
    top: 42px;
    right: 90px;
}

.wave-2 {
    width: 260px;
    height: 260px;
    top: 2px;
    right: 50px;
    animation-delay: 0.8s;
}

.wave-3 {
    width: 340px;
    height: 340px;
    top: -38px;
    right: 10px;
    animation-delay: 1.6s;
}

.data-point {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
    animation: floatPoint 5s infinite ease-in-out;
}

.data-point:nth-child(1) { top: 62px; left: 90px; animation-delay: 0s; }
.data-point:nth-child(2) { top: 108px; right: 72px; animation-delay: 1s; }
.data-point:nth-child(3) { top: 222px; left: 30px; animation-delay: 1.4s; }
.data-point:nth-child(4) { top: 290px; right: 25px; animation-delay: 2.1s; }
.data-point:nth-child(5) { bottom: 145px; left: 130px; animation-delay: 2.8s; }
.data-point:nth-child(6) { bottom: 78px; right: 112px; animation-delay: 3.2s; }

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.74);
    animation: bounce 2.6s infinite;
}

.section {
    padding: 100px 0;
}

.about,
.pricing,
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
}

.services,
.testimonials,
.contact,
.page-hero {
    background:
        radial-gradient(circle at top left, rgba(69, 118, 255, 0.12), transparent 18%),
        linear-gradient(180deg, #000c28 0%, #041741 100%);
    color: var(--white);
}

.section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
}

.section-subtitle {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.95;
}

.services .section-subtitle,
.testimonials .section-subtitle,
.contact .section-subtitle,
.light-header .section-subtitle,
.light-header .section-title {
    color: rgba(255, 255, 255, 0.76);
}

.about-grid,
.services-grid,
.testimonials-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid,
.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.about-card,
.service-card,
.testimonial-card,
.contact-card,
.package-card,
.faq-item,
.pricing-notice {
    border-radius: var(--radius-lg);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-card,
.package-card,
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.about-card {
    padding: 30px;
}

.about-card-header,
.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-icon,
.service-icon,
.contact-icon,
.notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 1.4rem;
}

.about-icon {
    background: rgba(23, 70, 234, 0.08);
    color: var(--gradient-blue);
}

.about-card-title,
.service-title {
    margin: 0;
    font-size: 1.35rem;
}

.about-card-text,
.service-description,
.testimonial-text,
.contact-card p,
.notice-content p {
    margin: 0;
    line-height: 1.9;
}

.service-card,
.testimonial-card,
.contact-card,
.pricing-notice {
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
}

.service-icon,
.contact-icon,
.notice-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.service-description,
.testimonial-text,
.contact-card p {
    color: rgba(255, 255, 255, 0.78);
}

.service-features {
    margin-top: 18px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.84);
}

.service-features i {
    color: #8fb0ff;
}

.pricing-notice {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, rgba(23, 70, 234, 0.06), rgba(69, 118, 255, 0.06));
    border: 1px solid rgba(23, 70, 234, 0.12);
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.pricing-notice .notice-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--gradient-blue));
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.all-packages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.package-card {
    padding: 28px;
}

.package-card:hover,
.about-card:hover,
.service-card:hover,
.testimonial-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
}

.package-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
}

.package-name {
    margin: 0;
    font-size: 1.2rem;
}

.package-badge {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-blue);
    background: rgba(23, 70, 234, 0.08);
}

.featured-package {
    color: var(--white);
    background: linear-gradient(180deg, var(--gradient-blue) 0%, var(--primary-blue) 100%);
    border-color: transparent;
    box-shadow: 0 24px 48px rgba(23, 70, 234, 0.22);
}

.featured-package .package-badge {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.package-price {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 22px;
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary-blue);
}

.featured-package .price-amount,
.featured-package .price-period,
.featured-package .detail-item {
    color: var(--white);
}

.price-period {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.package-details {
    display: grid;
    gap: 14px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.detail-item i {
    color: var(--accent-blue);
}

.featured-package .detail-item i {
    color: #d5e3ff;
}

.pricing-more {
    margin-top: 32px;
    text-align: center;
}

.testimonial-rating {
    color: #ffd46c;
    margin-bottom: 14px;
}

.testimonial-author {
    margin-top: 18px;
    color: var(--white);
    font-weight: 800;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 26px;
    border: 0;
    background: transparent;
    color: var(--text-dark);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-align: right;
}

.faq-question i {
    transition: transform var(--transition);
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
    padding: 0 26px;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.9;
    padding-bottom: 24px;
}

.faq-item.open .faq-answer {
    max-height: 180px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.page-hero {
    padding: 160px 0 50px;
}

.packages-body {
    background: var(--bg-light);
}

.light-section {
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.light-header .section-title {
    color: var(--white);
}

.active-section {
    color: var(--white);
}

.contact {
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
    color: var(--text-dark);
}

.contact .section-subtitle,
.contact .section-title {
    color: var(--text-dark);
}

.contact-info-container,
.map-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.contact-info-container {
    padding: 34px;
}

.contact-info-title {
    margin: 0 0 28px;
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(23, 70, 234, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(23, 70, 234, 0.1);
}

.contact-info-item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact .contact-icon {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-blue));
    box-shadow: 0 12px 24px rgba(23, 70, 234, 0.2);
    flex-shrink: 0;
}

.contact-item-details {
    flex: 1;
}

.contact-info-subtitle {
    margin: 0 0 8px;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.contact-info-text {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.06rem;
    font-weight: 600;
}

.contact-numbers .contact-info-text {
    color: var(--primary-blue);
    font-weight: 800;
}

.contact-info-note {
    margin: 8px 0 0;
    color: #8390aa;
    font-size: 0.95rem;
}

.whatsapp-direct {
    margin-top: 34px;
    padding: 28px;
    text-align: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.09), rgba(18, 140, 126, 0.08));
    border: 1px solid rgba(37, 211, 102, 0.18);
}

.whatsapp-direct-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.whatsapp-direct-btn:hover {
    background: linear-gradient(135deg, #1fae57, #0f776b);
}

.whatsapp-note {
    margin: 14px 0 0;
    color: var(--text-secondary);
}

.map-container {
    overflow: hidden;
}

.map-title {
    margin: 0;
    padding: 24px;
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.55rem;
    background: linear-gradient(135deg, rgba(23, 70, 234, 0.06), rgba(69, 118, 255, 0.06));
    border-bottom: 1px solid rgba(23, 70, 234, 0.1);
}

.map-wrapper {
    padding: 18px;
}

.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.map-frame iframe {
    display: block;
}

.map-overlay {
    position: absolute;
    top: 18px;
    left: 18px;
    max-width: 260px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

.map-info {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.map-marker {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-blue), var(--gradient-blue));
    flex-shrink: 0;
}

.map-details h4 {
    margin: 0 0 6px;
    color: var(--primary-blue);
}

.map-details p {
    margin: 0 0 8px;
    color: var(--text-secondary);
    font-size: 0.94rem;
}

.coordinates {
    font-family: monospace;
    color: #7d88a5;
}

.map-details .btn {
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 0.86rem;
}

.footer {
    background: linear-gradient(135deg, #161233 0%, #27225d 100%);
    color: var(--white);
    padding: 64px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-bottom: 34px;
}

.footer-title {
    margin: 0 0 16px;
    font-size: 2rem;
}

.footer-description {
    margin: 0;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.78);
}

.footer-col-title {
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 1.18rem;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links i {
    color: #ffb44f;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.copyright:hover {
    color: white;
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1100;
    animation: floatWhatsapp 3s ease-in-out infinite;
}

.whatsapp-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.38);
    transition: transform var(--transition);
}

.whatsapp-link:hover .whatsapp-icon {
    transform: scale(1.08);
}

.whatsapp-pulse {
    position: absolute;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.24);
    animation: pulseWhatsapp 2s infinite;
    z-index: 1;
}

.whatsapp-tooltip {
    position: absolute;
    left: 72px;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.82);
    color: var(--white);
    font-size: 0.88rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes wavePulse {
    0% {
        opacity: 0.2;
        transform: scale(0.92);
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

@keyframes floatPoint {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.45;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.8);
    }
}

@keyframes floatWhatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseWhatsapp {
    0% { transform: scale(0.8); opacity: 0.7; }
    70% { transform: scale(1.12); opacity: 0; }
    100% { transform: scale(1.12); opacity: 0; }
}

@media (max-width: 1100px) {
    .nav-menu {
        gap: 2px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 0.88rem;
    }

    .hero-grid,
    .services-grid,
    .testimonials-grid,
    .packages-grid,
    .all-packages-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .dish-container {
        height: 420px;
    }
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 14px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        padding: 18px;
        background: rgba(0, 12, 40, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        box-shadow: var(--shadow-strong);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        display: none;
    }

    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin-top: 14px;
    }

    .map-info,
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .map-marker,
    .contact .contact-icon {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 76px 0;
    }

    .hero-title {
        font-size: 2.55rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .dish-container {
        height: 340px;
    }

    .satellite-dish {
        transform: translateX(-50%) scale(0.8);
    }

    .contact-info-container,
    .map-wrapper {
        padding: 20px;
    }

    .map-frame iframe {
        height: 340px;
    }

    .whatsapp-float {
        left: 16px;
        bottom: 16px;
    }

    .whatsapp-icon {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }

    .whatsapp-pulse {
        width: 72px;
        height: 72px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
