/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --primary-yellow: #FFC107;
    --primary-gold: #FFD700;
    --yellow-dark: #FFA000;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #333333;
    --light-gray: #666666;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --text-gray: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Prevent layout shift and horizontal scroll */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img,
svg {
    max-width: 100%;
    height: auto;
}

/* Ensure all sections don't cause horizontal scroll */
section {
    overflow-x: hidden;
}

/* Better box sizing for all elements */
input,
select,
textarea,
button {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
}

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

.logo-img {
    height: 60px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-home {
    background: var(--primary-yellow);
    color: var(--black);
    border-radius: 4px;
    font-weight: 700;
}

.nav-home:hover {
    background: var(--yellow-dark);
    color: var(--black);
}

.nav-phone {
    background: var(--black);
    color: var(--text-light);
    border-radius: 50px;
    font-weight: 700;
    padding: 0.625rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-phone:hover {
    background: var(--dark-gray);
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.nav-phone svg {
    flex-shrink: 0;
}

.nav-book {
    background: var(--primary-yellow);
    color: var(--black);
    border-radius: 50px;
    font-weight: 700;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.nav-book:hover {
    background: var(--yellow-dark);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: auto;
    padding: 120px 0 60px;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('hero-background.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-header {
    text-align: center;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.logo-highlight {
    color: var(--primary-yellow);
    text-shadow: 0 2px 10px rgba(255, 193, 7, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--text-light);
}

.hero-cta-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

.cta-box {
    background: var(--primary-yellow);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cta-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-icon {
    color: var(--black);
    margin-bottom: 0.25rem;
}

.cta-title {
    color: var(--black);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
}

.cta-text {
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
    opacity: 0.85;
}

/* ========================================
   Trust Badges
   ======================================== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.badge svg {
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.hero-booking-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* ========================================
   Hero Booking Form
   ======================================== */
.hero-booking-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-full {
    margin-bottom: 1rem;
}

.hero-booking-form input,
.hero-booking-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 3px solid #d0d0d0;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.hero-booking-form input::placeholder,
.hero-booking-form textarea::placeholder {
    color: #999;
    font-weight: 500;
}

.hero-booking-form input:focus,
.hero-booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
    transform: translateY(-1px);
}

.hero-booking-form textarea {
    resize: vertical;
}

.form-consent-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-call-box {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border: 3px solid var(--primary-yellow);
}

.phone-icon-wrapper {
    margin-bottom: 0.5rem;
}

.phone-icon-pulse {
    color: var(--primary-yellow);
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.call-box-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
}

.call-box-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 2px;
    line-height: 1;
}

.call-box-number:hover {
    color: var(--primary-yellow);
    transform: scale(1.05);
}

.call-box-subtext {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-yellow {
    background: var(--primary-yellow);
    color: var(--black);
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: 0 4px 0 #CC9A00;
    position: relative;
    top: 0;
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    transform: translateY(2px);
    box-shadow: 0 2px 0 #CC9A00;
    top: 2px;
}

.btn-yellow:active {
    transform: translateY(4px);
    box-shadow: 0 0 0 #CC9A00;
    top: 4px;
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
    font-weight: 700;
}

/* ========================================
   Coverage Section
   ======================================== */
.coverage-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.coverage-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.coverage-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   Services Grid Section
   ======================================== */
.services-grid-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
                url('https://images.unsplash.com/photo-1490650404312-a2175773bbf5?q=80&w=4140&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-yellow);
    background: rgba(255, 255, 255, 1);
}

.service-box-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-box:hover .service-box-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 15px rgba(255, 193, 7, 0.4);
}

.service-box-icon svg {
    color: var(--black);
}

.service-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-light);
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-yellow);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon svg {
    color: var(--black);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-link:hover {
    color: var(--yellow-dark);
    text-decoration: underline;
}

.contact-card p,
.contact-address {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Form Message
   ======================================== */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--dark-gray);
    color: var(--text-light);
    padding: 3rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(248, 249, 250, 0.1);
}

.footer-about {
    text-align: left;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-about h3,
.footer-section h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.footer-description {
    color: rgba(248, 249, 250, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links,
.footer-contact-list,
.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(248, 249, 250, 0.8);
    font-size: 0.95rem;
}

.footer-contact-list svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-contact-list a {
    color: rgba(248, 249, 250, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--primary-yellow);
}

.footer-hours li {
    color: rgba(248, 249, 250, 0.8);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.hours-highlight {
    color: var(--primary-yellow);
    font-weight: 600;
    font-size: 1.05rem;
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(248, 249, 250, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-yellow);
    color: var(--black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--yellow-dark);
    transform: translateY(-5px);
}

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

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .logo-img {
        height: 50px;
    }

    .hero-cta-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-booking-section {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Container padding */
    .container {
        padding: 0 1.25rem;
    }

    /* Hero */
    .hero {
        background-attachment: scroll;
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .hero-booking-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

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

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .badge {
        justify-content: center;
    }

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

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 2rem 0;
        gap: 0.75rem;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-link {
        width: 85%;
        margin: 0 auto;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .nav-phone,
    .nav-book {
        width: 85%;
        margin: 0 auto;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    /* Sections */
    .coverage-section,
    .features-section,
    .services-grid-section,
    .contact-section {
        padding: 3rem 0;
    }
    
    .services-grid-section {
        background-attachment: scroll;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .section-intro {
        font-size: 1rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }

    /* Scroll to Top */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 90px 0 30px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .cta-box {
        padding: 1.5rem 1.5rem;
    }

    .cta-icon {
        width: 24px;
        height: 24px;
    }

    .cta-title {
        font-size: 1.1rem;
    }

    .cta-text {
        font-size: 0.875rem;
    }

    .hero-booking-form {
        padding: 1.25rem;
    }

    .hero-booking-form input,
    .hero-booking-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
        border-width: 2px;
    }

    .hero-call-box {
        padding: 1.5rem;
    }

    .call-box-number {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .phone-icon-pulse {
        width: 40px;
        height: 40px;
    }

    .service-box-icon {
        width: 60px;
        height: 60px;
    }

    .service-box-icon svg {
        width: 32px;
        height: 32px;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

    .logo-img {
        height: 45px;
    }

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

    .footer-logo-img {
        height: 40px;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-box {
        padding: 1.5rem;
    }

    .service-box h3 {
        font-size: 1.125rem;
    }

    .service-box p {
        font-size: 0.9rem;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 0.625rem 1rem;
    }

    .badge svg {
        width: 20px;
        height: 20px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .container {
        padding: 0 0.875rem;
    }

    .hero-title {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .hero-booking-form,
    .service-box {
        padding: 1rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 90px 0 30px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .coverage-section,
    .features-section,
    .services-grid-section,
    .contact-section {
        padding: 2.5rem 0;
    }

    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem;
        gap: 0.5rem;
    }
}

/* Ensure minimum touch targets (44x44px) */
@media (pointer: coarse) {
    .btn,
    .nav-link,
    .info-link,
    input[type="checkbox"],
    .hamburger {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        padding: 0.75rem 0.5rem;
    }

    .location {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .sticky-call-btn,
    .scroll-top {
        display: none;
    }

    .hero {
        background: var(--primary-color);
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        font-size: 12pt;
    }
}

/* ========================================
   Highlight Animation for Book Now
   ======================================== */
@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(255, 193, 7, 0.3);
        transform: scale(1.01);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
        transform: scale(1);
    }
}

.highlight-pulse {
    animation: highlightPulse 1.5s ease-in-out 2;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

