/* ============================================================
   i-Net Communications Inc. - Modern Redesign
   Brand Color: #4DAAA7 (Teal)
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --primary: #4DAAA7;
    --primary-dark: #3d8e8b;
    --primary-light: #6bc4c1;
    --primary-glow: rgba(77, 170, 167, 0.15);
    --dark: #1a1a2e;
    --dark-mid: #16213e;
    --dark-light: #0f3460;
    --text: #4B4F58;
    --text-light: #6b7280;
    --heading: #1a1a2e;
    --white: #ffffff;
    --off-white: #f8fafb;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #64748b;
    --gold: #f59e0b;
    --orange: #f97316;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.16);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    color: var(--heading);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(77, 170, 167, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(77, 170, 167, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--off-white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 65px;
    width: auto;
}

.nav-logo span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--heading);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    padding: 10px 20px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-glow);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
}

.nav-phone i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.9rem;
}

.nav-phone-text {
    display: flex;
    flex-direction: column;
}

.nav-phone-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-phone-number {
    font-size: 0.95rem;
    color: var(--heading);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--heading);
    cursor: pointer;
    padding: 8px;
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--white);
    padding: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.mobile-nav-header img {
    height: 45px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-links a {
    display: block;
    padding: 14px 20px;
    color: var(--heading);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--primary-glow);
    color: var(--primary);
}

.mobile-nav-contact {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text);
    font-weight: 500;
}

.mobile-nav-contact i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.85rem;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.55) 0%, rgba(15, 52, 96, 0.3) 50%, rgba(26, 26, 46, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    color: var(--white);
    max-width: 700px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--primary-light), #a8edea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    position: absolute;
    right: -5%;
    bottom: 5%;
    z-index: 2;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
    opacity: 0.9;
}

/* Slider dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(77, 170, 167, 0.5);
    transform: scale(1.2);
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

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

.section-gray {
    background: var(--off-white);
}

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

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-header h2 {
    color: var(--white);
}

/* --- Customer Cards --- */
.customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.customer-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    group: true;
}

.customer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.customer-card:hover img {
    transform: scale(1.08);
}

.customer-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transition: var(--transition);
}

.customer-card:hover .customer-card-overlay {
    background: linear-gradient(to top, rgba(77, 170, 167, 0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
}

.customer-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.customer-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.customer-card:hover p {
    max-height: 200px;
    opacity: 1;
    margin-top: 8px;
}

/* --- Starlink Showcase --- */
.starlink-showcase {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.starlink-showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.starlink-showcase-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(15, 52, 96, 0.8));
}

.starlink-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.starlink-text h2 {
    color: var(--white);
    margin-bottom: 24px;
}

.starlink-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.starlink-specs li {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.starlink-specs li .spec-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 170, 167, 0.2);
    border: 1px solid rgba(77, 170, 167, 0.3);
    border-radius: var(--radius-md);
    color: var(--primary-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.starlink-specs .spec-value {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.starlink-specs .spec-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.starlink-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.starlink-dish-img {
    max-width: 380px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    animation: float 6s ease-in-out infinite;
}

.starlink-product-img {
    position: absolute;
    bottom: -30px;
    right: -20px;
    max-width: 200px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite 1s;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-label {
    margin-bottom: 16px;
}

.about-text h2 {
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-video-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-video-wrap video {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
}

/* --- Advantages / Pie Charts --- */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.advantage-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.advantage-stat {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--heading);
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
}

.advantage-card h3 {
    font-size: 1rem;
    color: var(--heading);
    line-height: 1.4;
    margin-bottom: 6px;
}

.advantage-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(77, 170, 167, 0.7));
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 32px;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- About Page --- */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.55), rgba(15, 52, 96, 0.4));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px 24px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .text-orange {
    color: var(--orange);
}

/* History & Pioneers */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.split-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
}

.split-content .section-label {
    margin-bottom: 16px;
}

.split-content h2 {
    margin-bottom: 24px;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* What We Offer */
.offer-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.offer-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.offer-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.88);
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer-card {
    text-align: center;
    padding: 48px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.offer-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    transition: transform 0.4s ease;
}

.offer-card:hover img {
    transform: scale(1.15);
}

.offer-card h3 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.offer-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Packages Page --- */
.packages-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
}

/* Pricing CTA */
.pricing-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.pricing-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.pricing-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-list .info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-list .info-text h4 {
    color: var(--heading);
    margin-bottom: 4px;
}

