/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
body {
    line-height: 1.6;
    color: #1f2937;
    background: #f8fafc;
}
/* NAVBAR */
.navbar {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: #2563eb; }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.username-btn {
    background: linear-gradient(145deg, #dbeafe, #eff6ff);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-weight: 600;
    color: #1e40af;
    cursor: default;
    box-shadow: 0 2px 5px rgba(37,99,235,0.1);
}
.hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: #2563eb; }

/* HERO */
.hero {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    padding: 4rem 2rem;
}
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}
.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}
.hero-text p { font-size: 1.1rem; color: #334155; margin-bottom: 2rem; max-width: 500px; }
.btn-primary {
    background: linear-gradient(145deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    padding: 0.9rem 2.2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 16px -6px #2563eb80;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-primary:hover { transform: scale(1.02); background: linear-gradient(145deg, #1d4ed8, #2563eb); box-shadow: 0 10px 20px -5px #1e3a8a; }
.hero-image {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 6rem;
    color: #2563eb;
    background: rgba(37,99,235,0.1);
    border-radius: 60% 40% 50% 50%;
    padding: 2rem;
}
.hero-image {
    background: none;
    border-radius: 0;
    padding: 0;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px; /* keeps nice rounded image */
    display: block;
}

/* STATS STRIP (blue full width) */
.stats-strip {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    flex-wrap: wrap;
    gap: 2rem;
}
.stat-item { text-shadow: 0 2px 5px rgba(0,0,0,0.1); }

/* BOOKING SECTION */
.booking-section {
    max-width: 1280px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.booking-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
}
.services-list h2 { margin-bottom: 1.5rem; color: #0f172a; }
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}
.service-card {
    background: white;
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 6px 14px rgba(0,27,55,0.08);
    transition: 0.2s;
    border: 1px solid rgba(37,99,235,0.1);
}
.service-card h4 { font-weight: 600; margin-bottom: 0.5rem; }
.service-card p { color: #2563eb; font-weight: 700; margin-bottom: 1rem; }
.card-btns { display: flex; gap: 0.5rem; }
.add-btn, .remove-btn {
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}
.add-btn { background: #2563eb; color: white; box-shadow: 0 2px 6px #2563eb70; }
.remove-btn { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.add-btn:hover { background: #1d4ed8; }
.remove-btn:hover { background: #fecaca; }
.add-items-note { margin-top: 1.5rem; font-style: italic; color: #475569; }

/* CART & BOOKING */
.cart-booking { background: white; border-radius: 28px; padding: 1.8rem; box-shadow: 0 20px 30px -10px #cbd5e1; }
.cart-section h3 { margin-bottom: 1rem; color: #0f172a; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.cart-table th { background: #f1f5f9; padding: 0.5rem; border-radius: 12px 12px 0 0; }
.cart-table td { padding: 0.4rem; border-bottom: 1px solid #e2e8f0; text-align: center; }
.cart-total { text-align: right; font-weight: 700; font-size: 1.2rem; margin: 1rem 0; color: #1e3a8a; }
.booking-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    border: 1px solid #cbd5e1;
    border-radius: 30px;
    outline: none;
    transition: 0.2s;
}
.booking-form input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px #93c5fd; }
#bookNowBtn { width: 100%; margin-top: 1rem; }
.success-msg { margin-top: 1rem; color: #059669; font-weight: 500; min-height: 2rem; }

/* QUALITY SECTION */
.quality-section {
    background: white;
    padding: 3rem 2rem;
}
.quality-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}
.quality-card {
    text-align: center;
    padding: 1.8rem 1rem;
    border-radius: 30px;
    background: #f8fafc;
    box-shadow: 0 6px 14px #e2e8f0;
    transition: 0.3s;
}
.quality-card:hover { transform: translateY(-5px); background: white; }
.quality-card i { font-size: 2.5rem; background: linear-gradient(145deg, #2563eb, #38bdf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.5rem; }

/* NEWSLETTER */
.newsletter {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: white;
    padding: 3rem 2rem;
}
.newsletter-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.newsletter-left { font-size: 1.8rem; font-weight: 600; }
.newsletter-right { display: flex; gap: 1rem; flex-wrap: wrap; }
.newsletter-right input {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 60px;
    min-width: 200px;
    outline: none;
}
.btn-secondary {
    background: white;
    color: #2563eb;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}
.btn-secondary:hover { background: #f1f5f9; }

/* FOOTER */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 3rem 2rem 2rem;
}
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
}
.footer-col h4 { color: white; margin-bottom: 1rem; }
.footer-col a { color: #94a3b8; text-decoration: none; }
.footer-col a:hover { color: #38bdf8; }
.footer-col ul { list-style: none; }
.social-icons i { font-size: 1.5rem; margin-right: 0.8rem; cursor: pointer; color: #94a3b8; }
.social-icons i:hover { color: #38bdf8; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero-container, .booking-container, .quality-container { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: white; padding: 2rem; box-shadow: 0 10px 10px rgba(0,0,0,0.1); }
    .footer-container { grid-template-columns: repeat(2,1fr); }
    .newsletter-container { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2.2rem; }
}
@media (max-width: 480px) {
    .stats-strip { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr; }
}

.toggle-btn{
background:#2563eb;
color:white;
border:none;
padding:8px 16px;
border-radius:6px;
cursor:pointer;
}
