/* --- Variables --- */
:root {
    /* Pastel Blue & Purple Scheme */
    --primary-color: #64B5F6; /* Slightly deeper pastel blue for headings and main accents */
    --secondary-color: #90CAF9; /* Lighter pastel blue for buttons and highlights */
    --accent-color: #42A5F5; /* Medium pastel blue for CTAs and important elements */
    --dark-heading-color: #2C3E50; /* Very dark blue-gray for strong text contrast */
    --text-color: #5D6D7E; /* Medium blue-gray for body text */
    --light-background: #E3F2FD; /* Base pastel blue */
    --white-background: #FFFFFF; /* Pure White */
    --shadow-color: rgba(0, 0, 0, 0.08); /* Very subtle shadow */
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    --font-special: 'Pacifico', cursive;
    --font-body: 'Open Sans', sans-serif;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Ensure it's above other content */
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 60px; /* Adjust size as needed */
    height: auto;
    border-radius: 50%; /* Make it circular if the image is square */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
/* Add Open Sans font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body), sans-serif; /* Use Open Sans for body */
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-background); /* Use new light background */
    overflow-x: hidden; /* Prevent horizontal scrollbars from animations */
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-main), sans-serif; /* Use Montserrat for headings */
    font-weight: 600; /* Slightly lighter weight */
    color: var(--primary-color); /* Use primary color for headings */
    margin-bottom: 0.8em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.package-card {
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.package-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.2);
}

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

.package-card h4 {
    font-size: 1.7rem;
    margin-bottom: 5px;
    margin-top: 10px;
    color: #569ff7;
    transition: color 0.3s ease;
}

.package-card h5 {
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: #569ff7;
    margin-bottom: 5px;
}

p {
    margin-bottom: 1.2em;
    color: var(--text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* --- Utility Classes --- */
.text-center {
    text-align: center;
}

/* --- Animation Base --- */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in {
    transform: translateY(20px); /* Start slightly down */
}

.animate-on-scroll.fade-in-up {
     transform: translateY(40px); /* Start further down */
}

.animate-on-scroll.slide-in-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-in-right {
    transform: translateX(50px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0); /* Move to original position */
}


/* --- Header --- */
.site-header {
    background: rgba(255, 255, 255, 0.95); /* Slightly less opaque */
    padding: 0; /* Further reduced padding to shrink header height */
    box-shadow: 0 5px 15px var(--shadow-color); /* Softer shadow */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure header is on top */
    backdrop-filter: blur(5px); /* Frosted glass effect */
    -webkit-backdrop-filter: blur(5px);
}

.site-header .container {
    display: flex;
    display: flex;
    justify-content: space-between; /* Align logo to left and nav to right */
    align-items: center; /* Vertically align items */
}

.logo-placeholder {
    /* Removed position: fixed, top, and left */
    z-index: 1001; /* Ensure it's above the header */
    /* Remove font styles as it contains an image now */
    /* Styles for the logo image */
    /* Once the logo is uploaded, replace the text with an <img> tag in index.html */
    /* Example: <img src="path/to/your/logo.png" alt="Bubble Bliss Hire Logo"> */
    /* You might need to adjust max-height or width here */
}

.logo-placeholder img {
    display: block; /* Ensure it behaves as a block element */
    max-height: 292px; /* Increased max-height by another 20% */
    width: auto; /* Maintain aspect ratio */
    margin: -80px 0; /* Adjust negative margin to reduce header height */
    padding-top: 10px; /* Add some top padding for better alignment */
}

.main-nav {
}

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

.main-nav li {
    margin-left: 2.2rem; /* More spacing */
}

.main-nav a {
    color: #333;
    font-weight: 500;
    padding: 0.2rem 0.2rem; /* Reduced vertical padding */
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

/* Underline grow effect */
.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    display: block;
    margin-top: 5px; /* Space between text and underline */
    right: 0;
    background: var(--secondary-color); /* Use secondary color for underline */
    transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
    left: 0;
    background: var(--secondary-color); /* Use secondary color for underline */
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary-color); /* Use secondary color for active link */
    border-bottom-color: transparent; /* Hide static border on hover/active */
}


/* --- Hamburger Menu --- */
.hamburger-icon {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1002; /* Ensure it's above the header */
    color: var(--dark-heading-color); /* Match heading color */
}

.mobile-menu {
    /* Hidden by default on larger screens - this will be overridden by a rule below */
}

/* --- Hero Section --- */
.hero-section {
    /* background: linear-gradient(rgba(26, 37, 51, 0.75), rgba(26, 37, 51, 0.75)),
                url('images/hero-background.jpg'); */
    /* Use a more vibrant gradient fallback */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); /* Vibrant gradient */
    /* background-size: cover; */
    /* background-position: center center; */
    /* background-attachment: fixed; */
    color: white;
    text-align: center;
    padding: 9rem 0; /* Even more padding */
    position: relative;
    overflow: hidden; /* Contain potential pseudo-elements */
}