.contact-info-list .info-text p {
    color: var(--text-light);
    margin: 0;
}

.contact-info-list .info-text a {
    color: var(--text);
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    margin-bottom: 8px;
}

.contact-form .form-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heading);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 6px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--primary);
    margin-top: 3px;
    width: 18px;
    text-align: center;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.6);
}
.footer-contact-list a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover {
    color: var(--primary-light);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.mb-0 { margin-bottom: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-image { display: none; }
    .customers-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .starlink-content { grid-template-columns: 1fr; text-align: center; }
    .starlink-images { margin-top: 40px; }
    .about-grid { grid-template-columns: 1fr; }
    .split-section { grid-template-columns: 1fr; }
    .split-content { padding: 48px 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer { padding: 48px 0 0; }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
        padding-bottom: 24px;
        max-width: 700px;
        margin: 0 auto;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 4px;
    }
    .footer-brand img { height: 56px; margin: 0 auto 10px; }
    .footer-brand p { max-width: 360px; margin: 0 auto 14px; font-size: 0.9rem; }
    .footer-social { justify-content: center; }
    .footer h4 { font-size: 0.8rem; margin-bottom: 14px; }
    .footer-links { gap: 8px; }
    .footer-links a { font-size: 0.9rem; }
    .footer-contact-list { gap: 10px; }
    .footer-contact-list li { font-size: 0.88rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    /* Fix parallax backgrounds on touch devices */
    .starlink-showcase-bg,
    .cta-banner-bg,
    .offer-bg { background-attachment: scroll; }
}

@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-nav { display: block; }

    /* --- Tighter section spacing --- */
    .section { padding: 48px 0; }
    .section-sm { padding: 28px 0; }
    .section-header { margin-bottom: 28px; }
    .section-header p { font-size: 0.95rem; }

    /* --- Hero: compact, stats stay horizontal --- */
    .hero { min-height: 85vh; }
    .hero-content { padding-top: 70px; }
    .hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.6; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 16px; gap: 6px; }
    .hero-stats {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
        margin-top: 28px;
        padding-top: 20px;
    }
    .hero-stat { text-align: center; flex: 1; }
    .hero-stat-number { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.7rem; }
    .hero-buttons { flex-direction: row; gap: 10px; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 0.85rem; }
    .hero-buttons .btn.btn-lg { padding: 12px 20px; font-size: 0.85rem; }
    .hero-dots { bottom: 20px; }

    /* --- Customer cards: horizontal scroll carousel --- */
    .customers-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .customers-grid::-webkit-scrollbar { display: none; }
    .customer-card {
        min-width: calc(85vw - 32px);
        width: calc(85vw - 32px);
        height: 280px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    .customer-card p { max-height: 80px; opacity: 1; margin-top: 6px; font-size: 0.85rem; }
    .customer-card h3 { font-size: 1.2rem; }
    .customer-card-overlay { padding: 20px; }

    /* --- Starlink showcase: remove min-height, compact --- */
    .starlink-showcase { min-height: auto; }
    .starlink-showcase-bg { background-attachment: scroll; }
    .starlink-images { margin-top: 24px; }
    .starlink-dish-img { max-width: 200px; }
    .starlink-product-img { max-width: 110px; bottom: -15px; right: -10px; }
    .starlink-specs { gap: 10px; margin-bottom: 20px; }
    .starlink-specs li { font-size: 0.9rem; gap: 12px; }
    .starlink-specs .spec-icon { width: 38px; height: 38px; font-size: 0.9rem; }
    .starlink-specs .spec-value { font-size: 1.05rem; }
    .starlink-specs .spec-label { font-size: 0.75rem; }

    /* --- About section --- */
    .about-text p { font-size: 0.95rem; line-height: 1.7; }

    /* --- Advantages: 2-col, compact --- */
    .advantages-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .advantage-card { padding: 20px 12px; }
    .advantage-card i { font-size: 1.4rem; margin-bottom: 8px; }
    .advantage-stat { font-size: 2rem; }
    .advantage-card h3 { font-size: 0.8rem; }
    .advantage-card p { font-size: 0.75rem; }

    /* --- Gallery: keep 3-col, smaller --- */
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    /* --- Testimonials: fade slideshow on mobile --- */
    .testimonials-grid {
        display: block !important;
        position: relative;
        overflow: hidden;
    }
    .testimonial-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        pointer-events: none;
        padding: 24px 20px;
    }
    .testimonial-card.t-active {
        position: relative;
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
    .testimonial-card.t-exit {
        transform: translateX(-30px);
    }
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    .testimonial-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }
    .testimonial-dot.active {
        background: var(--primary);
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(77, 170, 167, 0.5);
    }
    .testimonial-text { font-size: 0.9rem; margin-bottom: 16px; line-height: 1.7; }
    .testimonial-stars { font-size: 0.95rem; margin-bottom: 12px; }
    .testimonial-avatar { width: 40px; height: 40px; font-size: 0.9rem; }
    .testimonial-author h4 { font-size: 0.9rem; }
    .testimonial-author span { font-size: 0.75rem; }

    /* --- CTA sections: compact --- */
    .cta-banner { padding: 48px 0; }
    .cta-banner-bg { background-attachment: scroll; }
    .cta-banner h2 { font-size: 1.5rem; margin-bottom: 20px; }
    .pricing-cta { padding: 40px 0; }
    .pricing-cta h2 { font-size: 1.5rem; }
    .pricing-cta p { font-size: 0.95rem; margin-bottom: 20px; }

    /* --- Footer: centered single-column mobile layout --- */
    .footer { padding: 32px 0 0; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 16px;
        text-align: center;
    }
    /* Hide nav links - already in hamburger menu */
    .footer-grid > div:nth-child(2) { display: none; }
    /* Hide separate contact & hours columns */
    .footer-grid > div:nth-child(3),
    .footer-grid > div:nth-child(4) { display: none; }
    .footer-brand {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 20px;
    }
    .footer-brand img { height: 48px; margin: 0 auto 8px; }
    .footer-brand p { font-size: 0.8rem; margin-bottom: 16px; line-height: 1.5; max-width: 280px; margin-left: auto; margin-right: auto; }
    .footer-social { justify-content: center; gap: 12px; }
    .footer-social a { width: 38px; height: 38px; font-size: 0.9rem; }
    /* Inline contact bar after brand */
    .footer-grid::after {
        content: '210 Camp & New Market St. Georgetown\A(592) 223-7438  •  george@inet.gy\AMon – Sat: 8AM – 5PM';
        white-space: pre-line;
        display: block;
        font-size: 0.8rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.5);
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 14px 0;
        font-size: 0.75rem;
    }

    /* --- Forms: tighter --- */
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 18px; }
    .contact-form h3 { font-size: 1.15rem; }
    .form-group { margin-bottom: 14px; }
    .form-group label { font-size: 0.85rem; margin-bottom: 6px; }
    .form-group input, .form-group textarea { padding: 11px 14px; font-size: 0.9rem; }
    .form-group textarea { min-height: 100px; }
    .contact-map { height: 250px; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }

    /* --- Page hero (about/contact): shorter --- */
    .page-hero { min-height: 35vh; padding-top: 70px; }
    .page-hero-content { padding: 32px 16px; }
    .page-hero h1 { font-size: 1.75rem; }
    .page-hero p { font-size: 0.95rem; }

    /* --- Split sections (about page): compact --- */
    .split-section { min-height: auto; }
    .split-image { min-height: 220px; }
    .split-content { padding: 28px 20px; }
    .split-content h2 { margin-bottom: 16px; }
    .split-content p { font-size: 0.95rem; line-height: 1.7; }

    /* --- Offer grid: 2-col --- */
    .offer-section { padding: 48px 0; }
    .offer-bg { background-attachment: scroll; }
    .offer-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .offer-card { padding: 24px 14px; }
    .offer-card img { width: 48px; height: 48px; margin-bottom: 12px; }
    .offer-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
    .offer-card p { font-size: 0.8rem; }

    /* --- Services grid (packages page): horizontal scroll --- */
    .services-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .services-grid::-webkit-scrollbar { display: none; }
    .service-card {
        min-width: calc(85vw - 32px);
        width: calc(85vw - 32px);
        height: 280px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    .service-card h3 { font-size: 1.2rem; }
    .service-card-overlay { padding: 20px; }

    /* --- Packages hero --- */
    .packages-hero .hero-stats { margin-bottom: 20px; }

    /* --- Contact info list --- */
    .contact-info-list { gap: 16px; margin-bottom: 24px; }
    .contact-info-list .info-icon { width: 40px; height: 40px; font-size: 0.95rem; }
    .contact-info-list .info-text h4 { font-size: 1rem; }
    .contact-info-list .info-text p { font-size: 0.9rem; }

    /* --- Gradient orbs: smaller on mobile --- */
    .gradient-orb-1 { width: 250px; height: 250px; }
    .gradient-orb-2 { width: 200px; height: 200px; }
    .gradient-orb-3 { width: 180px; height: 180px; }

    /* --- Homepage: hide sections that have dedicated pages --- */
    #starlink,
    #about,
    #advantages,
    #gallery { display: none; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.4rem; }
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 1.65rem; }
    .hero-stat-number { font-size: 1.3rem; }
    .hero-buttons { flex-direction: column; gap: 8px; }
    .hero-buttons .btn { justify-content: center; }
    .customer-card { height: 260px; }
    .service-card { height: 260px; }
    .advantages-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .advantage-card { padding: 16px 10px; }
    .advantage-stat { font-size: 1.7rem; }
    .advantage-card h3 { font-size: 0.75rem; }
    .offer-grid { grid-template-columns: 1fr 1fr; }
    .offer-card { padding: 20px 12px; }
    .page-hero { min-height: 30vh; }
}

