:root {
    --bg-body: #f0f4f8;
    --bg-header: #ffffff;
    --bg-card: #ffffff;
    --text-main: #333333;
    --text-secondary: #546e7a;
    --text-heading: #01579B;
    --accent-blue: #0277BD;
    --accent-pink: #db007d;
    --accent-yellow: #FFC107; /* New Yellow Accent */
    --promo-bg: linear-gradient(135deg, #E1F5FE 0%, #F3E5F5 100%);
    --icon-bg: #f5f7fa;
    --icon-color: #90a4ae;
    --border-color: #eee;
    --shadow-color: rgba(0,0,0,0.08);
    --bubble-color: rgba(2, 119, 189, 0.1); /* Re-added default bubble color */
    --nav-link-color: #01579B;
    --contact-bg: linear-gradient(135deg, #0277BD 0%, #01579B 100%);
    --contact-text: white;
    --step-icon-bg: #E1F5FE;
    --step-icon-color: #0277BD;
    --side-menu-bg: #ffffff;
    --overlay-bg: rgba(0,0,0,0.5);

    /* Colorful Bubbles (Light Mode) */
    --bubble-c-1: rgba(2, 119, 189, 0.1);   /* Blue */
    --bubble-c-2: rgba(219, 0, 125, 0.1);   /* Pink */
    --bubble-c-3: rgba(255, 193, 7, 0.15);  /* Yellow */
    --bubble-c-4: rgba(2, 119, 189, 0.1);   /* Blue */
    --bubble-c-5: rgba(219, 0, 125, 0.1);   /* Pink */
    --bubble-c-6: rgba(255, 193, 7, 0.15);  /* Yellow */
}

.dark-mode {
    --bg-body: #121212;
    --bg-header: #1e1e1e;
    --bg-card: #1e1e1e;
    --text-main: #e0e0e0;
    --text-secondary: #b0bec5;
    --text-heading: #81D4FA;
    --accent-blue: #4FC3F7;
    --accent-pink: #FF4081;
    --accent-yellow: #FFD54F;
    --promo-bg: linear-gradient(135deg, #263238 0%, #37474f 100%);
    --icon-bg: #263238;
    --icon-color: #cfd8dc;
    --border-color: #333;
    --shadow-color: rgba(0,0,0,0.5);
    --bubble-color: rgba(255, 255, 255, 0.05); /* Re-added default bubble color */
    --nav-link-color: #81D4FA;
    --contact-bg: linear-gradient(135deg, #01579B 0%, #0277BD 100%);
    --contact-text: #e0e0e0;
    --step-icon-bg: #37474f;
    --step-icon-color: #81D4FA;
    --side-menu-bg: #1e1e1e;
    --overlay-bg: rgba(0,0,0,0.7);

    /* Colorful Bubbles (Dark Mode) */
    --bubble-c-1: rgba(129, 212, 250, 0.15);
    --bubble-c-2: rgba(244, 143, 177, 0.15);
    --bubble-c-3: rgba(255, 213, 79, 0.15);
    --bubble-c-4: rgba(129, 212, 250, 0.15);
    --bubble-c-5: rgba(244, 143, 177, 0.15);
    --bubble-c-6: rgba(255, 213, 79, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* Fun Background Bubbles */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) { width: 40px; height: 40px; left: 10%; animation-duration: 8s; background-color: var(--bubble-c-1); }
.bubble:nth-child(2) { width: 20px; height: 20px; left: 20%; animation-duration: 5s; animation-delay: 1s; background-color: var(--bubble-c-2); }
.bubble:nth-child(3) { width: 50px; height: 50px; left: 35%; animation-duration: 7s; animation-delay: 2s; background-color: var(--bubble-c-3); }
.bubble:nth-child(4) { width: 80px; height: 80px; left: 50%; animation-duration: 11s; animation-delay: 0s; background-color: var(--bubble-c-4); }
.bubble:nth-child(5) { width: 35px; height: 35px; left: 55%; animation-duration: 6s; animation-delay: 1s; background-color: var(--bubble-c-5); }
.bubble:nth-child(6) { width: 45px; height: 45px; left: 65%; animation-duration: 8s; animation-delay: 3s; background-color: var(--bubble-c-6); }
.bubble:nth-child(7) { width: 90px; height: 90px; left: 70%; animation-duration: 12s; animation-delay: 2s; background-color: var(--bubble-c-1); }
.bubble:nth-child(8) { width: 25px; height: 25px; left: 80%; animation-duration: 6s; animation-delay: 2s; background-color: var(--bubble-c-2); }
.bubble:nth-child(9) { width: 15px; height: 15px; left: 70%; animation-duration: 5s; animation-delay: 1s; background-color: var(--bubble-c-3); }
.bubble:nth-child(10) { width: 50px; height: 50px; left: 85%; animation-duration: 9s; animation-delay: 3s; background-color: var(--bubble-c-4); }

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

header {
    background-color: var(--bg-header);
    color: var(--text-main);
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
    transition: background-color 0.3s;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--bg-header);
    box-shadow: 0 2px 4px var(--shadow-color);
    transition: background-color 0.3s;
    position: relative;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-heading);
    font-family: 'Fredoka', sans-serif; /* Fun font for logo */
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 0; /* Removed border-radius */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    color: var(--nav-link-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-pink);
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--nav-link-color);
    transition: color 0.3s, transform 0.3s;
    padding: 5px;
}

.theme-toggle:hover {
    color: var(--accent-pink);
    transform: rotate(15deg);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--nav-link-color);
    cursor: pointer;
}

/* Side Menu Styles */
.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background-color: var(--side-menu-bg);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.side-menu.active {
    transform: translateX(0);
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.side-menu-header h3 {
    margin: 0;
    color: var(--text-heading);
    font-family: 'Fredoka', sans-serif;
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.side-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-link {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.side-link:hover {
    background-color: var(--icon-bg);
    color: var(--accent-pink);
}

.side-link i {
    margin-right: 15px;
    width: 25px;
    text-align: center;
    color: var(--accent-blue);
}

.side-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    color: var(--text-main);
    font-size: 1.2rem;
}

.side-menu-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.side-menu-footer img {
    height: 50px;
    border-radius: 50%;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    padding: 2rem 0;
}

header h1 {
    margin: 0;
    font-size: 3rem; /* Larger font size */
    color: var(--text-heading);
    font-family: 'Fredoka', sans-serif; /* Fun font */
    letter-spacing: 1px;
}

header p {
    font-size: 1.3rem;
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

/* Header Promo Section */
.header-promo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 3rem;
    background: var(--accent-yellow); /* Changed background to yellow */
    border-radius: 20px;
    gap: 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-color);
}

.header-promo::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.2); /* Light overlay */
    border-radius: 50%;
    z-index: 0;
}

