/* theme variables for consistent colors and easy tweaking */
:root {
    --primary: #1d0038;
    --secondary: #1d0038;
    --accent: #fbbf24;
    --light-bg: #f8fafc;
    --lighter-bg: #f0f4f8;
    --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #334155;
    background: var(--lighter-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 80vw; /* restrict overall content width to 80% of viewport */
}

/* ensure full width on very large screens while retaining 80% rule */
@media (min-width: 1500px) {
    .container {
        width: 1200px;
    }
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* move logo further left by giving it automatic right margin */
.navbar .logo {
    margin-right: auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 70px; /* increased size */
    width: auto;
    border-radius: 5px;
    transition: height 0.3s ease;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px; /* slightly smaller on mobile */
    }
}

.logo-text {
    color: white;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    
    padding: 120px 20px;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* slanted bottom divider for hero/slider */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
   
    transform: skewY(-3deg);
    transform-origin: top left;
}

/* Page Hero Section */
.page-hero {
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 14px 40px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: var(--card-shadow);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    background: var(--accent);
    color: var(--secondary);
}

/* Services Section */
.services {
    padding: 100px 20px;
    background-color: var(--light-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--secondary);
    font-weight: 700;
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

/* generic section heading underline */
section h2 {
    position: relative;
}
section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 20px;
    background: white;
}

.featured-services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 700;
    position: relative;
}

.featured-services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* legacy card layout (kept for other pages) */
.featured-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

/* alternative full-image hero cards used on home page */
.featured-services-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.service-card-alt {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card-alt:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.service-card-alt .card-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-card-alt h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card-alt p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-alt .card-btn {
    background: white;
    color: #1e40af;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card-alt .card-btn:hover {
    background: #fbbf24;
    color: #1e40af;
}

/* make cards slightly shorter on small screens */
@media (max-width: 768px) {
    .service-card-alt {
        height: 300px;
    }
    .service-card-alt .card-overlay {
        padding: 1.5rem;
    }
}

.featured-service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
    display: flex;
    flex-direction: column;
}

.featured-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.featured-service-card .service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.featured-service-card .service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-service-card h3 {
    color: #1e40af;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.service-pricing span {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f59e0b;
}

.service-btn {
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.service-card {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(30, 64, 175, 0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.service-card h3 {
    color: #1e40af;
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    min-height: 60px;
    line-height: 1.7;
}

.price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #f59e0b;
    margin-top: 1rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.price-details span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1d0038;
    background: #eff6ff;
    padding: 0.7rem;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
}

/* Hours Section */
.hours {
    padding: 100px 20px;
    background: var(--light-bg);
}

.hours h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.hours-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.hours-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.day-hours {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1d0038;
    transition: all 0.3s ease;
}

.day-hours:hover {
    background: #eff6ff;
}

.day-hours h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.day-hours p {
    color: #475569;
    font-size: 1rem;
    font-weight: 500;
}

.hours-note {
    background: #eff6ff;
    padding: 2.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #bfdbfe;
}

.hours-note p {
    margin-bottom: 1rem;
    color: #334155;
    line-height: 1.8;
}

.hours-note p strong {
    color: #1e40af;
    font-weight: 700;
}

/* Home map section */
.home-map-section {
    padding: 90px 20px;
    background: #f8fafc;
}

.home-map-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: stretch;
}

.home-map-copy {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.home-map-copy h3 {
    color: #1d0038;
    margin-bottom: 0.6rem;
}

.home-map-copy p {
    color: #475569;
    margin-bottom: 0.7rem;
}

.home-map-copy a {
    color: #1d0038;
    text-decoration: none;
    font-weight: 600;
}

.home-map-copy a:hover {
    color: #f59e0b;
}

.home-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
    .home-map-layout {
        grid-template-columns: 1fr;
    }

    .home-map-frame iframe {
        min-height: 300px;
    }
}

/* Latest Packages Section (home page featured) */
.latest-packages {
    padding: 100px 20px;
    background: white;
}

.latest-packages .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.latest-packages .package-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.latest-packages .package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(30, 64, 175, 0.12);
}

.latest-packages .package-card .card-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.latest-packages .package-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.latest-packages .package-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.latest-packages .package-card .card-btn {
    background: white;
    color: #1e40af;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.latest-packages .package-card .card-btn:hover {
    background: #fbbf24;
    color: #1e40af;
}

