:root {
    --primary-green: #7FFF00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --charcoal: #1a1a1a;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --green-shadow: rgba(127, 255, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}

.logo-team {
    color: var(--primary-green);
    text-shadow: 0 0 20px var(--green-shadow);
    font-style: italic;
}

.logo-auto {
    color: var(--white);
    font-style: italic;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

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

.phone-btn {
    background: var(--primary-green);
    color: var(--dark-bg);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--green-shadow);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--green-shadow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--darker-bg);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/shop-floor-wide.webp') center/cover;
    opacity: 0.3;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(127, 255, 0, 0.1);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--green-shadow);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(127, 255, 0, 0);
    }
}

.hero-title {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 900;
}

.hero-team {
    display: block;
    color: var(--primary-green);
    text-shadow: 0 0 30px var(--green-shadow);
}

.hero-auto {
    display: block;
    color: var(--white);
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px var(--green-shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--green-shadow);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.hero-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.95rem;
}

.hero-info-item svg {
    color: var(--primary-green);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-scroll svg {
    color: var(--primary-green);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--dark-bg);
    border-left: 4px solid var(--primary-green);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: 900;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* About Section */
.about {
    background: var(--light-gray);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px var(--shadow);
}

.feature-icon {
    background: rgba(127, 255, 0, 0.1);
    padding: 1rem;
    border-radius: 12px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
}

.about-images {
    display: grid;
    gap: 1rem;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-main:hover img {
    transform: scale(1.05);
}

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

.about-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.about-image-grid img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background: var(--darker-bg);
    color: var(--white);
}

.services .section-label {
    background: rgba(127, 255, 0, 0.1);
}

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

.services-header .section-title {
    color: var(--white);
}

.services-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
    color: #aaa;
}

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

.service-card {
    background: var(--charcoal);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--green-shadow);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(127, 255, 0, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.service-card p {
    color: #aaa;
    line-height: 1.6;
}

/* Team Section */
.team {
    background: var(--light-gray);
}

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

.team-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.team-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-info p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-certifications {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
}

.team-certifications img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 600;
}

/* Reviews Section */
.reviews {
    background: var(--white);
}

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

.reviews-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.reviews-carousel-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Carousel Styles */
.reviews-carousel {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 60px;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.review-card {
    display: none;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    min-height: 280px;
    animation: fadeIn 0.5s ease-in-out;
}

.review-card.active {
    display: block;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: rgba(127, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    flex-shrink: 0;
}

.review-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.review-stars {
    color: #FBBC05;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.google-icon {
    margin-left: auto;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-date {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--dark-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--green-shadow);
    z-index: 10;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px var(--green-shadow);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

.indicator:hover {
    transform: scale(1.1);
}

/* Google Reviews Widget */
.reviews-cta {
    text-align: center;
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.reviews-header-widget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ddd;
}

.reviews-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviews-rating {
    text-align: right;
}

.stars {
    color: #FBBC05;
    font-size: 1.3rem;
    letter-spacing: 3px;
}

.rating-text {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 600;
    margin-top: 0.3rem;
}

/* Facility Section */
.facility {
    background: var(--white);
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.facility-content h2 {
    margin-bottom: 1.5rem;
}

.facility-content p {
    line-height: 1.8;
    margin-bottom: 2rem;
}

.facility-list {
    list-style: none;
}

.facility-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.facility-list li:hover {
    background: rgba(127, 255, 0, 0.1);
    transform: translateX(10px);
}

.facility-list svg {
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.facility-images {
    display: grid;
    gap: 1.5rem;
}

.facility-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.facility-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-image-main:hover img {
    transform: scale(1.05);
}

.facility-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.facility-image-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.facility-image-grid img:hover {
    transform: scale(1.05);
}

.facility-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.facility-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
    color: var(--white);
}

.contact .section-label {
    background: rgba(127, 255, 0, 0.1);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: #aaa;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--charcoal);
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px var(--green-shadow);
}

.contact-icon {
    background: rgba(127, 255, 0, 0.1);
    padding: 1rem;
    border-radius: 12px;
    color: var(--primary-green);
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-text p,
.contact-text a {
    color: #aaa;
    line-height: 1.8;
}

.contact-text a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-green);
}

.contact-text strong {
    color: var(--white);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    box-shadow: 0 10px 30px var(--shadow);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 2px solid var(--primary-green);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-green);
    color: var(--dark-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--green-shadow);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--green-shadow);
}

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

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

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Impact', 'Arial Black', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}

.footer-brand p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--primary-green);
    font-weight: 600;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--charcoal);
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .container {
        padding: 0 24px;
    }
    
    .about-grid,
    .team-content,
    .facility-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    /* Carousel mobile adjustments */
    .reviews-carousel {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .review-card {
        padding: 2rem;
        min-height: 320px;
    }
    
    .reviews-header-widget {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .reviews-rating {
        text-align: center;
    }
    
    /* Better mobile spacing */
    section {
        padding: 4rem 0;
    }
    
    .service-card,
    .feature-item,
    .contact-item {
        padding: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-image-grid,
    .facility-image-grid {
        grid-template-columns: 1fr;
    }
    
    /* Carousel extra small screens */
    .reviews-carousel {
        padding: 0 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        opacity: 0.9;
    }
    
    .carousel-btn.prev {
        left: -5px;
    }
    
    .carousel-btn.next {
        right: -5px;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .review-text {
        font-size: 1rem;
    }
    
    .review-avatar {
        width: 50px;
        height: 50px;
    }
    
    .review-header {
        flex-wrap: wrap;
    }
    
    .google-icon {
        margin-left: 0;
    }
    
    .reviews-cta {
        padding: 2rem 1.5rem;
    }
    
    /* Better text spacing on mobile */
    .hero-content {
        padding: 0 20px;
    }
    
    .about-text p,
    .facility-content p {
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
    
    .service-card h3,
    .feature-item h3 {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    /* Fix tight spacing */
    .feature-item,
    .service-card,
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Smooth Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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