.header-promo::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.2); /* Light overlay */
    border-radius: 50%;
    z-index: 0;
}

.promo-content {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 1;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #424242; /* Darker text for readability on yellow */
    text-shadow: none;
    font-family: 'Fredoka', sans-serif; /* Fun font */
}

.promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.promo-features li {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: #424242; /* Darker text */
}

.promo-features li i {
    margin-right: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    box-shadow: none;
    color: var(--accent-blue); /* Blue icons */
}

.promo-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-pink), #f50057);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(219, 0, 125, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(219, 0, 125, 0.6);
    background: linear-gradient(45deg, #ad0063, #c51162);
}

.cta-button-secondary {
    background: var(--accent-blue);
    box-shadow: 0 5px 15px rgba(2, 119, 189, 0.4);
}

.cta-button-secondary:hover {
    background: #01579b;
    box-shadow: 0 8px 20px rgba(2, 119, 189, 0.6);
}

.promo-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%);
    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 0.3)); /* Darker shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-image img:hover {
    transform: scale(1.05) rotate(-1deg);
    filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.4)); /* Darker shadow */
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

/* Main Content Layout */
main {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.section-main-title {
    text-align: center;
    font-size: 3rem; /* Larger font size */
    color: var(--text-heading);
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif; /* Fun font */
}

/* How it Works Section */
.how-it-works {
    text-align: center;
    margin-bottom: 2rem;
}

.how-it-works h2 {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 3rem;
    font-family: 'Fredoka', sans-serif; /* Fun font */
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--step-icon-bg);
    color: var(--step-icon-color);
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.step-card h3 {
    color: var(--text-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.book-service-btn-container {
    margin-top: 2rem;
}

/* Service Category Cards */
.service-category {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, background-color 0.3s;
    position: relative;
    overflow: hidden;
}

/* Fun decorative circles inside cards */
.service-category::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--bubble-color);
    z-index: 0;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px var(--shadow-color);
}

.service-category h2 {
    font-size: 2.2rem;
    color: var(--text-heading);
    margin-bottom: 2rem;
    margin-top: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    font-family: 'Fredoka', sans-serif; /* Fun font */
}

.service-category h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background-color: var(--accent-pink);
    border-radius: 3px;
    position: absolute;
    bottom: -12px;
    left: 0;
}