/* Optional: Add subtle pattern or shapes */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-section h2 {
    font-size: 4rem; /* Larger heading */
    color: white;
    margin-bottom: 0.4em;
    /* Removed font-weight: 700; to use default Pacifico weight */
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out; /* Simple entrance animation */
}

.hero-section p {
    font-size: 1.4rem; /* Larger paragraph */
    font-weight: 300;
    margin-bottom: 2.8em;
    color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s; /* Delayed entrance */
    animation-fill-mode: backwards; /* Start invisible before animation */
}

.cta-button, .button {
    display: inline-block;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* Blue to blue gradient */
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(25, 118, 210, 0.4);
    background-size: 200% auto;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.cta-button:hover, .button:hover {
    background-position: right center;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.5); 
    color: white;
}

.package-card .button {
    margin-top: auto;
    align-self: center;
    font-size: 13px;
    padding: 0.8rem 15px;
}

/* --- Section Styling --- */
section {
    padding: 6rem 0;
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: var(--primary-color); 
    color: white; 
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.8rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--white-background));
    border-radius: 2px;
}

.faq-section {
    background-color: var(--primary-color);
}

.faq-section h2 {
    color: white;
}


/* --- FAQ Section --- */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
    /* Removed border, border-radius, background-color, and transition */
}

.faq-item:hover {
    /* Removed border-color and box-shadow */
}

.faq-question {
    padding: 15px 0; /* Adjusted padding */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the left */
    font-weight: bold;
    color: var(--dark-heading-color);
    /* Removed background-color and transition */
}


.faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-right: 10px; /* Reduced margin */
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 15px 20px;
    background-color: var(--white-background);
    display: none; /* Hidden by default */
    border-top: 1px solid #ddd;
    color: var(--text-color);
}

.faq-answer p {
    margin-bottom: 0;
}

/* --- Contact Form Styling --- */
.contact-form-container {
    max-width: 600px; /* Limit form width */
    margin: 2rem auto; /* Center the form and add space */
    padding: 3rem; /* Increased padding */
    background: linear-gradient(135deg, var(--light-background) 0%, var(--white-background) 100%); /* Subtle gradient background */
    border-radius: 15px; /* More rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Softer, more spread shadow */
    text-align: left; /* Align text within the form to the left */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Very subtle border */
}

.contact-form-container .form-group {
    margin-bottom: 1.5rem; /* Space between form groups */
    /* Removed flexbox properties for block layout */
}

.contact-form-container label {
    display: block; /* Label on its own line */
    margin-bottom: 0.5rem; /* Space between label and input */
    /* Removed width and margin-right for block layout */
    font-weight: bold;
    color: var(--dark-heading-color);
    /* Removed padding-top */
}
.contact-form-container label[for="contact-message"] {
    text-align: left; /* Ensure label text is top-left */
    padding-top: 0.5rem; /* Align label text with textarea */
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"],
.contact-form-container textarea {
    width: 100%; /* Full width inputs */
    padding: 1rem; /* Consistent padding */
    background-color: var(--white-background); /* White background */
    border: 1px solid #ccc; /* Subtle border */
    border-radius: 5px; /* Slightly rounded corners */
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(66, 165, 245, 0.3); /* More prominent focus shadow */
    outline: none; /* Remove default outline */
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container input[type="tel"] {
     height: 50px; /* Increased height for inputs */
}

.contact-form-container textarea {
    min-height: 200px; /* Increased min-height for message box */
    resize: vertical; /* Allow vertical resizing */
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(66, 165, 245, 0.3); /* More prominent focus shadow */
    outline: none; /* Remove default outline */
}

.contact-form-container input[type="text"]:focus,
.contact-form-container input[type="email"]:focus,
.contact-form-container input[type="tel"]:focus,
.contact-form-container textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(66, 165, 245, 0.2); /* Subtle focus shadow */
    outline: none; /* Remove default outline */
}

.contact-form-container textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form-container .button {
    display: block; /* Make button full width */
    width: 100%;
    margin-top: 2rem; /* Increased top margin */
    text-align: center;
    background-image: linear-gradient(to right, var(--primary-color), var(--secondary-color)); /* Blue to blue gradient */
    color: white; /* White text */
    padding: 1rem 2.5rem; /* Match other buttons */
    border-radius: 30px; /* More rounded corners */
    font-weight: 700;
    font-size: 1rem; /* Slightly larger font */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4); /* Shadow matching new color */
    background-size: 200% auto; /* For hover effect */
}