/* make cards slightly shorter on small screens */
@media (max-width: 768px) {
    .service-card-alt {
        height: 300px;
    }
    .service-card-alt .card-overlay {
        padding: 1.5rem;
    }
    /* latest packages mobile fix */
    .latest-packages .package-card {
        height: 300px;
    }
    .latest-packages .package-card .card-overlay {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: var(--lighter-bg);
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
}

.testimonials-slider .slider-container {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.testimonials-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.testimonials-slider .slider-btn.prev {
    left: -10px;
}

.testimonials-slider .slider-btn.next {
    right: -10px;
}

.testimonials-slider .slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonials-slider .testimonial-card {
    flex: 0 0 100%;
    max-width: 600px;
    margin: 50px;
    flex-shrink: 0;
}

.testimonials-slider .testimonial-card:last-child {
    margin-right: 0;
}

.testimonials-slider .slider-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary);
    padding: 0 1rem;
    transition: color 0.3s ease;
}

.testimonials-slider .slider-btn:hover {
    color: var(--primary);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--accent);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(30, 64, 175, 0.12);
}

.stars {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.testimonial-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    color: #1e40af;
    font-weight: 700;
}

/* FAQs Section */
.faqs {
    padding: 100px 20px;
    background: white;
}

.faqs h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1d0038;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 16px rgba(30, 64, 175, 0.1);
}

.faq-question {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 700;
}

.faq-question:hover {
    color: #f59e0b;
}

.faq-answer {
    color: #475569;
    line-height: 1.8;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-links h3 {
    color: white;
    font-weight: 700;
}

.socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    border: none;
    transition: all 0.4s ease;
}

.social-icon:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.social-icon.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0a66c2 100%);
}

.social-icon.tiktok:hover {
    background: linear-gradient(135deg, #000000 0%, #25f4ee 100%);
}

/* Gallery Section */
.gallery {
    padding: 100px 20px;
    background: white;
}

.gallery h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(30, 64, 175, 0.15);
}

/* lightbox modal styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: color 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background-color: #f8fafc;
}

.contact.contact-cta {
    background-color: transparent;
    padding: 120px 20px;
    text-align: center;
    position: relative;
}

.contact.contact-cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1e40af;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-item h3 {
    color: #1e40af;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.info-item p {
    color: #475569;
    line-height: 1.8;
}

.info-item a {
    color: #1d0038;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.info-item a:hover {
    color: #f59e0b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 13px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #334155;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #1d0038;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}


/* ===========================
   MOBILE RESPONSIVENESS
=========================== */

/* Small Phones */
@media (max-width: 576px) {

    /* Hero */
    .page-hero h1 {
        font-size: 2rem !important;
    }

    .page-hero p {
        font-size: 1rem !important;
    }

    /* Contact Main Layout */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* Contact Info */
    .contact-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item h3 {
        font-size: 1.1rem;
    }

    /* Form */
    .contact-form {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1rem;
        padding: 10px;
    }

    /* Buttons Stack */
    .button-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .submit-btn {
        width: 100%;
    }

    /* Map Section */
    .contact-info-section > .container > div {
        grid-template-columns: 1fr !important;
    }

    iframe {
        height: 250px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
}


/* Tablets */
@media (max-width: 900px) {

    /* Contact Layout */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Map Grid */
    .contact-info-section > .container > div {
        grid-template-columns: 1fr;
    }

    iframe {
        height: 320px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Large Screens */
@media (min-width: 1400px) {

    .container {
        max-width: 1300px;
    }

    .contact-form {
        padding: 2.5rem;
    }
}

.submit-btn {
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.button-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
}

.email-btn {
    background: linear-gradient(135deg, #1d0038 0%, #1e40af 100%);
}

@media (max-width: 768px) {
    .button-group {
        grid-template-columns: 1fr;
    }
}

/* Slider Section */
.slider-section {
    padding: 0;
    background: #1a1a1a;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 1rem; /* spacing between slides */
}

.slider-track .slide:last-child {
    margin-right: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.5) 0%, rgba(37, 99, 235, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.overlay-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    padding: 14px 40px;
    font-size: 1.05rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.3);
}

.overlay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 99, 235, 0.7);
    color: white;
    border: none;
    font-size: 28px;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #1d0038;
    padding: 12px 20px;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}
.footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #140526 0%, #1c123c 58%, #0f2038 100%);
    color: white;
    text-align: center;
    padding: 3.2rem 2rem 2rem;
    font-weight: 500;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(251, 191, 36, 0.16), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(96, 165, 250, 0.12), transparent 26%);
    pointer-events: none;
}

