/* 
   Mind with Riya - Styling
   Soft, elegant, mood-based UI 
*/

:root {
    /* Color Palette */
    --clr-bg-main: #fcfcfc;
    --clr-bg-soft-blue: #f0f4f8;
    --clr-bg-soft-beige: #fbf8f1;
    --clr-bg-lavender: #f4f0f8;

    --clr-primary: #8da29e;
    /* soft sage / light teal */
    --clr-primary-dark: #6a827d;
    --clr-secondary: #c2cde0;
    /* soft pastel blue */

    --clr-text-main: #333d42;
    --clr-text-muted: #6b7a82;

    --clr-card-bg: #ffffff;
    --clr-whatsapp: #25D366;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--clr-primary) var(--clr-bg-main);
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Noise Background Overlay */
.noise-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    font-weight: 600;
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 em {
    font-style: italic;
    color: var(--clr-primary-dark);
}

h2.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

h3.section-subtitle {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--clr-primary-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Background Utilities */
.bg-soft-blue {
    background-color: var(--clr-bg-soft-blue);
}

.bg-soft-beige {
    background-color: var(--clr-bg-soft-beige);
}

.bg-light-gray {
    background-color: #f9f9f9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: none;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(106, 130, 125, 0.2);
}

.btn-secondary {
    background-color: white;
    color: var(--clr-text-main);
    border-color: #eee;
}

.btn-secondary:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary-dark);
}

.btn-outline:hover {
    background-color: var(--clr-primary);
    color: white;
}

.btn-whatsapp {
    background-color: var(--clr-whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    background-color: #f2e7db;
    color: var(--clr-text-main);
    border-radius: var(--radius-pill);
}

.btn-nav:hover {
    background-color: #e5d5c5;
    color: var(--clr-text-main);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Scroll Progress Bar */
#progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1001;
}

#progress-bar {
    height: 100%;
    background: var(--clr-primary);
    width: 0%;
}

/* Navigation - Pill Design on Desktop */
.navbar {
    position: fixed;
    top: 1rem;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 0.6rem 1rem 0.6rem 2rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-box {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--clr-text-muted);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--clr-primary-dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Sections Base */
section {
    padding: 6rem 0;
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--clr-bg-lavender) 0%, var(--clr-bg-soft-blue) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-primary-dark);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--clr-secondary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #e1d5e7;
    bottom: 50px;
    left: -50px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.top-rated-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-main);
}

.top-rated-badge i {
    color: #f5b041;
}

/* Services Section */
.services-3-col {
    grid-template-columns: repeat(3, 1fr) !important;
}

.services-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--clr-card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-soft-purple {
    background-color: #f3e8fd;
    color: #9d70df;
}

.icon-soft-peach {
    background-color: #fcece3;
    color: #df8865;
}

.icon-soft-green {
    background-color: #e6f6ee;
    color: #55a87e;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-pointers {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-pointers li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.service-pointers li i {
    color: var(--clr-primary);
    margin-top: 4px;
    font-size: 0.8rem;
}

/* Common Issues (Static on Desktop, Marquee on Mobile) */
.common-issues-section {
    padding: 6rem 0;
    overflow: hidden;
}

.marquee-container {
    margin: 4rem 0;
}

.issue-pill {
    background: white;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-pill);
    font-size: 1.05rem;
    color: var(--clr-text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}

.issue-pill i {
    font-size: 1.2rem;
}

.issues-cta {
    margin-top: 5rem;
}

/* Desktop: Static Flex Wrap */
@media (min-width: 769px) {
    .marquee-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .marquee-row {
        display: contents;
        /* Unpack rows so all pills flex together nicely */
    }

    .marquee-content {
        display: contents;
    }

    .duplicate-content {
        display: none !important;
        /* Hide duplicates on desktop */
    }

    .issue-pill {
        transition: var(--transition-fast);
    }

    .issue-pill:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }
}

