/* MM Technologies - Professional Redesigned Styles */
/* Modern, Clean, Professional Design System */

:root {
    --primary: #1B3A5C;
    --primary-light: #2A5F8F;
    --primary-lighter: #4A90E2;
    --primary-dark: #0F2439;
    --accent: #FF8C42;
    --accent-light: #FFA726;
    --accent-glow: rgba(255, 140, 66, 0.3);
    --green: #25D366;
    --green-dark: #128C7E;
    --white: #FFFFFF;
    --off-white: #F7F9FC;
    --gray-50: #FAFBFD;
    --gray-100: #F1F4F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 36, 57, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 64px;
    background: rgba(15, 36, 57, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.navbar .logo-img {
    height: 80px;
    width: auto;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar .logo span {
    color: var(--accent);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 6% 60px;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15,36,57,0.92) 0%, rgba(27,58,92,0.88) 50%, rgba(15,36,57,0.85) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-text h1 span {
    color: var(--accent);
}

.hero-text h2 {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.hero-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.25);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    box-shadow: none;
}

.hero-visual {
    position: relative;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slideshow-container .slide-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: none;
    animation: fadeSlide 1s ease-in-out;
}

.slideshow-container .slide-img.active {
    display: block;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

.slide-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slide-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.slide-indicators .dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* Slide navigation arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    backdrop-filter: blur(4px);
}

.slide-nav:hover {
    background: rgba(255,255,255,0.3);
}

.slide-nav.prev {
    left: 12px;
}

.slide-nav.next {
    right: 12px;
}

/* ===== FULL HERO SLIDER ===== */
.hero-slider {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--primary-dark);
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 900ms ease, visibility 900ms ease, transform 5000ms ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 36, 57, 0.93) 0%, rgba(27, 58, 92, 0.84) 48%, rgba(15, 36, 57, 0.45) 100%),
        linear-gradient(180deg, rgba(15, 36, 57, 0.25) 0%, rgba(15, 36, 57, 0.78) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 6% 90px;
}

.hero-slider .hero-text {
    max-width: 720px;
}

.hero-slider .hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 1.1rem;
}

.hero-slider .hero-text h1 span {
    color: var(--accent);
}

.hero-slider .hero-text h2 {
    font-size: clamp(1.2rem, 2.4vw, 1.75rem);
    font-weight: 500;
    line-height: 1.38;
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin-bottom: 1.4rem;
}

.hero-slider .hero-divider {
    width: 88px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 999px;
    margin-bottom: 1.45rem;
}

.hero-slider .hero-text p {
    max-width: 670px;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.3rem;
}

.hero-slider .hero-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 2.4rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-slider-nav:hover,
.hero-slider-nav:focus-visible {
    background: var(--accent);
    border-color: var(--accent);
    outline: none;
    transform: translateY(-50%) scale(1.06);
}

.hero-slider-nav.prev {
    left: 28px;
}

.hero-slider-nav.next {
    right: 28px;
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
    width: 34px;
    background: var(--accent);
    border-color: var(--accent);
}

@media (max-width: 1024px) {
    .hero-slide-content {
        justify-content: center;
        text-align: center;
        padding-left: 9%;
        padding-right: 9%;
    }

    .hero-slider .hero-buttons {
        justify-content: center;
    }

    .hero-slider .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 780px;
    }

    .hero-slide-content {
        min-height: 780px;
        padding: 110px 6% 82px;
    }

    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(15, 36, 57, 0.9) 0%, rgba(27, 58, 92, 0.88) 55%, rgba(15, 36, 57, 0.92) 100%);
    }

    .hero-slider-nav {
        width: 42px;
        height: 42px;
        font-size: 2rem;
        top: auto;
        bottom: 25px;
        transform: none;
    }

    .hero-slider-nav:hover,
    .hero-slider-nav:focus-visible {
        transform: scale(1.04);
    }

    .hero-slider-nav.prev {
        left: 18px;
    }

    .hero-slider-nav.next {
        right: 18px;
    }

    .hero-slider-dots {
        bottom: 38px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 820px;
    }

    .hero-slide-content {
        min-height: 820px;
        padding: 108px 5% 94px;
    }

    .hero-slider .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .hero-slider .cta-button {
        width: 100%;
        justify-content: center;
    }

    .hero-slider-nav {
        display: none;
    }

    .hero-slider-dots {
        bottom: 28px;
    }
}

