/* ================================================
   ROOT VARIABLES
================================================ */
:root {
    --primary:      #2ecc71;
    --primary-dark: #27ae60;
    --secondary:    #34495e;
    --accent:       #3498db;
    --light:        #f0f4f8;
    --dark:         #1a2535;
    --danger:       #e74c3c;
    --warning:      #f1c40f;
    --white:        #ffffff;
    --gradient:     linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:    0 6px 20px rgba(0,0,0,0.12);
    --shadow-lg:    0 15px 40px rgba(0,0,0,0.18);
    --radius:       14px;
    --transition:   0.3s ease;
    --nav-height:   70px;
    --container:    1200px;
}

/* ================================================
   RESET & BASE
================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ================================================
   CONTAINER UTILITY
================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ================================================
   SECTION WRAPPER
================================================ */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-title h2 {
    color: var(--dark);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-title p {
    color: var(--secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================================
   NAVBAR
================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: var(--dark);
    box-shadow: var(--shadow-md);
}

.navbar-container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.navbar-logo i {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.book-now {
    background: var(--primary);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    color: var(--white);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-link.book-now::after {
    display: none;
}

.nav-link.book-now:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(46,204,113,0.4);
}

/* Mobile hamburger */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
    line-height: 1;
    flex-shrink: 0;
}

/* Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 990;
}

.nav-overlay.active {
    display: block;
}

/* ================================================
   HERO
================================================ */
.hero {
    min-height: 100svh;
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        #1a2535;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 3rem) 1.5rem 4rem;
}

.hero-content {
    max-width: 860px;
    width: 100%;
}

.hero h1 {
    color: var(--white);
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.15;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    color: rgba(255,255,255,0.88);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 18px rgba(46,204,113,0.35);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(46,204,113,0.5);
}

.header-icon {
    color: var(--primary);
    margin-right: 10px;
    font-size: 0.8em;
    animation: wrenchShake 3s ease infinite;
    display: inline-block;
}

@keyframes wrenchShake {
    0%, 100%  { transform: rotate(0deg); }
    20%, 60%  { transform: rotate(-25deg); }
    40%, 80%  { transform: rotate(25deg); }
}

/* ================================================
   SERVICES SECTION
================================================ */
#services {
    background: var(--light);
}

#services .container {
    display: contents; /* let grid work inside */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
}

.service {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid transparent;
}

.service:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary);
}

.service:hover .service-icon {
    transform: rotate(360deg);
}

.service-icon {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    transition: transform 0.6s ease;
    display: inline-block;
}

.service h3 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service p {
    color: var(--secondary);
    font-size: 0.95rem;
}

.service ul {
    padding: 0;
}

.service li {
    padding: 0.45rem 0;
    color: var(--secondary);
    border-bottom: 1px solid #eef1f4;
    font-size: 0.95rem;
}

.service li:last-child {
    border-bottom: none;
}

/* ================================================
   WHY US
================================================ */
#why-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: var(--light);
    padding: 2.25rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 14px rgba(46,204,113,0.3);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--secondary);
    font-size: 0.95rem;
}

/* ================================================
   STATS
================================================ */
#stats {
    background: var(--gradient);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ================================================
   TESTIMONIALS
================================================ */
#testimonials {
    background: var(--light);
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 33.333%;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46,204,113,0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
    margin: 0 0.75rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
}