.service-category h2 i {
    margin-right: 1rem;
    color: var(--accent-blue);
    background: var(--promo-bg);
    padding: 10px;
    border-radius: 12px;
    font-size: 1.5rem;
}

.service-category p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Service List Grid */
.service-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Individual Service Items */
.service-list li {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 24px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px var(--shadow-color);
}

.service-list li:hover {
    background: var(--bg-card);
    border-color: var(--accent-pink);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 24px rgba(219, 0, 125, 0.15);
    color: var(--accent-pink);
}

.service-list li i {
    font-size: 1.3rem;
    margin-right: 15px;
    color: var(--icon-color);
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--icon-bg);
}

.service-list li:hover i {
    color: #ffffff;
    background: var(--accent-pink);
    transform: rotate(10deg);
}

/* Contact Section */
.contact-info {
    background: var(--contact-bg);
    color: var(--contact-text);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 24px;
    margin-top: 2rem;
    box-shadow: 0 20px 40px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

/* Decorative circles for contact section */
.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.contact-info::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.contact-info h2 {
    color: var(--contact-text);
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Fredoka', sans-serif; /* Fun font */
}

.contact-info h2::after {
    display: none;
}

.contact-info h2 i {
    color: var(--accent-blue);
    background: white;
    padding: 12px;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--contact-text);
    opacity: 0.9;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info a {
    display: inline-block;
    background: white;
    color: var(--accent-blue);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.contact-info a:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    color: var(--accent-pink);
}

/* Booking Form & About Page Styles */
.booking-form-container, .about-us-container, .blog-container, .blog-post-container {
    background: var(--bg-card);
    padding: 2rem 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px var(--shadow-color);
}

.form-subtitle, .about-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -1rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.booking-form {
    display: grid;
    gap: 1rem; /* Reduced gap */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; /* Reduced gap */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', sans-serif;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--icon-color);
    z-index: 0; /* Ensure icon is behind input text */
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px 10px 45px; /* Reduced padding */
    border-radius: 10px;
    border: 2px solid var(--border-color);
    background-color: var(--icon-bg);
    color: var(--text-main);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    position: relative;
    z-index: 1; /* Ensure input is on top */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(2, 119, 189, 0.2);
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: .65em auto;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    padding-left: 15px; /* No icon for textarea */
}

.other-service-group {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, margin-top 0.5s ease-out;
    margin-top: 0;
}

.other-service-group.visible {
    max-height: 200px; /* Adjust as needed */
    margin-top: 1rem; /* Reduced margin */
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--icon-bg);
    padding: 8px 12px; /* Reduced padding */
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group input[type="radio"]:checked + label {
    background-color: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
    background: var(--accent-blue); /* Blue submit button */
    box-shadow: 0 5px 15px rgba(2, 119, 189, 0.4);
}

.form-submit-btn:hover {
    background: #01579b;
    box-shadow: 0 8px 20px rgba(2, 119, 189, 0.6);
}

/* About Page */
.about-section {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px var(--shadow-color);
}

.why-choose-us, .core-values, .about-contact {
    margin-bottom: 4rem;
}

.why-choose-us h3, .core-values h3, .about-contact h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 2rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.reason-card {
    text-align: center;
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.reason-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 0.5rem;
}

.core-values ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.core-values li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.core-values li i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    margin-top: 5px;
}

