* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0%; /* Keep this padding or adjust slightly if needed for logo height */
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    max-width: 250px;
}

.logo:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a:hover {
    background: #e09aad;
    color: white;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d17d94;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('../images/hero_image.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #e9e9e9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e9e9e9;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e09aad;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(180, 180, 180, 0.3);
}

.btn:hover {
    background: #eb8ca7;
    transform: translateY(-3px);
    box-shadow: 0 3px 12px rgba(180, 180, 180, 0.4);
}

/* Section Styles */
.section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #d17d94;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d17d94;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Slightly wider minmax for more content */
    gap: 2.5rem; /* Increased gap for better separation */
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 0; 
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* Softer shadow */
    transition: all 0.3s ease;
    display: flex; 
    flex-direction: column; 
    overflow: hidden; /* Ensures content respects border-radius */
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01); /* Subtle scale */
    box-shadow: 0 12px 25px rgba(233, 30, 99, 0.15); /* More pronounced shadow on hover */
}

.service-card img {
    width: 100%;
    height: 320px; /* Adjusted height */
    border-radius: 15px 15px 0 0;
    object-fit: cover;
    display: block;
}

/* New .service-details container for text content */
.service-details {
    padding: 1.5rem; /* Uniform padding for text content */
    text-align: left; /* Align text to left for readability of details */
    flex-grow: 1; /* Allows this div to take remaining space if cards have different content heights */
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: #d17d94; /* Your brand pink */
    font-size: 1.6rem; /* Slightly larger heading */
    margin-top: 0.75rem; /* Space above heading */
    text-align: center; /* Center the main heading */
}

.service-details .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333; /* Darker color for price */
    margin-bottom: 0.5rem;
    text-align: center; /* Center the price */
}

.service-details .duration {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    text-align: center; /* Center duration */
    font-style: italic;
}

.service-details .description {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

.line {
    border-top: 1px solid #eee; /* Separator line */
}

.service-details .sub-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee; /* Separator line */
}

.service-details .sub-details h4 {
    font-size: 1.1rem;
    color: #c86b85; /* Slightly muted pink */
    margin-bottom: 0.75rem;
}

.service-details .sub-details ul {
    list-style: disc; /* Use disc for bullet points */
    padding-left: 20px; /* Indent list items */
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #555;
}

.service-details .sub-details ul li {
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.service-details .note,
.service-details .important-note {
    font-size: 0.9rem;
    color: #666;
    background-color: #f9f9f9; /* Light background for notes */
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 0.5rem;
    border-left: 3px solid #e09aad; /* Accent border */
}

.service-details .important-note {
    border-left-color: #e91e63; /* Stronger accent for important notes */
    font-weight: 500;
}

/* About Section */
.about {
    background-attachment: fixed;
    background-image: url('about.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95); /* Semi-transparent overlay */
}

.about-content {
    position: relative; /* To ensure content is above the ::before pseudo-element */
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr; /* TWO COLUMNS for desktop view */
    gap: 3rem; 
    align-items: center; /* Vertically align items in the row */
}

/* MODIFIED: About Text Container for centering all its content within its column */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    display: flex;
    flex-direction: column; /* Stack text paragraphs and button vertically */
    align-items: center;   /* Center items horizontally within this container */
    text-align: center;    /* Center the text paragraphs themselves */
    padding: 0 1rem; /* Optional: Add some padding if text gets too close to column edge */
}

.about-text h2 {
    font-size: 2.5rem; 
    margin-bottom: 1.5rem; 
    color: #d17d94; 
    position: relative; 
}

.about-text h2::after { 
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; 
    height: 3px;
    background: #d17d94; 
}

.about-text p {
    margin-bottom: 1rem; 
    max-width: 100%; /* Allow paragraph to take full width of its parent column first */
    /* max-width: 650px; /* This can be kept if you want to constrain line length even within the column */
}
.about-text p:last-of-type { 
    margin-bottom: 0;
}

.about-text .values-btn {
    margin-top: 2rem; 
    background-color: #d17d94; 
    color: white;
    padding: 0.9rem 2rem; 
    font-size: 1rem;
    font-weight: bold; 
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.about-text .values-btn:hover {
    background-color: #e09aad; 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Responsive adjustments for About section */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-text {
        order: 1;
        padding: 0;
    }
    .about-image {
        order: 2;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
     .about-text h2 {
        font-size: 2rem; 
    }
    .about-text p {
        font-size: 1rem; 
    }
    .about-text .values-btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.95rem;
    }
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    padding-top: 60px;
    animation: fadeInBackdrop 0.3s ease-out;
    align-items: center;
    justify-content: center;

}

.modal-content {
    background-color: #fefefe;
    margin: 0% auto;
    padding: 25px 30px 30px 30px;
    border: 1px solid #888;
    width: 85%;
    max-width: 550px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: slideInModal 0.4s ease-out;
    text-align: left;
}

.modal-content h3 {
    color: #d17d94;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.modal-content ul {
    list-style: none;
    padding-left: 0;
}

.modal-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    padding-left: 25px;
    position: relative;
    margin-bottom: 1rem;
}