/* Footer layout for contact details */
.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.footer-col {
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.2rem 1.25rem;
    box-shadow: 0 12px 28px rgba(2, 8, 23, 0.18);
    backdrop-filter: blur(6px);
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.footer-col p,
.footer-col a {
    color: #dbe5f3;
    margin: 0.45rem 0;
    text-decoration: none;
    line-height: 1.75;
}

.footer a {
    color: #fcd34d;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer a:hover {
    color: #fff0b3;
}

.footer [aria-label="WhatsApp"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 8px !important;
    vertical-align: middle;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.18);
    border: 1px solid rgba(37, 211, 102, 0.4);
}

.footer [aria-label="WhatsApp"] svg {
    width: 16px;
    height: 16px;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 0;
    margin: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.1rem;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 1.15rem 1rem;
    border-radius: 14px;
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #1d0038;
    position: relative;
    overflow: hidden;
    min-height: 158px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1d0038, #3b82f6, #60a5fa);
}

/* Contact Page Refresh */
.contact-hero {
    position: relative;
    isolation: isolate;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-image: url('sliders/slide2.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(130deg, rgba(18, 0, 36, 0.78) 0%, rgba(29, 0, 56, 0.7) 55%, rgba(43, 12, 77, 0.72) 100%);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.4rem;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.contact-hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-action-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    background: #fbbf24;
    color: #1d0038;
    border: 2px solid #fbbf24;
}

.hero-action-btn:hover {
    background: #ffd978;
}

.hero-action-btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-action-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.contact-main {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.contact-main .contact-content {
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.contact-main .info-item h3 {
    color: #1d0038;
}

.contact-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
    padding: 1.8rem;
}

.contact-form-card h2 {
    text-align: left;
    color: #1d0038;
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

.contact-form-card label {
    font-weight: 700;
    color: #334155;
    margin-top: 0.25rem;
}

.contact-prefill-note {
    border-radius: 12px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
    padding: 0.85rem 1rem;
    margin-bottom: 0.35rem;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    border: 1px solid #cbd5e1;
}

.contact-map-section {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 3.2rem 0;
}

.contact-map-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-map-copy {
    border-radius: 14px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.contact-map-copy h3 {
    color: #1d0038;
    margin-bottom: 0.6rem;
}

.contact-map-copy ul {
    margin-top: 0.8rem;
    padding-left: 1rem;
}

.contact-map-copy li {
    margin: 0.35rem 0;
    color: #475569;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 330px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.footer-copy {
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 900px) {
    .contact-map-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 1.3rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        min-height: 300px;
        background-position: center right;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }
}

/* Individual card colors */
.stat-card:nth-child(1) {
    border-left-color: #ec4899;
}

.stat-card:nth-child(1)::before {
    background: linear-gradient(90deg, #ec4899, #f472b6, #f9a8d4);
}

.stat-card:nth-child(1) .stat-number {
    color: #ec4899;
}

.stat-card:nth-child(2) {
    border-left-color: #8b5cf6;
}

.stat-card:nth-child(2)::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa, #c4b5fd);
}

.stat-card:nth-child(2) .stat-number {
    color: #8b5cf6;
}

.stat-card:nth-child(3) {
    border-left-color: #06b6d4;
}

.stat-card:nth-child(3)::before {
    background: linear-gradient(90deg, #06b6d4, #22d3ee, #67e8f9);
}

.stat-card:nth-child(3) .stat-number {
    color: #06b6d4;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 24px rgba(37, 99, 235, 0.16);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.35rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: #1d0038;
    margin-bottom: 0.25rem;
    display: block;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.stat-label {
    font-size: 0.98rem;
    color: #64748b;
    font-weight: 700;
}

.stat-card:nth-child(4) {
    border-left-color: #f59e0b;
}

.stat-card:nth-child(4)::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #fcd34d);
}

.stat-card:nth-child(4) .stat-number {
    color: #d97706;
}

/* Mobile Phones */
@media (max-width: 576px) {

    .stats-section {
        padding: 2.5rem 0;
        margin: 1.5rem 0;
    }

    .stats-grid {
        gap: 1.2rem;
    }

    .stat-card {
        padding: 1rem 0.8rem;
        border-left-width: 4px;
        min-height: 142px;
    }

    .stat-icon {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.8rem;
        min-height: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 900px) {

    .stat-icon {
        font-size: 1.95rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }
}

/* Large Screens */
@media (min-width: 1400px) {

    .stats-grid {
        max-width: 1200px;
        margin: auto;
    }

    .stat-card {
        padding: 1.4rem 1.2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}


    .footer { padding: 2rem 1rem; }




/* =========================
   NAVBAR
========================= */

.navbar {
    background: linear-gradient(135deg, rgba(20, 5, 38, 0.94), rgba(29, 0, 56, 0.92));
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 58px;
    margin-right: 0;
    border-radius: 10px;
}

.logo-text {
    color: white;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

/* Desktop Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

@media (min-width: 769px) {
    .dropdown::after {
        content: '';
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 12px;
    }
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;
    background: white;
    list-style: none;
    min-width: 180px;
    display: none;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 10px 15px;
    display: block;
}

.dropdown-menu a:hover {
    background: #f3e5f5;
    color: #1d0038;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
    padding: 0.65rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hamburger Animation */
.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(6px, -6px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 12px;
        right: 12px;
        background: linear-gradient(155deg, rgba(20, 5, 38, 0.98), rgba(29, 0, 56, 0.96));
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        text-align: left;
        padding: 0;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 30px rgba(2, 8, 23, 0.25);
    }

    .nav-links.active {
        max-height: 500px;
        padding: 12px;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.95rem 1rem;
        width: 100%;
        border-radius: 12px;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: white;
    }
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 0.72rem;
    margin-left: 0.45rem;
    opacity: 0.8;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    min-width: 255px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 18px 30px rgba(2, 8, 23, 0.18);
    list-style: none;
    padding: 0.5rem;
    margin: 0;
    z-index: 999;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.dropdown-menu li {
    border-bottom: none;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 0.95rem;
    color: #1e293b;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 12px;
}

.dropdown-menu a:hover {
    background: #f3f6fb;
    color: #1d0038;
}

/* Show on hover (desktop) */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        min-width: 100%;
        max-height: none;
        background: transparent;
        box-shadow: none;
        display: none;
        border: none;
        padding: 0.35rem 0 0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.88);
        padding-left: 1.1rem;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }
}

/* Modern Home Page Styles */
.home-modern {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #f6f8fb 0%, #eef2f8 100%);
}

.home-modern h1,
.home-modern .home-section-title,
.home-modern .slide-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -0.02em;
}

.home-modern .slider-section {
    position: relative;
}

.home-modern .slider-wrapper {
    height: 620px;
}

.home-modern .slide-overlay {
    background: linear-gradient(120deg, rgba(10, 16, 40, 0.55) 0%, rgba(29, 0, 56, 0.38) 50%, rgba(14, 21, 44, 0.45) 100%);
}

.hero-primary-btn,
.hero-secondary-btn {
    text-decoration: none;
    border-radius: 999px;
    padding: 0.72rem 1.2rem;
    font-weight: 800;
    font-size: 0.95rem;
}

.hero-primary-btn {
    background: #fbbf24;
    color: #2b0c4d;
}

.hero-primary-btn:hover {
    background: #fcd34d;
}

.hero-secondary-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
}

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.section-kicker {
    display: block;
    text-align: center;
    color: #1d0038;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.home-section-title {
    text-align: center;
    color: #1b103b;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    margin-bottom: 1.1rem;
}

.home-modern .home-section-title::after {
    margin-top: 0.65rem;
}

.home-modern .stats-section {
    margin: 0;
    padding: 88px 0;
    background: linear-gradient(130deg, #f7fbff 0%, #ecf4ff 48%, #f7f0ff 100%);
}

.home-signature {
    padding: 86px 20px;
    background: #fff;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.3rem;
}

.signature-card {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    padding: 1.3rem;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.signature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.signature-card h3 {
    color: #1d0038;
    margin-bottom: 0.45rem;
}

.signature-card p {
    color: #526178;
}

.home-modern .latest-packages,
.home-modern .hours,
.home-modern .home-map-section,
.home-modern .testimonials,
.booking-journey {
    padding: 86px 20px;
}

.booking-journey {
    background: linear-gradient(160deg, #1b103b 0%, #25134d 70%, #15203f 100%);
}

.booking-journey .section-kicker,
.booking-journey .home-section-title {
    color: #f8fafc;
}

.booking-journey .home-section-title::after {
    background: #fbbf24;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.journey-step {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 1.1rem;
}

.journey-step span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fbbf24;
    color: #1d0038;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.journey-step h3 {
    color: #fff;
    margin-bottom: 0.4rem;
}

.journey-step p {
    color: rgba(241, 245, 249, 0.9);
}

.home-modern .testimonials-slider .testimonial-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.home-modern .testimonials-slider .testimonial-card p {
    color: #475569;
}

@media (max-width: 900px) {
    .home-modern .slider-wrapper {
        height: 560px;
    }

    .home-modern .latest-packages,
    .home-modern .hours,
    .home-modern .home-map-section,
    .home-modern .testimonials,
    .booking-journey,
    .home-signature,
    .home-modern .stats-section {
        padding: 72px 20px;
    }
}

@media (max-width: 640px) {
    .home-modern .slider-wrapper {
        height: 610px;
    }

    .home-modern .slide-content {
        padding: 1.2rem;
    }

    .home-modern .slide-content h2 {
        font-size: 2rem;
    }

    .home-modern .slide-content p {
        font-size: 1rem;
    }

    .hero-glass-panel {
        padding: 1rem;
        width: calc(100% - 1.2rem);
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        text-align: center;
    }
}

/* Modern Packages Page */
.packages-modern {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #f6f8fb 0%, #eef2f8 100%);
}

.packages-modern h1,
.packages-modern h2,
.packages-modern .faqs h2,
.packages-modern .hours h2 {
    font-family: 'Playfair Display', Georgia, serif;
}

.packages-hero {
    position: relative;
    isolation: isolate;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-image: url('images/aroma-therapy.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.packages-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(19, 6, 43, 0.78) 0%, rgba(27, 16, 59, 0.7) 58%, rgba(8, 31, 57, 0.66) 100%);
    z-index: 0;
}

.packages-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.packages-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 0.5rem;
}

.packages-hero p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    margin: 0 auto 1.2rem;
    font-size: 1.08rem;
}

.packages-hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.packages-catalog {
    background: transparent;
    padding-top: 78px;
}

.packages-topbar {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-bottom: 1.4rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem 1.2rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.packages-topbar p {
    color: #475569;
}

.packages-topbar p strong {
    color: #1d0038;
    font-size: 1.1rem;
}

.package-link {
    text-decoration: none;
    color: inherit;
}

.packages-modern .services-grid {
    gap: 1.5rem;
}

.packages-modern .package-card {
    position: relative;
    text-align: left;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.package-pill {
    display: inline-block;
    background: #ede9fe;
    color: #4c1d95;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
}

.package-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #1d0038;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.packages-modern .package-card:hover .package-cta {
    background: #f59e0b;
    color: #1d0038;
}

.packages-empty {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
}

.packages-empty a {
    color: #1d0038;
    font-weight: 700;
}

.packages-cta-strip {
    padding: 72px 20px;
    background: linear-gradient(155deg, #1d0038 0%, #24124a 65%, #102943 100%);
}

.packages-cta-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem;
    align-items: center;
}

.packages-cta-content h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.35rem;
}

.packages-cta-content p {
    color: rgba(241, 245, 249, 0.9);
}

.packages-cta-actions {
    display: flex;
    gap: 0.7rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.packages-modern .hours,
.packages-modern .faqs {
    background: #f8fafc;
}

.packages-modern .faq-item,
.packages-modern .day-hours,
.packages-modern .hours-note {
    border-radius: 12px;
    border-left-width: 5px;
}

@media (max-width: 900px) {
    .packages-topbar,
    .packages-cta-content {
        grid-template-columns: 1fr;
    }

    .packages-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .packages-hero {
        min-height: 300px;
    }

    .packages-modern .services,
    .packages-modern .hours,
    .packages-modern .faqs,
    .packages-cta-strip {
        padding: 60px 20px;
    }

    .packages-hero-actions,
    .packages-cta-actions {
        flex-direction: column;
    }

    .packages-hero-actions a,
    .packages-cta-actions a {
        text-align: center;
    }
}

/* Modern Gallery Page */
.gallery-modern {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
}

.gallery-modern h1,
.gallery-modern h2,
.gallery-modern .home-section-title {
    font-family: 'Playfair Display', Georgia, serif;
}

.gallery-hero {
    position: relative;
    isolation: isolate;
    min-height: 340px;
    display: flex;
    align-items: center;
    background-image: url('images/WhatsApp Image 2026-02-17 at 22.44.34.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(18, 0, 36, 0.78) 0%, rgba(20, 15, 47, 0.72) 58%, rgba(9, 34, 60, 0.68) 100%);
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.gallery-hero h1 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    margin-bottom: 0.5rem;
}

.gallery-hero p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 700px;
    margin: 0 auto 1.2rem;
}

.gallery-hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.gallery-showcase {
    background: transparent;
}

.gallery-modern .gallery-grid {
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery-tile {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    background: #fff;
}

.gallery-tile img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

.gallery-tile:hover img {
    transform: scale(1.06);
}

.gallery-tile figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0.85rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.74) 100%);
}

.gallery-modern .lightbox-modal {
    backdrop-filter: blur(4px);
}

.gallery-modern .lightbox-content {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.gallery-cta {
    background: linear-gradient(155deg, #1d0038 0%, #25134d 66%, #102943 100%);
}

.gallery-cta .home-section-title,
.gallery-cta .section-subtitle {
    color: #fff;
}

.gallery-cta .home-section-title::after {
    background: #fbbf24;
}

.gallery-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.gallery-contact-map {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 3.2rem 0;
}

.gallery-map-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
}

.gallery-map-copy {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2ff 100%);
    padding: 1.3rem;
}

.gallery-map-copy h3 {
    color: #1d0038;
    margin-bottom: 0.65rem;
}

.gallery-map-copy p {
    margin-bottom: 0.6rem;
    color: #475569;
}

.gallery-map-copy a {
    color: #1d0038;
    text-decoration: none;
    font-weight: 700;
}

.gallery-map-copy a:hover {
    color: #f59e0b;
}

.gallery-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 330px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
    .gallery-map-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gallery-hero {
        min-height: 300px;
    }

    .gallery-tile img {
        height: 220px;
    }

    .gallery-hero-actions,
    .gallery-cta-actions {
        flex-direction: column;
    }

    .gallery-hero-actions a,
    .gallery-cta-actions a {
        text-align: center;
    }
}

/* Modern Package Detail Page */
.package-detail-modern {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #f7f9fc 0%, #edf2f8 100%);
}

.package-detail-modern h1,
.package-detail-modern h2,
.package-detail-modern h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

.package-detail-hero {
    position: relative;
    isolation: isolate;
    min-height: 360px;
    display: flex;
    align-items: center;
    background-image: var(--detail-hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.package-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(18, 0, 36, 0.82) 0%, rgba(21, 19, 54, 0.72) 55%, rgba(10, 31, 56, 0.66) 100%);
}

.package-detail-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.package-detail-hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    margin-bottom: 0.5rem;
}