/* ============================================================
   ENHANCED CSS - Visual Effects & Animations
   ============================================================ */

/* --- 1. Scroll Progress Bar --- */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    z-index: 9999;
    background: linear-gradient(to right, #4DAAA7, #a8edea);
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
}

/* --- 2. Custom Cursor --- */
.custom-cursor * {
    cursor: none !important;
}

#cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    z-index: 10000;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

#cursorFollower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.cursor-active #cursor {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor-active #cursorFollower {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(77, 170, 167, 0.1);
}

.cursor-light #cursor {
    background: white;
}

.cursor-light #cursorFollower {
    border-color: white;
}

@media (max-width: 1024px) {
    #cursor,
    #cursorFollower {
        display: none;
    }
}

/* --- 3. Hero Particles Canvas --- */
#heroParticles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* --- 4. Animated Gradient Orbs --- */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: orbFloat1 20s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: #a8edea;
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 25s ease-in-out infinite;
}

.gradient-orb-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 30px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.15); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-60px, 30px); }
    75% { transform: translate(40px, -50px); }
}

/* --- 5. Enhanced Glassmorphism Cards --- */
.customer-card {
    overflow: hidden;
}

.customer-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, transparent 40%, var(--primary) 50%, transparent 60%);
    z-index: 2;
    opacity: 0;
    transition: 0.6s;
}