/* Custom bullet points using pseudo-elements */
.modal-content ul li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    top: 2px;
    color: #e09aad;
    font-size: 1rem;
}


.close-modal-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    transition: color 0.3s ease, transform 0.2s ease;
}

.close-modal-btn:hover,
.close-modal-btn:focus {
    color: #d17d94;
    text-decoration: none;
    cursor: pointer;
    transform: scale(1.1);
}

/* Modal Animations */
@keyframes fadeInBackdrop {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideInModal {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* Hide modal when it has 'hidden' class (for JS control with animation out) */
.modal.hidden {
    animation: fadeOutBackdrop 0.3s ease-in forwards;
}
.modal.hidden .modal-content {
    animation: slideOutModal 0.3s ease-in forwards;
}

@keyframes fadeOutBackdrop {
    from {opacity: 1;}
    to {opacity: 0;}
}
@keyframes slideOutModal {
    from {transform: translateY(0); opacity: 1;}
    to {transform: translateY(-50px); opacity: 0;}
}


/* Team Section */
.team {
    background: linear-gradient(135deg, #fff 0%, #fce4ec 100%);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(233, 30, 99, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 4px solid #d17d94;
}

.team-member h3 {
    color: #d17d94;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background-attachment: fixed;
    background-image: url('two_dogs_smiling.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 111, 157, 0.9);
}

.testimonials-content {
    position: relative;
    z-index: 1;
    color: white;
}

.testimonials h2 {
    color: #fff;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #e9e9e9;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    color: #fff;
}

/* Contact Section */
.contact {
    background: #333;
    color: white;
    text-align: center;
}

.contact h2 {
    color: white;
}

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

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(224, 154, 173, 0.4);
    transform: translateY(-5px);
}

.contact-item h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.reveal-contact {
    text-decoration: underline;
    cursor: pointer;
    color: #d17d94; 
    font-weight: bold;
}

.reveal-contact:hover {
    color: #fff; 
}

.contact-item p a {
    color: #fff; 
    text-decoration: none;
}
.contact-item p a:hover {
    text-decoration: underline;
}

#reveal-phone, #reveal-email {
    color: #d17d94;
    text-decoration: underline;
}
#reveal-phone:hover, #reveal-email:hover {
    color: #fff;
}

/* Footer */
footer {
    background: #2a2a2a; /* This background will span full width */
    color: #ccc;
    text-align: center;
    padding: 1.5rem 5%; 
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-main-row {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 1rem; 
}

.social-media-links {
    display: flex;
    align-items: center; 
    gap: 1.2rem;
    /* No margin-right: auto; needed here as space-between on parent handles it */
}

.social-media-links a {
    text-decoration: none;
    color: #e09aad; 
    display: inline-block; 
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media-links a:hover {
    color: #fff;
    transform: scale(1.15) translateY(-2px);
}

.social-svg-icon {
    width: 26px; /* Slightly smaller for better fit in a single row */
    height: 26px;
    vertical-align: middle;
}

.footer-main-row .copyright {
    font-size: 0.9rem;
    color: #aaa;
    text-align: center; /* Ensures it's centered if it takes up its own space */
    /* flex-grow: 1; /* Allows copyright to take up available middle space if needed, but space-between might be enough */
    margin: 0 1rem; /* Add some horizontal margin to prevent touching other elements if space is tight */
}

.hiring-btn {
    background: #d17d94;
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: inline-block;
    white-space: nowrap;
    /* No margin-left: auto; needed here */
}

.hiring-btn:hover {
    background: #e09aad;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


/* Responsive adjustments for the footer */
@media (max-width: 768px) {
    .footer-main-row {
        flex-direction: column; /* Stack all items vertically */
        justify-content: center; /* Center items when stacked */
        gap: 1.5rem; /* Adjust gap for vertical stacking */
    }

    .footer-main-row .copyright {
        order: 2; /* Place copyright between social and hiring button when stacked */
        margin: 0; /* Reset margin for stacked layout */
    }

    .social-media-links {
        order: 1; /* Social links first */
        justify-content: center; /* Center social icons when stacked */
    }

    .hiring-btn {
        order: 3; /* Hiring button last */
    }
}

@media (max-width: 480px) {
    .social-svg-icon {
        width: 24px;
        height: 24px;
    }
    .hiring-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
     .footer-main-row {
        gap: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Show More Button Styles */
.show-more-btn {
    display: block;
    margin: 2rem auto 0; /* Centered with top margin */
    padding: 0.5rem 1rem;
    background-color: #e09aad;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.show-more-btn:hover {
    background-color: #d17d94;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.show-more-btn:focus {
    outline: 2px solid #e09aad; /* Accessibility focus style */
    outline-offset: 2px;
}

/* Class to hide elements via JavaScript */
.hidden-by-js {
    display: none !important; /* Important to override grid display */
}

/* Mobile Styles */
@media (max-width: 768px), 
       (orientation: landscape) and (max-height: 550px) {
    .nav-links {
        position: fixed;
        top: 108px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 108px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0; 
    }

    .hamburger {
        display: flex; 
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 5%;
    }

    .section h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .team-grid, /* Keep this for team members themselves */
    .testimonials-grid { /* Keep this for testimonials themselves */
        grid-template-columns: 1fr; /* Single column for items on smaller screens */
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.5rem 2%; /* Reduced nav padding */
    }
    .logo img {
        height: 60px; /* Smaller logo on very small screens */
    }
    .nav-links {
        top: 76px; /* Adjust top if nav height changes */
        height: calc(100vh - 76px);
    }


    .section {
        padding: 2rem 2%; 
    }

    .hero h1 {
        font-size: 2rem; 
    }
}

/* Google Reviews CTA Section */
.google-reviews-cta {
    background-image: linear-gradient(135deg, #fff5f8 0%, #fdeff2 100%); /* Lighter pink gradient */
    padding: 4rem 5%;
    text-align: center;
}

.google-reviews-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.google-reviews-cta h2 {
    color: #d17d94; /* Brand pink */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.google-reviews-cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #d17d94; /* Match heading color */
}

.google-reviews-cta p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.google-reviews-btn {
    /* Using styles consistent with other primary buttons */
    background: #e09aad;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    display: inline-block;
}

.google-reviews-btn:hover {
    background: #d17d94;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(224, 154, 173, 0.4);
}

/* Responsive adjustments for Google Reviews CTA */
@media (max-width: 768px) {
    .google-reviews-cta {
        padding: 3rem 5%;
    }
    .google-reviews-cta h2 {
        font-size: 2rem;
    }
    .google-reviews-cta p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    .google-reviews-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

/* Booking CTA Section */
.booking-cta {
    background-color: #fce4ec; /* Light pink, matching header gradient or similar */
    /* Or a subtle pattern/gradient: */
    /* background-image: linear-gradient(135deg, #fff5f8 0%, #fdeff2 100%); */
    padding: 4rem 5%; /* Adjust padding as needed */
    text-align: center;
}

.booking-cta-content {
    max-width: 700px; /* Constrain content width */
    margin: 0 auto;
}

.booking-cta h2 {
    color: #d17d94; /* Your brand pink */
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    /* The ::after underline will be inherited from global .section h2 styles if this h2 is also part of .section */
}

.booking-cta p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.booking-form-btn {
    /* Leverages existing .btn styles and adds/overrides */
    background: #e09aad; /* Main call-to-action color */
    color: white;
    padding: 1rem 2.5rem; /* Generous padding for a primary button */
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase; /* Optional: for emphasis */
    letter-spacing: 0.5px; /* Optional: for emphasis */
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-form-btn:hover {
    background: #d17d94; /* Slightly darker or more intense on hover */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(224, 154, 173, 0.4); /* Enhanced shadow on hover */
}

/* Responsive adjustments for Booking CTA */
@media (max-width: 768px) {
    .booking-cta {
        padding: 3rem 5%;
    }
    .booking-cta h2 {
        font-size: 2rem;
    }
    .booking-cta p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    .booking-form-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}


/* FAQ CTA Section for services page */
.faq-cta {
    background: linear-gradient(135deg, rgba(247, 111, 157, 0.95), rgba(224, 154, 173, 0.95));
    padding: 4rem 5%;
    text-align: center;
    color: #fafafa;
}

.faq-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.faq-cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #fff;
}

.faq-cta p {
    font-size: 1.15rem;
    color: #f0f0f0;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.faq-cta-btn {
    /* Overrides for the .btn class */
    background: #fafafa;
    color: #d17d94; /* Brand pink text */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-cta-btn:hover {
    background: #f1f1f1;
    color: #c86b85;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for FAQ CTA */
@media (max-width: 768px) {
    .faq-cta {
        padding: 3rem 5%;
    }
    .faq-cta h2 {
        font-size: 2rem;
    }
    .faq-cta p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
}

/* ALL of the FAQ Code is from here on */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    border-color: #e09aad;
    box-shadow: 0 4px 12px rgba(224, 154, 173, 0.15);
}

.faq-item.active {
    border-color: #d17d94;
    box-shadow: 0 6px 20px rgba(224, 154, 173, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #fce4ec 0%, #f8d7da 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #e09aad 0%, #d17d94 100%);
    color: white;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex-grow: 1;
    text-align: left;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer ul {
    list-style-position: inside;
    padding-left: 0.5rem;
}

/* --- NEW --- FAQ List Styling */
.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 1.5rem 0;
}

.faq-answer ul li {
    position: relative;
    padding-left: 35px; /* Creates space for the paw print */
    margin-bottom: 0.75rem; /* Space between bullet points */
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

.faq-answer ul li::before {
    content: '🐾';
    position: absolute;
    left: 7px;
    top: 2px;
    color: #e09aad;
    font-size: 1rem;
}
/* --- END NEW --- */

/* --- NEW --- FAQ Loyalty Program Spacing Fix */
.faq-answer .faq-subheading {
    /* Override default p padding to be tighter for a heading */
    padding-top: 1.5rem;   /* Keep space above the subheading */
    padding-bottom: 0rem; /* Reduce space below to link it to its content */
    font-weight: 600;      /* Make the subheading bold */
}

/* Responsive FAQ Styles */
@media (max-width: 768px) {
    .faq-cta {
        padding: 3rem 5%;
    }

    .faq-cta h2 {
        font-size: 2rem;
    }

    .faq-cta p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .faq-form-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1.3rem;
    }

    .faq-answer p {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 0.9rem 1rem;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }

    .faq-toggle {
        margin-left: 0;
    }

    .faq-answer p {
        padding: 1rem;
    }
}