.package-detail-hero p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 760px;
    margin: 0 auto 1.2rem;
}

.package-detail-hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.package-detail-section {
    padding: 78px 20px;
    background: transparent;
}

.package-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.package-detail-media-card,
.package-detail-copy,
.package-pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.package-detail-media-card {
    overflow: hidden;
}

.package-detail-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.package-detail-quickfacts {
    padding: 1.2rem;
    display: grid;
    gap: 0.8rem;
}

.package-detail-fact {
    padding: 0.85rem 0.95rem;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.package-detail-fact span {
    display: block;
    color: #64748b;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.package-detail-fact strong {
    color: #1d0038;
    font-size: 0.98rem;
}

.package-detail-copy {
    padding: 1.6rem;
}

.detail-label {
    display: inline-block;
    color: #4c1d95;
    background: #ede9fe;
    border-radius: 999px;
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.package-detail-copy h2 {
    color: #1b103b;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 0.6rem;
}

.package-detail-lead {
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.package-detail-richtext p {
    color: #526178;
    line-height: 1.85;
}

.package-pricing-card {
    margin-top: 1.4rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.package-pricing-header h3 {
    color: #1d0038;
    margin-bottom: 0.35rem;
}

.package-pricing-header p {
    color: #64748b;
    margin-bottom: 1rem;
}

.package-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.9rem;
}

.package-pricing-option {
    background: #fff;
    border: 1px solid #dbe4f0;
    border-radius: 14px;
    padding: 1rem;
}

.package-pricing-option span {
    display: block;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.package-pricing-option strong {
    color: #1d0038;
    font-size: 1.15rem;
}

.package-detail-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.3rem;
}

.package-detail-reassurance {
    padding: 0 20px 84px;
}

.package-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.package-reassurance-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.package-reassurance-card h3 {
    color: #1d0038;
    margin-bottom: 0.45rem;
}

.package-reassurance-card p {
    color: #526178;
}

@media (max-width: 900px) {
    .package-detail-layout {
        grid-template-columns: 1fr;
    }

    .package-detail-image {
        height: 340px;
    }
}

@media (max-width: 576px) {
    .package-detail-hero {
        min-height: 310px;
    }

    .package-detail-section,
    .package-detail-reassurance {
        padding-left: 20px;
        padding-right: 20px;
    }

    .package-detail-copy,
    .package-pricing-card {
        padding: 1rem;
    }

    .package-detail-actions,
    .package-detail-hero-actions {
        flex-direction: column;
    }

    .package-detail-actions a,
    .package-detail-hero-actions a {
        text-align: center;
    }
}

/* Global responsive hardening */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
}

.container {
    width: min(1200px, 92vw);
}

@media (max-width: 1200px) {
    .slider-wrapper {
        height: 460px;
    }

    .testimonials-slider .testimonial-card {
        margin: 24px;
    }
}

@media (max-width: 900px) {
    .container {
        width: 94vw;
        padding: 0 14px;
    }

    .services,
    .hours,
    .gallery,
    .faqs,
    .contact,
    .testimonials,
    .latest-packages {
        padding: 72px 16px;
    }

    .services-grid,
    .hours-content,
    .hours-info,
    .contact-content,
    .contact-info,
    .gallery-grid,
    .faq-container,
    .featured-services-grid,
    .featured-services-grid-alt,
    .stats-grid,
    .signature-grid,
    .journey-grid,
    .home-map-layout,
    .contact-map-layout,
    .package-detail-layout,
    .package-reassurance-grid,
    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    .testimonials-slider .testimonial-card {
        width: calc(100% - 24px);
        max-width: none;
        margin: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: left;
    }

    .slider-btn {
        font-size: 22px;
        padding: 10px 12px;
    }

    /* Legacy static service pages that still use inline two-column layouts */
    section[style*="padding: 3rem 0"][style*="background: white"] > .container > div {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.4rem !important;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 52px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .slider-wrapper {
        height: 380px;
    }

    .slide-content h2 {
        font-size: 2rem !important;
    }

    .slide-content p {
        font-size: 1rem !important;
        margin-bottom: 1.2rem;
    }

    .overlay-btn,
    .hero-primary-btn,
    .hero-secondary-btn,
    .cta-button,
    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .button-group,
    .hero-actions,
    .contact-hero-actions,
    .gallery-hero-actions,
    .packages-hero-actions,
    .package-detail-actions,
    .package-detail-hero-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .dropdown-menu {
        max-height: 45vh;
        overflow-y: auto;
    }
}

@media (max-width: 576px) {
    .container {
        width: 96vw;
        padding: 0 10px;
    }

    .page-hero {
        padding: 56px 12px;
    }

    .page-hero h1 {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .home-section-title,
    .services h2,
    .hours h2,
    .gallery h2,
    .faqs h2,
    .testimonials h2 {
        font-size: 1.9rem;
    }

    .service-card,
    .testimonial-card,
    .faq-item,
    .contact-card,
    .package-card,
    .signature-card,
    .package-reassurance-card {
        padding: 1rem;
    }

    .service-image,
    .gallery-grid img,
    .gallery-tile img,
    .package-detail-image {
        height: 220px;
    }

    .stat-card {
        min-height: 130px;
    }
}