.star-rating {
    color: var(--warning);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-dots {
    display: flex;
    gap: 6px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
    border: none;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ================================================
   BOOKING / CONTACT
================================================ */
#contact {
    background: var(--white);
}

.booking-form-wrapper {
    background: var(--light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 820px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #dde2e8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46,204,113,0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1rem;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(46,204,113,0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(46,204,113,0.45);
}

/* Calendar */
.calendar-wrapper {
    background: var(--white);
    border: 1.5px solid #dde2e8;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.25rem 0;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    gap: 0.5rem;
}

.calendar-header h4 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
}

.prev-month,
.next-month {
    background: none;
    border: 1.5px solid #dde2e8;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
    flex-shrink: 0;
    font-family: inherit;
}

.prev-month:hover,
.next-month:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-label {
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.75rem;
    padding: 0.4rem 0;
}

.calendar-day {
    text-align: center;
    padding: 0.55rem 0.25rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
    font-size: 0.85rem;
    font-weight: 500;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: var(--primary);
    color: var(--white);
}

.calendar-day.selected {
    background: var(--primary-dark);
    color: var(--white);
    font-weight: 700;
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.today {
    border: 2px solid var(--primary);
    font-weight: 700;
}

/* ================================================
   PRICING
================================================ */
#pricing {
    background: var(--light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.75rem;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.pricing-card:nth-child(2) {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: -28px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1.25rem 0;
    line-height: 1;
}

.price span {
    font-size: 1.2rem;
    font-weight: 500;
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    text-align: left;
}

.pricing-card .features li {
    margin: 0.65rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.92rem;
    color: var(--secondary);
}

.pricing-card .features li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-cta {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform var(--transition), box-shadow var(--transition);
    letter-spacing: 0.5px;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(46,204,113,0.4);
}

/* ================================================
   FAQ
================================================ */
#faq {
    background: var(--white);
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 0.85rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid #e8ecf0;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 0.98rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--dark);
    font-family: inherit;
    gap: 1rem;
    transition: background var(--transition);
}

.faq-question:hover {
    background: #f8fafb;
}

.faq-question i {
    transition: transform var(--transition);
    flex-shrink: 0;
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    background: #fafbfc;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 1.25rem 1.5rem;
    max-height: 300px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}

/* ================================================
   LOCATION
================================================ */
#location {
    background: var(--light);
}

.map-container {
    width: 100%;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ================================================
   FOOTER
================================================ */
footer {
    background: var(--dark);
    color: #b0b8c8;
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer-logo {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-links a {
    color: #b0b8c8;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

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

.social-link {
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ================================================
   FLOATING WIDGETS
================================================ */

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--dark);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 500;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-md);
    z-index: 600;
    transition: all var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-float i {
    font-size: 1.3rem;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}



/* ================================================
   RESPONSIVE — TABLET (max 1024px)
================================================ */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 50%;
    }

    .pricing-card:nth-child(2) {
        transform: none;
    }
}

/* ================================================
   RESPONSIVE — MOBILE (max 768px)
================================================ */
@media (max-width: 768px) {

    /* Navbar */
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(80vw, 320px);
        height: 100dvh;
        background: var(--dark);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--nav-height) + 2rem) 2rem 2rem;
        gap: 0.25rem;
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        z-index: 1000;
        box-shadow: -6px 0 20px rgba(0,0,0,0.2);
        overflow-y: auto;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.book-now {
        display: inline-block;
        margin-top: 1rem;
        width: auto;
        text-align: center;
        padding: 0.7rem 2rem;
    }

    /* Hero */
    .hero {
        min-height: 90svh;
        background-attachment: scroll;
    }

    /* Form layout */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial-card {
        flex: 0 0 100%;
        margin: 0;
    }

    /* Pricing — avoid scale clipping */
    .pricing-card:nth-child(2) {
        border-color: var(--primary);
    }

    /* WhatsApp — icon-only circle on mobile */
    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float i {
        font-size: 1.4rem;
    }
}

/* ================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
================================================ */
@media (max-width: 480px) {
    :root {
        --nav-height: 60px;
    }

    section {
        padding: 3.5rem 0;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo {
        font-size: 1.05rem;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

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

    .calendar-grid {
        gap: 2px;
    }

    .calendar-day {
        padding: 0.4rem 0.1rem;
        font-size: 0.78rem;
    }

    .calendar-day-label {
        font-size: 0.68rem;
    }

    .map-container {
        height: 280px;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.1rem;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }
}

/* ================================================
   FOCUS VISIBILITY (Accessibility)
================================================ */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ================================================
   REDUCED MOTION
================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}