:root {
    /* Brand Colors extracted from SAAF SERVICES Logo */
    --clr-primary: #0066cc;      /* Bright Royal Blue */
    --clr-primary-dark: #003399; /* Deep Navy Blue */
    --clr-secondary: #33cc33;    /* Vibrant Leaf Green */
    --clr-accent: #00ccff;       /* Bright Cyan / Watery Glow */

    /* Neutrals */
    --clr-dark: #111827;
    --clr-text: #4b5563;
    --clr-light: #f3f4f6;
    --clr-white: #ffffff;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    --grad-water: linear-gradient(135deg, var(--clr-accent), var(--clr-primary));
    --grad-eco: linear-gradient(135deg, var(--clr-secondary), #22a022);

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

    /* Shadow & Border Radius */
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-glow: 0 10px 30px -5px rgba(0, 102, 204, 0.3);
    --radius-md: 0.75rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    color: var(--clr-dark);
    letter-spacing: -0.01em;
}

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

ul {
    list-style: none;
}

/* Typography Utilities */
.gradient-text {
    background: var(--grad-water);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.text-cyan { color: var(--clr-accent); }
.text-blue { color: var(--clr-primary); }
.text-green { color: var(--clr-secondary); }
.text-huge { font-size: 4rem; }

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--clr-white);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.btn-secondary:hover {
    background: rgba(0, 102, 204, 0.05);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    background: var(--clr-white);
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    padding: 1rem 0;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px; /* Increased for better visibility */
    width: auto;
    transition: transform 0.3s ease, height 0.3s ease;
    animation: logoEntrance 1s ease-out;
}

.navbar.scrolled .logo img {
    height: 70px; /* Scale down slightly on scroll */
}

@keyframes logoEntrance {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo:hover img {
    transform: scale(1.08);
}





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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Mobile Menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-dark);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--clr-white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #f8fafc;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(0, 204, 255, 0.15); /* Cyan Glow */
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(51, 204, 51, 0.1);  /* Green Glow */
    bottom: -100px;
    left: -200px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 102, 204, 0.1);
    color: var(--clr-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--clr-text);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--clr-primary-dark);
}

.stat-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Glass Card / Hero Visual */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.checklist .check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
    background: white;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checklist .check-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    color: var(--clr-primary);
}

.checklist .check-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: -20px;
    right: -20px;
    color: #fbbf24;
}

.badge-2 {
    bottom: -20px;
    left: -20px;
    color: var(--clr-secondary);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Services Redesign */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px -12px rgba(0, 102, 204, 0.2);
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-icon-overlay {
    position: absolute;
    top: -35px; /* Positioned exactly on the boundary line */
    right: 1.5rem;
    width: 70px;
    height: 70px;
    background: var(--clr-white);
    color: var(--clr-primary);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-overlay {
    background: var(--clr-primary);
    color: white;
    transform: rotate(-5deg);
}

.service-content {
    padding: 3rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative; /* Position context for the icon overlay */
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: var(--clr-dark);
}

.service-card p {
    color: var(--clr-text);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--clr-primary-dark);
}

.service-card:hover .service-link i {
    transform: translateX(8px);
}

/* Booking Section */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.booking-info h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.booking-perks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-perks li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.125rem;
}

/* Booking Form */
.booking-form-wrapper {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: var(--radius-md);
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--clr-text);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.step.active {
    background: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
    box-shadow: 0 0 15px rgba(0,102,204,0.3);
}

.step-line {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 15px;
}