.contact-form-container .button:hover {
    background-position: right center;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.5); /* Shadow matching new color */
    color: white;
}

/* --- Responsive Design --- */
/* Show mobile menu on larger screens */
.mobile-menu {
    display: block;
}

@media (max-width: 768px) {
    body {
        padding-top: 0; /* Adjust padding for smaller header */
    }

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-background);
    padding: 6rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white-background);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    padding: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: "\201C";
    font-size: 5rem;
    position: absolute;
    top: -30px;
    left: -10px;
    color: var(--secondary-color);
    opacity: 0.2;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

    .container {
        padding: 0 15px; /* Reduce horizontal padding */
    }

    .site-header {
        height: 70px; /* Fixed height for mobile header */
        padding: 0 15px; /* Adjust padding for mobile header */
        display: flex; /* Use flexbox for alignment */
        align-items: center; /* Vertically center items */
        justify-content: space-between; /* Space between logo and hamburger */
        background-color: var(--white-background); /* Ensure a solid white background for clarity */
    }

    .site-header .container {
        width: 100%; /* Ensure container takes full width */
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0; /* Remove container padding as it's on the header now */
    }

    .logo-placeholder {
        display: flex;
        align-items: center;
        height: auto; /* Let height be determined by content */
    }

    .logo-placeholder img {
        max-height: 60px; /* Increased logo size for mobile to fill nav bar */
        width: auto; /* Maintain aspect ratio */
        margin: 0 !important; /* Force override of desktop styles */
        padding: 0 !important; /* Force override of desktop styles */
    }

    .hamburger-icon {
        display: block; /* Show hamburger on mobile */
    }

    .mobile-menu {
        display: none; /* Hide menu by default */
        width: 100%;
        position: absolute;
        top: 70px; /* Position below the header */
        left: 0;
        background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent background */
        box-shadow: 0 5px 15px var(--shadow-color);
        overflow: hidden;
        transition: max-height 0.3s ease-out; /* Animation for sliding down */
        max-height: 0; /* Start hidden */
    }

    .mobile-menu.active {
        display: block; /* Show menu when active */
        max-height: 300px; /* Adjust based on content, or use a larger value */
    }

    .main-nav ul {
        flex-direction: column; /* Stack nav links vertically */
        align-items: center;
        padding: 20px 0; /* Add padding inside the mobile menu */
    }

    .main-nav li {
        margin: 10px 0; /* Adjust vertical margin */
    }

    .main-nav a {
        padding: 0.8rem 0.8rem; /* Adjust padding */
        font-size: 1.2rem; /* Larger font size for mobile links */
        color: var(--dark-heading-color); /* Darker link color */
    }

    .main-nav a::after {
        background: var(--primary-color); /* Use primary color for underline on mobile */
    }

    .main-nav a:hover::after,
    .main-nav a.active::after {
        background: var(--primary-color); /* Use primary color for underline on mobile */
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--primary-color); /* Use primary color for active link on mobile */
    }

    .hero-section {
        padding: 6rem 0; /* Adjust hero padding */
    }

    .hero-section h2 {
        font-size: 2.5rem; /* Reduce hero heading size */
    }

    .hero-section p {
        font-size: 1.1rem; /* Reduce hero paragraph size */
    }

    section {
        padding: 4rem 0; /* Reduce section padding */
    }

    section h3 {
        font-size: 2rem; /* Reduce section heading size */
        margin-bottom: 2.5rem;
    }

    .contact-form-container {
        padding: 2rem; /* Adjust contact form padding */
        margin: 1rem auto; /* Adjust margin */
    }

    .contact-form-container input[type="text"],
    .contact-form-container input[type="email"],
    .contact-form-container input[type="tel"],
    .contact-form-container textarea {
        padding: 0.8rem; /* Adjust input padding */
        font-size: 0.9rem;
    }

    .contact-form-container .button {
        padding: 0.8rem 2rem; /* Adjust button padding */
        font-size: 0.9rem;
    }

    .faq-list {
        max-width: 100%; /* Allow FAQ list to take full width */
        padding: 0 15px; /* Add horizontal padding */
    }

    .faq-question {
        padding: 10px 0; /* Adjust FAQ question padding */
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 10px 15px; /* Adjust FAQ answer padding */
        font-size: 0.9rem;
    }
}
