@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-pink: #FF6B9D;
    --primary-pink-dark: #e85a8b;
    --secondary-blue: #4A90E2;
    --secondary-blue-dark: #357abd;
    --text-dark: #000000;
    /* Pure black as requested */
    --text-light: #2d3436;
    /* Darker gray for readable text */
    --brush-orange: #FF9F43;
    --background-light: #f9f9f9;
    --white: #ffffff;
    --gradient-main: linear-gradient(135deg, #FF6B9D 0%, #4A90E2 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 0.4rem 0;
    /* Reduced padding from 0.8rem */
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 60px;
    /* Reduced height from 100px */
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Fallback if logo is text */
.logo span {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Hamburger Animation when Active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Media Query */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        max-height: 400px;
        /* Adjust based on content */
        padding: 20px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    /* Ensure Contact button looks good in menu */
    .nav-links .btn-contact {
        margin-top: 10px;
    }
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.nav-links .btn-contact {
    position: relative;
    display: inline-block;
    color: var(--text-dark) !important;
    font-weight: 800;
    z-index: 1;
    background: transparent;
    padding: 2px 5px;
    box-shadow: none;
    border-radius: 0;
}

.nav-links .btn-contact::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -10px;
    height: 12px;
    background-color: var(--brush-orange);
    z-index: -1;
    opacity: 0.6;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    transform: rotate(-2deg);
    pointer-events: none;
    transition: all 0.2s ease;
}

.nav-links .btn-contact:hover {
    transform: none;
    box-shadow: none;
    color: var(--text-dark) !important;
}

.nav-links .btn-contact:hover::after {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.8;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero .container {
    display: flex;
    /* Changed from grid to flex for centering */
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #000;
}

/* Brush Stroke Effect */
.highlight-brush {
    position: relative;
    display: inline-block;
    color: #000;
    font-weight: 800;
    /* Bold as requested */
    z-index: 1;
}

.highlight-brush::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -10px;
    height: 15px;
    background-color: var(--brush-orange);
    z-index: -1;
    opacity: 0.6;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    transform: rotate(-2deg);
    pointer-events: none;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 auto 2rem;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary-pink);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Form Section (Now used inside Offers) */
.booking-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: background-image 0.5s ease;
    background-size: cover;
    background-position: center;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.booking-card>* {
    position: relative;
    z-index: 2;
}

.booking-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e1e1e1;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--background-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 144, 226, 0.1);
    color: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.service-card h4 {
    margin-bottom: 0.5rem;
}

/* Highlight Service (Free Trial) */
.service-card.highlight-service {
    border: 2px solid var(--primary-pink);
    background: #fff0f6;
    /* Very light pink */
}

.highlight-service .service-icon {
    background: var(--primary-pink);
    color: white;
}

/* Offers Grid & New Cards */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: visible;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.offer-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.offer-image::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
}

.offer-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-top: -50px;
    /* Overlap image */
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.offer-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.offer-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-text {
    font-weight: 600;
    color: var(--secondary-blue);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Form Container Animation */
.booking-form-wrapper {
    animation: slideDown 0.5s ease forwards;
    margin-top: 20px;
    scroll-margin-top: 100px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Two-column layout for form + description */
.form-with-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Description card */
.description-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.description-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.description-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Price highlight in description */
.price-highlight {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-blue));
    color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

/* Features list */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--secondary-blue);
    font-size: 1.1rem;
}

/* Offer price on cards */
.offer-price {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-blue));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    display: inline-block;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.85em;
    margin-right: 8px;
    font-weight: 500;
}

/* Responsive for form layout */
@media (max-width: 992px) {
    .form-with-description {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Footer */
.footer {
    background: #2d3436;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 700;
    color: white;
}

.footer p {
    color: #b2bec3;
    margin-bottom: 1.5rem;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b2bec3;
}

.footer-links a:hover {
    color: var(--primary-pink);
}

.contact-info li {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    color: #b2bec3;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b2bec3;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        /* grid-template-columns: 1fr; already flex centered */
        text-align: center;
    }

    .booking-card {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* Removed display: none for nav-links to allow hamburger menu */

    .hero {
        padding-top: 120px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Nav Button Custom Style */
.btn-nav-custom {
    background: transparent;
    color: var(--text-dark);
    font-weight: 700;
    padding: 10px 20px;
    border: 3px solid transparent;
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    isolation: isolate;
    display: inline-block;
}

/* Rounded rectangle on hover */
.btn-nav-custom::before {
    content: '';
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: -5px;
    right: -5px;
    border: 2px solid var(--brush-orange);
    border-radius: 10px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-nav-custom:hover::before {
    opacity: 1;
}

/* Brush stroke underline */
.btn-nav-custom::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 10px;
    background-color: var(--brush-orange);
    z-index: -1;
    opacity: 0.6;
    border-radius: 5px;
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.btn-nav-custom:hover::after {
    opacity: 1;
}

/* Reviews Section styles */
.reviews .service-card {
    border-left: 4px solid var(--brush-orange);
    box-shadow: var(--shadow-sm);
}

.reviews .service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* Footer Logo Adjustment */
.footer .logo img {
    margin: 0;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slideshow .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slideShow 15s infinite;
}

.hero-slideshow .hero-slide picture,
.hero-slideshow .hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slideshow .hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slideshow .hero-slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slideshow .hero-slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    43% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 0;
    }
}

.hero::after {
    /* Main overlay on top of slideshow */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    z-index: 0;
}

.hero .container {
    z-index: 1;
    /* Above overlay */
}



/* Contact Details Animation */
.contact-details {
    transition: all 0.4s ease;
    overflow: hidden;
}

.contact-details[style*="display: block"] {
    animation: slideDown 0.4s ease forwards;
}

.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}