.form-step {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label:not(.radio-card) {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.radio-card {
    cursor: pointer;
}

.radio-card input {
    display: none;
}

.card-content {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.card-content i {
    font-size: 2rem;
    color: var(--clr-text);
    margin-bottom: 0.5rem;
    display: block;
}

.radio-card input:checked + .card-content {
    border-color: var(--clr-primary);
    background: rgba(0, 102, 204, 0.05);
}

.radio-card input:checked + .card-content i {
    color: var(--clr-primary);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-message i {
    margin-bottom: 1rem;
}

/* Testimonials Section */
.slider-container {
    width: 100%;
    padding: 2rem 0;
}

.slider-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--clr-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.02);
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

/* Floating animation for cards */
@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.testimonial-card:nth-child(even) {
    animation: softFloat 6s ease-in-out infinite;
}

.testimonial-card:nth-child(odd) {
    animation: softFloat 6s ease-in-out infinite 3s;
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
}

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

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--grad-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.client-info span {
    font-size: 0.875rem;
    color: #64748b;
}

/* Blog Section Redesign */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.blog-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 102, 204, 0.15);
}

.blog-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-soft);
    z-index: 10;
}

.blog-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--clr-primary);
}

.blog-card p {
    color: var(--clr-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.read-more {
    font-weight: 700;
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--clr-primary-dark);
}

.blog-card:hover .read-more i {
    transform: translateX(8px);
}

/* Footer */
.footer {
    background: var(--clr-dark);
    color: white;
    padding-top: 5rem;
}

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

.footer-logo {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 80px;
}



.brand-col p {
    color: #9ca3af;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #9ca3af;
}

.contact-info i {
    color: var(--clr-accent);
    margin-top: 5px;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    font-size: 0.875rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25d366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5);
    color: white;
    animation: none; /* Stop pulsing on hover */
}

.whatsapp-float::before {
    content: "Chat with us";
    position: absolute;
    right: 80px;
    background: white;
    color: var(--clr-dark);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.05);
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
    right: 90px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-content, .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-actions, .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: block; /* Shown for full detail mode */
        margin: 2rem auto 0;
        width: 100%;
        max-width: 450px;
    }

    .glass-card {
        transform: none !important; /* Flatten card on mobile */
    }

    .badge-1 {
        right: -10px;
        top: -15px;
    }

    .badge-2 {
        left: -10px;
        bottom: -15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .logo img {
        height: 64px; /* More compact logo on mobile */
    }

    .navbar {
        padding: 0.75rem 0; /* Compact navbar */
    }

    .hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.15rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .booking-container {
        padding: 1.5rem;
    }

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .service-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .blog-content {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-card {
        padding: 2.25rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .options-grid {
        grid-template-columns: 1fr; /* Single column for service select options */
        gap: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .booking-progress {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .hero-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        text-align: center;
        flex: 1 1 30%;
        min-width: 80px;
    }

    .booking-form-wrapper {
        padding: 1.25rem 1rem;
    }

    .booking-perks li {
        font-size: 1rem;
    }

    .mobile-menu a {
        font-size: 1.35rem;
    }
    
    .mobile-menu a:hover {
        color: var(--clr-primary);
    }
}

/* Interactive Map styling */
.map-container {
    height: 220px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid #cbd5e1;
    z-index: 10;
}

.locate-btn {
    margin-bottom: 12px;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--clr-white);
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    cursor: pointer;
}

.locate-btn:hover {
    background-color: rgba(0, 102, 204, 0.05);
    transform: translateY(-1px);
}

.location-status {
    font-size: 0.9rem;
    color: var(--clr-text);
    background-color: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--clr-primary);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.location-status a {
    color: var(--clr-primary);
    text-decoration: underline;
    font-weight: 600;
}

.location-status a:hover {
    color: var(--clr-primary-dark);
}

.text-red {
    color: #ef4444;
}

.text-green {
    color: #22c55e;
}

/* Custom Pin styling using FontAwesome icon */
.custom-map-marker {
    background: transparent;
    border: none;
}

.map-marker-pin {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 42px;
    color: #ef4444;
    font-size: 2.2rem;
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.3));
    animation: pinBounce 0.5s ease-in-out;
}

@keyframes pinBounce {
    0% { transform: translateY(-10px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