.customer-card:hover::before {
    opacity: 0.3;
}

.advantage-card:hover {
    box-shadow: 0 20px 60px rgba(77, 170, 167, 0.2), 0 0 0 1px var(--primary);
}

.offer-card {
    backdrop-filter: blur(20px);
}

/* --- 6. Enhanced Button Glow Effects --- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: none;
}

.btn-primary:hover::before {
    transform: translateX(100%);
    transition: 0.6s;
}

/* --- 7. Navbar Auto-Hide --- */
.navbar {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, background 0.4s;
}

.navbar-hidden {
    transform: translateY(-100%);
}

/* --- 8. Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(77, 170, 167, 0.15);
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- 9. Page Transition Overlay --- */
#pageTransition {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    pointer-events: none;
}

#pageTransition.active {
    transform: scaleY(1);
    transform-origin: top;
}

/* --- 10. Tilt Card Styles --- */
.customer-card,
.advantage-card,
.offer-card,
.testimonial-card {
    transform-style: preserve-3d;
}

/* --- 11. Enhanced Hero Styles --- */
.hero-stat-number {
    font-family: 'DM Sans', sans-serif;
}

.hero-badge {
    animation: fadeInUp 0.8s ease, pulse 3s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(77, 170, 167, 0.3); }
    50% { box-shadow: 0 0 20px 10px rgba(77, 170, 167, 0); }
}

/* --- 12. Smooth Image Reveal --- */
.gallery-item img,
.customer-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* --- 13. Floating Animation Enhancement --- */
.float-element {
    animation: floatEnhanced 6s ease-in-out infinite;
}

@keyframes floatEnhanced {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    75% { transform: translateY(-8px) rotate(-1deg); }
}

/* --- 14. Section Divider --- */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    max-width: 200px;
    margin: 0 auto 40px;
    opacity: 0.5;
}

/* --- 15. Text Gradient Animation --- */
.hero h1 .text-gradient {
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- 16. Word Reveal Animation --- */
.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.word-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