/* ===== STATS SECTION ===== */
.stats {
    background: var(--white);
    padding: 0 6%;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 7rem 6%;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: var(--accent);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent), var(--accent-light));
    transition: var(--transition);
    border-radius: 0 0 4px 0;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(74,144,226,0.1), rgba(255,140,66,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== PACKAGES SECTION ===== */
.packages {
    padding: 7rem 6%;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--gray-900) 100%);
    position: relative;
}

.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(74,144,226,0.08) 0%, transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255,140,66,0.06) 0%, transparent 60%);
}

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

.packages .section-header p {
    color: rgba(255,255,255,0.6);
}

.packages-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-lighter), var(--accent));
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.package-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(255,140,66,0.2);
}

.package-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.package-card.platinum {
    border: 2px solid #a07820;
    box-shadow: 0 20px 50px rgba(160,120,32,0.18);
    background: linear-gradient(160deg, #fffdf5 0%, #fff8e1 100%);
}

.package-card.platinum:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(160,120,32,0.28);
}

.package-card.platinum .package-badge {
    background: linear-gradient(135deg, #bfa040, #d4af37, #a07820);
}

.package-card.platinum .package-name {
    color: #7a5c10;
}

.package-card.platinum .package-price {
    color: #a07820;
}

.package-card.platinum .package-cta {
    background: linear-gradient(135deg, #bfa040, #d4af37);
}

.package-card.platinum .package-cta:hover {
    background: linear-gradient(135deg, #a07820, #bfa040);
    box-shadow: 0 4px 15px rgba(160,120,32,0.35);
}

.package-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
}

.package-price span {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0;
}

.package-period {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.4;
}

.package-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    margin-right: 10px;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.package-cta {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: none;
    width: 100%;
}

.package-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27,58,92,0.3);
}

.package-card.featured .package-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.package-card.featured .package-cta:hover {
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-us {
    padding: 7rem 6%;
    background: var(--white);
}

.why-us-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--off-white);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.why-card:hover h3,
.why-card:hover p {
    color: var(--white);
}

.why-card:hover .why-icon {
    background: rgba(255,255,255,0.15);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(74,144,226,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    margin-bottom: 0.6rem;
    font-weight: 700;
    transition: var(--transition);
}

.why-card p {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 0.92rem;
    transition: var(--transition);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 7rem 6%;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,140,66,0.05);
}

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

.contact .section-header p {
    color: rgba(255,255,255,0.6);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.contact-info h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 700;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    cursor: pointer;
    border: none;
}

.whatsapp-button:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.contact-details {
    margin-top: 2rem;
    color: rgba(255,255,255,0.7);
}

.contact-details p {
    margin: 0.6rem 0;
    font-size: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--gray-900);
    padding: 3rem 6%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer .footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-logo-img {
    height: 100px;
    width: auto;
    border-radius: 4px;
}

footer .footer-logo span {
    color: var(--accent);
    font-weight: 600;
}

footer p {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    background: var(--green-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

/* Pulse animation for WhatsApp button */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--green);
    animation: whatsappPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ===== WHATSAPP POPUP MODAL ===== */
.whatsapp-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-modal-overlay.show {
    display: flex;
    opacity: 1;
}

.whatsapp-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-xl);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    animation: modalSlideIn 0.3s ease forwards;
}

@keyframes modalSlideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.whatsapp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-modal-close:hover {
    color: var(--gray-600);
    background: var(--gray-100);
}

.whatsapp-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.5rem;
}

.whatsapp-modal-header .wa-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-modal-header h3 {
    font-size: 1.2rem;
    color: var(--gray-800);
    font-weight: 700;
}

.whatsapp-modal-header p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 2px;
}

.whatsapp-modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.whatsapp-modal .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.whatsapp-modal label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 600;
}

.whatsapp-modal input,
.whatsapp-modal textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
    color: var(--gray-800);
}

.whatsapp-modal input:focus,
.whatsapp-modal textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
    background: var(--white);
}

.whatsapp-modal textarea {
    resize: vertical;
    min-height: 100px;
}

.whatsapp-modal .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--green);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    font-family: inherit;
}

.whatsapp-modal .submit-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

.feature-card,
.package-card,
.why-card,
.stat-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar .logo-img {
        height: 60px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 36, 57, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 2rem;
    }

    .hero {
        padding: 100px 5% 40px;
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text h2 {
        font-size: 1.15rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .features-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .packages-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 2rem;
    }

    .slideshow-container .slide-img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .packages-container {
        max-width: 100%;
    }

    .whatsapp-modal {
        padding: 1.5rem;
    }
}
