:root {
    --primary: #f26b3c;
    --secondary: #21b2a6;
    --accent: #ffcc00;
    --dark: #2d3436;
    --light: #f9f9f9;
    --white: #ffffff;
    --gray: #636e72;
    --bg-gradient: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --btn-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    --btn-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
    --primary-gradient: linear-gradient(135deg, #37c0f7 0%, #37c0f7 100%);
    --secondary-gradient: linear-gradient(135deg, #f26b3c 0%, #d35400 100%);
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    scroll-behavior: smooth;
}

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

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo span {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 2px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    outline: none;
    text-align: center;
    box-shadow: var(--btn-shadow);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-gradient);
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--btn-shadow-hover);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: #37c0f7;
    border: 2px solid #37c0f7;
    padding: 0.95rem 2.65rem; /* Adjust for border */
}

.btn-secondary:hover {
    background: #37c0f7;
    color: var(--white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--btn-shadow-hover);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: var(--btn-shadow);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem auto 0;
    width: fit-content;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    color: var(--white);
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

section {
    padding: 6rem 0;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    background-color: #f0f0f0;
    display: block;
}

/* Fallback for missing images */
.category-card img:not([src]) {
    background: linear-gradient(45deg, var(--secondary), var(--accent));
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* How it Works */
.how-it-works {
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

/* Hygiene Promise */
.hygiene {
    background: var(--bg-gradient);
}

.promise-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.promise-item {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    backdrop-filter: blur(5px);
    box-shadow: var(--card-shadow);
}

.promise-item h4 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info .logo {
    color: var(--white);
    margin-bottom: 2rem;
    transition: opacity 0.3s;
}

.footer-info .logo:hover {
    opacity: 0.8;
}

.footer-info .logo span {
    color: #bdc3c7;
}

.footer-info p {
    color: #bdc3c7;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-contact h4,
.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.2rem;
}

.social-links a {
    color: #bdc3c7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #3d4a4d;
    padding: 2rem 0;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    nav ul {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-whatsapp {
        width: fit-content;
        padding: 0.8rem 1.5rem;
    }
}

/* Package Card Links */
.category-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card .price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.btn-text {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.category-card:hover .btn-text {
    color: var(--secondary);
    transform: translateX(5px);
}

.category-card:hover .btn-text::after {
    width: 100%;
}

/* Details Page Layout */
.detail-container {
    padding-top: 120px;
    padding-bottom: 60px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.detail-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
    background: #f0f0f0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.dot.active {
    background: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 480px) {
    .carousel-slide {
        height: 300px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.pkg-price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin: 1rem 0;
}

.pkg-highlights {
    display: flex;
    gap: 0.8rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pkg-highlights span {
    background: #f8fafc;
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.highlight-icon {
    font-size: 1.1rem;
}

.details-page header nav ul li a {
    background: var(--light);
    color: var(--dark);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--btn-shadow);
}

.details-page header nav ul li a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--btn-shadow-hover);
}

.inventory-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding-left: 1.2rem;
}

.booking-box {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    border: 2px dashed var(--secondary);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .inventory-list {
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--btn-shadow);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float .tooltip {
    visibility: hidden;
    width: 120px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 10px 0;
    position: absolute;
    z-index: 1;
    right: 125%;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: var(--btn-shadow);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: var(--btn-shadow-hover);
}

.whatsapp-float .tooltip {
    visibility: hidden;
    width: 120px;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(4px);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 0;
    position: absolute;
    z-index: 1;
    right: 130%;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: var(--btn-shadow);
    pointer-events: none;
}

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

/* Optional: Gentle pulse effect */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}