.about-contact p {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-secondary);
}

.about-contact i {
    color: var(--accent-pink);
    margin-right: 0.5rem;
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-header);
    color: var(--text-secondary);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-column h4 {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-column p {
    margin: 0.5rem 0;
}

.social-icons a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--accent-pink);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, opacity 0.3s;
    z-index: 1000;
}

.whatsapp-btn {
    background-color: #25D366;
    right: 20px;
}

.back-to-top-btn {
    background-color: var(--accent-pink);
    right: 90px;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* Scroll Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--text-heading);
    text-align: center;
    margin-bottom: 2rem;
}

.faq-section details {
    background: var(--icon-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px var(--shadow-color);
    transition: all 0.3s;
}

.faq-section details:hover {
    border-color: var(--accent-blue);
}

.faq-section summary {
    font-weight: 600;
    color: var(--text-heading);
    padding: 1rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.faq-section summary::after {
    content: '\f078'; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
}

.faq-section details[open] summary::after {
    transform: rotate(180deg);
}

.faq-section details p {
    padding: 0 1.5rem 1rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.blog-meta i {
    color: var(--accent-blue);
    margin-right: 5px;
}

.blog-content h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--text-heading);
    margin: 0.5rem 0;
}

.blog-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: var(--accent-pink);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    margin-top: auto;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more-btn:hover {
    color: var(--accent-blue);
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Blog Post Page Styles */
.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.post-meta i {
    color: var(--accent-blue);
    margin-right: 5px;
}

.post-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
}

.post-body h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-sharing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.post-sharing h4 {
    margin-bottom: 1rem;
    color: var(--text-heading);
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin: 0 5px;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background-color: #3b5998; }
.share-btn.twitter { background-color: #1da1f2; }
.share-btn.whatsapp { background-color: #25d366; }

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

/* Related Posts */
.related-posts-container {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.related-posts-container h3 {
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--text-heading);
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.3s;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-color);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-card h4 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    color: var(--text-heading);
    padding: 1rem;
    margin: 0;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-sizing: border-box;
        transition: transform 0.3s ease;
    }

    .navbar.nav-hidden {
        transform: translateY(-100%);
    }

    header {
        padding-top: 80px;
        background-color: transparent; /* Make header transparent on mobile */
        border-bottom: none;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    header h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .header-promo {
        padding: 1.5rem;
        margin: 1rem 0;
        flex-direction: column-reverse;
        text-align: center;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promo-features {
        display: inline-block;
        text-align: left;
    }

    .promo-image {
        padding: 0;
        margin-bottom: 1rem;
    }

    main {
        margin: 1.5rem auto;
        gap: 1.5rem;
    }

    .section-main-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        margin-top: 0;
    }

    .service-category {
        padding: 1.5rem;
    }

    .service-category h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-list li {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .service-list li i {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-right: 10px;
    }

    .how-it-works h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        padding: 2rem 1rem;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .contact-info a {
        font-size: 1.4rem;
        padding: 12px 30px;
    }

    .booking-form-container, .about-us-container, .blog-container, .blog-post-container {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-section {
        flex-direction: column !important;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-controls {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

/* Comment Status Messages */
.comment-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
}

.comment-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.comment-error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}
