:root {
    --primary: #0d6efd;
    --dark: #0b0b0b;
    --light: #ffffff;
    --gray: #f5f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--light);
    color: #333;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-btn {
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    background: linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.55)
    ), url("../images/image.avif") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    color: white;
    font-size: clamp(32px, 5vw, 56px);
}

.hero p {
    color: #ddd;
    margin: 15px 0 25px;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTON ===== */
.btn {
    padding: 12px 26px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 8%;
    text-align: center;
}

.about-preview {
    background: var(--gray);
}

.services h2 {
    margin-bottom: 40px;
}

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

/* ===== CTA SECTION (FIXED & RESPONSIVE) ===== */
.cta {
    background: var(--primary);
    color: white;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #eaf1ff;
}

.cta .btn {
    background: white;
    color: var(--primary);
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: #bbb;
    text-align: center;
    padding: 20px;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
    nav {
        position: absolute;
        top: 65px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 220px;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    nav a {
        padding: 15px;
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}






/* ===== PACKAGE CARDS ===== */
.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.package-card h3 {
    margin: 10px 0;
}

.package-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}







/* ===== CONTACT PAGE ===== */
.contact-section {
    background: var(--gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 15px;
}

.info-box {
    margin: 20px 0;
    font-size: 16px;
}

.info-box a {
    color: var(--primary);
    text-decoration: none;
}

.contact-form form {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    font-size: 28px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    z-index: 1000;
}



/* ===== FEATURED SERVICES ===== */
.featured-services {
    padding: 80px 8%;
}

.featured-card {
    height: 420px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.75)
    );
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.featured-overlay .tag {
    font-size: 14px;
    letter-spacing: 3px;
    opacity: 0.9;
}

.featured-overlay h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin: 10px 0 20px;
}

.price-box {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.price {
    font-size: 28px;
    font-weight: 700;
}

.price-box span {
    font-size: 14px;
    opacity: 0.9;
}

.featured-btn {
    background: white;
    color: #0d6efd;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
}

/* MOBILE */
@media (max-width: 768px) {
    .featured-card {
        height: 380px;
    }

    .price-box {
        flex-direction: column;
        gap: 12px;
    }
}



/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 36px 32px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    animation: modalFade 0.3s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
}

.modal-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.modal-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-btn {
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s ease;
}

.modal-btn.primary {
    background: #0d6efd;
    color: white;
}

.modal-btn.primary:hover {
    background: #0b5ed7;
}

.modal-btn.outline {
    border: 1px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.modal-btn.outline:hover {
    background: #f0f6ff;
}

.modal-link {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
}

.modal-link:hover {
    text-decoration: underline;
}



/* ===== SIMPLE HERO ===== */
.hero-simple {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8f9fb, #eef2f7);
    text-align: center;
}

.hero-simple h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: #111;
}

.hero-simple p {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 20px;
    text-align: center;
}

.about-section p {
    max-width: 720px;
    margin: 0 auto;
    color: #555;
    line-height: 1.7;
}

/* ===== FOCUS SECTION ===== */
.focus-section {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

.focus-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.focus-card {
    background: white;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.focus-card span {
    font-size: 30px;
}

.focus-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== WHY SECTION ===== */
.why-section {
    padding: 80px 20px;
    text-align: center;
}

.why-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.why-item {
    padding: 16px;
    border: 1px solid #eee;
    border-radius: 14px;
    font-size: 15px;
    background: #fff;
}
/* ===== PACKAGES GRID ===== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* ===== PACKAGE CARD ===== */
.package-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* IMAGE FIX (CRITICAL) */
.package-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* BODY FIX */
.package-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1; /* makes all cards equal height */
}

.package-body h3 {
    margin-bottom: 5px;
}

.package-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* PRICE ROW */
.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

/* BUTTON ALIGNMENT FIX */
.full-btn {
    margin-top: auto; /* pushes button to bottom */
    width: 100%;
    text-align: center;
}


