:root {
    --primary-color: #1B5E20;
    --secondary-color: #4CAF50;
    --accent-color: #81C784;
    --light-color: #f8f9fa;
    --dark-color: #1B3A1F;
    --white: #ffffff;
    --gray: #6c757d;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1em;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden !important;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden !important;
    background-color: var(--white);
    max-width: 100vw;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* Ensure all images are responsive */
img.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-link.active {
    color: var(--secondary-color) !important;
}

.btn-order {
    background: var(--secondary-color);
    color: var(--dark-color) !important;
    border: none;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-order:hover {
    background: var(--accent-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Mobile Navbar Toggle */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    margin-top: 1rem;
}

@media (min-width: 992px) {
    .navbar-collapse {
        margin-top: 0;
    }
}

/* Hero Section */
.hero-section {
    height: 75vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    color: var(--dark-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-content {
    padding-right: 2rem;
}

.about-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-image {
    margin-bottom: 2rem;
}

.about-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.stat-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-color);
}

/* Reviews Grid Responsive */
#reviews-container {
    display: flex;
    flex-wrap: wrap;
}

#reviews-container > .col-md-6,
#reviews-container > .col-lg-4 {
    margin-bottom: 1.5rem;
}

/* Google Badge Styling */
.google-badge {
    max-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    gap: 0.875rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.google-badge .bi-google {
    font-size: 1.75rem;
    color: #4285F4;
    filter: drop-shadow(0 1px 3px rgba(66, 133, 244, 0.3));
}

.badge-content {
    text-align: center;
    flex: 1;
}

.badge-label {
    font-size: 0.625rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.badge-rating {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0.125rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.badge-rating #badge-rating {
    background: linear-gradient(135deg, #1B5E20 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-rating .stars {
    color: #FFB800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    filter: drop-shadow(0 1px 2px rgba(255, 184, 0, 0.3));
}

.badge-count {
    font-size: 0.65rem;
    color: #666;
    font-weight: 500;
}

.badge-count span {
    font-weight: 700;
    color: #333;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-name {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 1rem;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Location Section - Bento Box Design */
.location-section {
    background: var(--light-color);
}

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

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 300px 300px;
    gap: 1rem;
    margin-top: 2rem;
}

.bento-box {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Map Box - Large */
.bento-map {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    padding: 0;
}

.bento-map iframe {
    width: 100%;
    height: 100%;
}

/* Address Box */
.bento-address {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

/* Hours Box */
.bento-hours {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    padding: 1.5rem;
}

/* Contact Box */
.bento-contact {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

/* Bento Box Content Styles */
.bento-icon {
    width: 45px;
    height: 45px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.bento-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

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

.bento-box p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bento-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.bento-box a:hover {
    color: var(--secondary-color);
}

.bento-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Hours Bento */
.hours-bento {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hours-bento {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.hours-bento::-webkit-scrollbar {
    display: none;
}

.hours-row-bento {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.8rem;
}

.hours-row-bento:last-child {
    border-bottom: none;
}

.hours-row-bento span:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-row-bento span:last-child {
    color: var(--text-color);
    font-size: 0.75rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.info-content p {
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
}

.info-content a:hover {
    color: var(--secondary-color);
}

.hours-list {
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-row .time {
    color: var(--gray);
}

.map-container {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* App Banner Section */
.app-banner-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
}

.app-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.app-banner-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-button-img {
    height: 50px;
    transition: var(--transition);
}

.app-button:hover .app-button-img {
    transform: scale(1.05);
}

.app-banner-image img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* Footer Section */
.footer-section {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-widget-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-hours {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

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

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

.social-link:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text a {
    color: var(--secondary-color);
}

.copyright-text a:hover {
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

/* Responsive Design - Mobile First Approach */

/* Tablet and below (991px) */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        width: 35px;
        height: 35px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
}

/* Mobile and below (768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .navbar-logo {
        width: 32px;
        height: 32px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem;
    }
    
    .btn-order {
        padding: 0.5rem 1.2rem !important;
        font-size: 0.9rem;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        height: 65vh;
        min-height: 450px;
        max-height: 600px;
        background-attachment: scroll;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* About Section Mobile */
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .stat-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Testimonials Mobile */
    #reviews-container {
        flex-direction: column;
    }
    
    #reviews-container > .col-md-6,
    #reviews-container > .col-lg-4 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-name {
        font-size: 0.95rem;
    }
    
    .testimonial-date {
        font-size: 0.8rem;
    }
    
    .google-badge {
        max-width: 100%;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .badge-rating {
        font-size: 1.1rem;
    }
    
    /* Bento Grid Responsive */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1rem;
    }

    .bento-box {
        padding: 1.5rem;
    }
    
    .bento-box h3 {
        font-size: 1.1rem;
    }
    
    .bento-box p {
        font-size: 0.9rem;
    }

    .bento-map {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        height: 300px;
        padding: 0;
    }

    .bento-address {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .bento-hours {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        padding: 1.25rem;
    }

    .bento-contact {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .bento-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .bento-icon i {
        font-size: 1.25rem;
    }
    
    .hours-row-bento {
        font-size: 0.75rem;
        padding: 0.35rem 0;
    }
    
    /* App Banner Mobile */
    .app-banner {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .app-banner-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .app-banner-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .app-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .app-button-img {
        height: 45px;
    }
    
    .app-banner-image img {
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-section {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-widget-title {
        font-size: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
    }
    
    .footer-links {
        font-size: 0.9rem;
    }
    
    .footer-contact {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    /* Navbar Small Mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 0.95rem;
        gap: 0.4rem;
    }
    
    .navbar-logo {
        width: 30px;
        height: 30px;
    }
    
    .nav-link {
        padding: 0.6rem 0.875rem !important;
        font-size: 0.9rem;
    }
    
    /* Hero Small Mobile */
    .hero-section {
        height: 55vh;
        min-height: 400px;
        max-height: 500px;
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-buttons .btn {
        padding: 0.7rem 1.25rem;
        font-size: 0.95rem;
    }
    
    /* About Small Mobile */
    .about-text p {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Testimonials Small Mobile */
    #reviews-container > .col-md-6,
    #reviews-container > .col-lg-4 {
        margin-bottom: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-rating {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .google-badge {
        padding: 0.625rem 0.875rem;
        gap: 0.625rem;
    }
    
    .badge-label {
        font-size: 0.6rem;
    }
    
    .badge-rating {
        font-size: 1rem;
    }
    
    .badge-count {
        font-size: 0.6rem;
    }
    
    /* Bento Grid Small Mobile */
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .bento-box {
        padding: 1.25rem;
    }
    
    .bento-box h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .bento-box p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .bento-map,
    .bento-address,
    .bento-hours,
    .bento-contact {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-map {
        height: 250px;
    }
    
    .bento-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem;
    }
    
    .bento-icon i {
        font-size: 1.1rem;
    }
    
    .hours-row-bento {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
    
    /* App Banner Small Mobile */
    .app-banner {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .app-banner-title {
        font-size: 1.75rem;
    }
    
    .app-banner-text {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .app-button-img {
        height: 40px;
    }
    
    /* Footer Small Mobile */
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-widget-title {
        font-size: 0.95rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-links {
        font-size: 0.85rem;
    }
    
    .footer-contact {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Back to Top Small Mobile */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.25rem;
    }
    
    /* Container padding for small screens */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.35rem;
    }
    
    .bento-map {
        height: 220px;
    }
    
    .app-banner-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .google-badge {
        padding: 0.5rem 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .badge-content {
        width: 100%;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .app-button,
    .social-link,
    .back-to-top,
    .bento-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .testimonial-card,
    .stat-card,
    .bento-box {
        transition: transform 0.2s ease;
    }
    
    .testimonial-card:active,
    .stat-card:active {
        transform: scale(0.98);
    }
    
    /* Improve tap targets */
    a, button {
        -webkit-tap-highlight-color: rgba(76, 175, 80, 0.2);
    }
}

/* Prevent text size adjustment on iOS */
@media screen and (max-width: 768px) {
    html {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    input, textarea, select {
        font-size: 16px !important;
    }
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
}
