@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600&family=Pacifico&family=Orbitron:wght@400;700&family=Inter:wght@400;600&family=Lobster&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #0f172a;
    /* Deep Navy */
    --primary-light: #1e293b;
    --accent: #d97706;
    /* Vibrant Gold/Orange */
    --accent-hover: #b45309;
    --secondary: #0ea5e9;
    /* Bright Blue for accents */
    --bg-light: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 1.5rem;
}

.contact-info i {
    color: var(--accent);
    margin-right: 0.5rem;
}

.social-links a {
    margin-left: 1rem;
    color: white;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
    display: inline-block;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a:not(.btn-nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.nav-menu a:not(.btn-nav-cta):hover::after {
    width: 100%;
}

.btn-nav-cta {
    background: var(--accent);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}

.btn-nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Main Slider */
.main-slider-container {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.main-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.7));
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease forwards;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease forwards;
}

.btn-slider {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
    animation: slideUp 1.2s ease forwards;
    transition: 0.3s;
}

.btn-slider:hover {
    background: #0284c7;
    transform: translateY(-3px);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: white;
    color: var(--primary);
}

.slider-prev {
    left: 2rem;
}

.slider-next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Common Sections */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto 1rem auto;
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Features */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    height: 80px;
    width: 80px;
    background: #fff7ed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Testimonials Carousel */
.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid #f1f5f9;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--accent);
}

.testimonial-avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem auto;
    font-weight: bold;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #475569;
}

.testimonial-name {
    color: var(--primary);
    font-weight: 700;
}

.testi-prev,
.testi-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    color: var(--primary);
    z-index: 5;
    transition: 0.3s;
}

.testi-prev:hover,
.testi-next:hover {
    background: var(--accent);
    color: white;
}

.testi-prev {
    left: 0;
}

.testi-next {
    right: 0;
}

/* About Page */
.about-banner {
    height: 50vh;
    background: url('../images/hero-bg.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.8);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.about-section {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.title-underline-left {
    width: 50px;
    height: 4px;
    background: var(--accent);
    margin: 0.5rem 0 1.5rem 0;
}

/* CTA Banner Redesign */
.cta-banner {
    position: relative;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
    margin: 4rem 0 0 0;
    /* Removing margin-bottom to merge with footer */
    /* background: linear-gradient(...) REMOVED/OVERRIDDEN INLINE */
    overflow: hidden;
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 100%);
    /* Slanted top edge */
}

/* User wants custom backgrounds, so we remove the static overlay image */
.cta-banner::before {
    content: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.2) 0%, transparent 60%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    font-weight: 300;
}

.btn-cta-white {
    background: white;
    color: var(--primary);
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    border: 2px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-white i {
    transition: transform 0.3s;
}

.btn-cta-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.btn-cta-white:hover i {
    transform: translateX(5px);
}

/* Footer Redesign */
.footer {
    background: #020617;
    /* Very Dark Slate/Black */
    color: #e2e8f0;
    padding: 6rem 2rem 2rem 2rem;
    position: relative;
    font-size: 0.95rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand h3 span {
    color: var(--accent);
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: #94a3b8;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer ul li i {
    font-size: 0.8rem;
    color: var(--accent);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #cbd5e1;
}

.contact-list li i {
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 0.2rem;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-banner {
        padding: 5rem 1rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .copyright {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-banner clip-path {
        polygon(0 0, 100% 2%, 100% 100%, 0 100%);
    }
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
    }

    .about-section {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .about-section.reverse {
        flex-direction: column;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--primary);
    }
}

/* --- V3 Enhancements --- */

/* Dynamic Page Banner */
.page-banner {
    position: relative;
    padding: 8rem 2rem 6rem 2rem;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    /* User requested no overlay. */
    background: transparent;
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.banner-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Page Icons */
.about-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.about-section:nth-child(even) {
    flex-direction: row-reverse;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.about-text p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
    height: auto;
    transition: transform 0.5s;
}

.about-image img:hover {
    transform: scale(1.02) rotate(1deg);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-image {
    height: 200px;
    background-color: #f1f5f9;
    overflow: hidden;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pricing-card:hover .pricing-image img {
    transform: scale(1.1);
}

.pricing-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.pricing-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pricing-desc {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-book {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-book:hover {
    background: var(--accent);
    color: white;
}

/* Contact Datepicker */
input[type="date"] {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    color: #334155;
    background: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 6rem 1rem 4rem 1rem;
    }

    .page-banner h1 {
        font-size: 2.5rem;
    }

    .about-section {
        flex-direction: column !important;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2 {
        justify-content: center;
    }
}

/* Modern WhatsApp Button */
.btn-whatsapp-glow {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-whatsapp-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-whatsapp-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp-glow:hover::before {
    left: 100%;
}

.btn-whatsapp-glow i {
    font-size: 1.4rem;
}