/* Mobile: Marquee Animations */
@media (max-width: 768px) {
    .marquee-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .marquee-row {
        display: flex;
        width: fit-content;
    }

    .marquee-content {
        display: flex;
        gap: 1.5rem;
        padding-right: 1.5rem;
    }

    @keyframes scrollLeft {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    @keyframes scrollRight {
        from {
            transform: translateX(-50%);
        }

        to {
            transform: translateX(0);
        }
    }

    .marquee-left {
        animation: scrollLeft 40s linear infinite;
    }

    .marquee-right {
        animation: scrollRight 40s linear infinite;
        transform: translateX(-10%);
    }
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.process-step {
    background: var(--clr-card-bg);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.process-step:hover {
    background: var(--clr-bg-lavender);
    transform: translateY(-5px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--clr-secondary);
    opacity: 0.5;
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 600;
}

.process-step h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.process-pointers li {
    margin-bottom: 0.8rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.process-pointers li strong {
    color: var(--clr-text-main);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    overflow: hidden;
}

.testimonials-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 1rem 0;
}

.testimonials-scroll {
    display: flex;
    gap: 2rem;
    padding: 0 calc(50vw - 600px + 2rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 400px;
    scroll-snap-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin: 0;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.testimonial-controls-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.scroll-hint {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-arrows {
    display: flex;
    gap: 0.8rem;
}

.testimonial-arrows button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--clr-primary);
    background: transparent;
    color: var(--clr-primary);
    font-size: 1.1rem;
    cursor: none;
    transition: var(--transition-fast);
}

.testimonial-arrows button:hover {
    background: var(--clr-primary);
    color: white;
}

/* Book & FAQ Section */
.book-faq-section {
    background: var(--clr-bg-soft-blue);
    padding: 8rem 0;
}

.book-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.booking-section {
    position: sticky;
    top: 120px;
}

.booking-section h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--clr-text-main);
}

.book-lead {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--clr-text-muted);
}

.booking-buttons-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-booking-main {
    background-color: var(--clr-primary);
    color: white;
    padding: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
    width: 100%;
}

.btn-booking-main:hover {
    background-color: var(--clr-primary-dark);
    transform: translateY(-2px);
}

.btn-booking-wa {
    background-color: transparent;
    border: 1.5px solid var(--clr-whatsapp);
    color: var(--clr-whatsapp);
    padding: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
    width: 100%;
}

.btn-booking-wa:hover {
    background-color: var(--clr-whatsapp);
    color: white;
    transform: translateY(-2px);
}

/* Right FAQ side (Static List) */
.faq-container {
    background: white;
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.static-faq {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 2rem;
}

.static-faq:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question-static {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--clr-text-main);
    margin-bottom: 1rem;
}

.faq-answer-static p {
    margin: 0;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

/* Footer layout 1/3 and 2/3 */
.footer {
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text-main);
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.align-right {
    justify-content: flex-end;
}

.footer-contact-row {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-contact-link {
    font-size: 1.35rem;
    /* Increased size */
    font-weight: 500;
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
}

.footer-contact-link i {
    color: var(--clr-primary);
    font-size: 1.45rem;
}

.footer-contact-link:hover {
    color: var(--clr-primary-dark);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.footer-social-row {
    display: flex;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    width: 40px;
    /* Increased 3px */
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    /* Bigger icons */
    color: var(--clr-text-main);
    transition: var(--transition-fast);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-socials a:hover {
    background: var(--clr-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* Floating WhatsApp Button */
.float-wa-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--clr-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.float-wa-btn:hover {
    transform: scale(1.05) translateY(-5px);
}

.wa-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3b30;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-dot.show {
    opacity: 1;
    transform: scale(1);
}

.wa-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: var(--clr-text-main);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    transition: all 0.4s ease;
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

.wa-tooltip.show {
    opacity: 1;
    transform: translateX(0);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1024px) {
    .book-faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .booking-section {
        position: relative;
        top: 0;
    }

    .faq-container {
        padding: 3rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .align-right {
        justify-content: center;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 992px) {

    /* About Mobile/Tablet Fixes */
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .top-rated-badge {
        right: 0;
        left: 0;
        margin: 0 auto;
        width: fit-content;
    }
}

@media (max-width: 768px) {

    /* Navbar Mobile Fix */
    .navbar {
        top: 0;
        padding: 0;
    }

    .nav-box {
        border-radius: 0;
        border: none;
        padding: 1rem 1.5rem;
        width: 100%;
    }

    .nav-links {
        display: none;
    }

    .nav-right .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    section {
        padding: 4rem 0;
    }

    .services-3-col {
        grid-template-columns: 1fr !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .booking-section h2 {
        font-size: 3rem;
    }

    .footer-contact-link {
        font-size: 1.15rem;
        /* Slightly smaller for mobile phones */
    }
}