/* =====================================================
   Good Choice Pro - Modern Website Styles
   ===================================================== */

/* =====================================================
   CSS Variables & Base Styles
   ===================================================== */
:root {
    --primary-red: #f13223;
    --dark-red: #c92818;
    --light-red: #ff5144;
    --dark-blue: #123876;
    --dark-gray: #2c3e50;
    --medium-gray: #7f8c8d;
    --light-gray: #ecf0f1;
    --white: #ffffff;
    --black: #1a1a1a;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text h1 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0;
}

.text-red {
    color: var(--primary-red);
}

.tagline {
    font-size: 11px;
    color: var(--medium-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-cta {
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: var(--transition);
}

/* =====================================================
   Hero Section with Slider and Centered Overlay
   ===================================================== */
.hero-with-slider {
    position: relative;
    min-height: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
}

#topSliderWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-top: solid 5px var(--primary-red);
    background: var(--white);
}

#topslider_hype_container {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
}

/* Content Overlay - White Box Centered on Slider */
.hero-content-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--dark-gray);
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-content-overlay .hero-title {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--dark-gray);
}

.hero-content-overlay .hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--dark-gray);
    opacity: 0.9;
}

.hero-content-overlay .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Button Overrides for White Overlay */
.hero-content-overlay .btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.hero-content-overlay .btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    color: var(--white);
}

.hero-content-overlay .btn-secondary {
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.hero-content-overlay .btn-secondary:hover {
    background: var(--dark-gray);
    color: var(--white);
    border-color: var(--dark-gray);
}

.hero-content-overlay .hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-content-overlay .feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-gray);
}

.hero-content-overlay .feature-badge i {
    font-size: 22px;
    color: var(--primary-red);
}

.hero-with-slider .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.hero-with-slider .scroll-indicator i {
    font-size: 30px;
    color: var(--dark-gray);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Original Hero Section (backup - not used but kept for reference) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary-slider:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background: var(--white);
    color: var(--primary-red);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-red);
}

.hero-features {
    display: flex;
    gap: 40px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.feature-badge i {
    font-size: 24px;
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 30px;
    color: var(--white);
}

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

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

/* =====================================================
   Stats Section
   ===================================================== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: var(--light-gray);
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--medium-gray);
    font-weight: 500;
}

/* =====================================================
   Services Section
   ===================================================== */
.services-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url('../assets/images/remodeled-living-room-1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 35px;
    background: var(--white);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.services-content {
    display: none;
}

.services-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 48px;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary-red);
    font-size: 14px;
}

/* =====================================================
   About Section
   ===================================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    gap: 30px;
}

.about-feature {
    display: flex;
    gap: 20px;
}

.feature-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.feature-content h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.about-images {
    display: flex;
    gap: 20px;
}

.about-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.05);
    box-shadow: var(--box-shadow-hover);
}

/* =====================================================
   Service Areas
   ===================================================== */
/* =====================================================
   Service Area Map Section
   ===================================================== */
.service-area-map {
    padding: 80px 0;
    background: var(--white);
}

.service-area-map .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.service-area-map .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-frame {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.map-frame iframe {
    display: block;
    width: 100%;
}

.service-areas-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-gray);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
}

.area-badge:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

.area-badge i {
    color: var(--primary-red);
    font-size: 12px;
}

.area-badge:hover i {
    color: var(--white);
}

/* =====================================================
   Testimonials Section
   ===================================================== */
.testimonials-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(245, 245, 245, 0.5), rgba(245, 245, 245, 0.5)), url('../assets/images/remodeled-kitchen-2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.rating-display i {
    color: #ffc107;
    font-size: 24px;
}

.rating-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-left: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-source {
    font-size: 12px;
    color: var(--medium-gray);
    font-weight: 600;
}

.testimonial-text {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-footer {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.testimonial-service {
    font-size: 14px;
    color: var(--primary-red);
    font-weight: 500;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   Contact Section
   ===================================================== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-item-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.contact-details h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--primary-red);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: var(--dark-red);
}

.contact-details p {
    color: var(--medium-gray);
    font-size: 14px;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.footer-logo h3 {
    font-size: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 20px;
}

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

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

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

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

/* =====================================================
   Responsive Design
   ===================================================== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Carousel for Services */
    @media (max-width: 768px) {
        .services-content {
            position: relative;
            padding-bottom: 60px;
        }
        
        .services-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding: 20px 10px 30px;
            margin: 0 -20px;
            scrollbar-width: none; /* Firefox */
        }
        
        .services-grid::-webkit-scrollbar {
            display: none; /* Chrome, Safari */
        }
        
        .service-card {
            min-width: 85%;
            max-width: 85%;
            scroll-snap-align: center;
            flex-shrink: 0;
        }
        
        /* Carousel Navigation Arrows */
        .services-carousel-nav {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .services-carousel-nav button {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(241, 50, 35, 0.3);
        }
        
        .services-carousel-nav button:active {
            transform: scale(0.95);
        }
        
        /* Carousel Dots */
        .services-carousel-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 15px;
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .services-carousel-dots .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(241, 50, 35, 0.3);
            transition: all 0.3s ease;
        }
        
        .services-carousel-dots .dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--primary-red);
        }
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-with-slider {
        min-height: 500px;
        height: 500px;
    }
    
    #topSliderWrapper {
        border-top: solid 3px var(--primary-red);
    }
    
    .hero-content-overlay {
        margin: 0 15px;
        padding: 30px 20px;
    }
    
    .hero-content-overlay .hero-title {
        font-size: 28px;
    }
    
    .hero-content-overlay .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .hero-content-overlay .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .hero-content-overlay .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
    }
    
    .hero-content-overlay .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-tabs {
        flex-direction: column;
    }
    
    /* Mobile Carousel for Testimonials */
    @media (max-width: 768px) {
        .testimonials-section {
            position: relative;
            padding-bottom: 100px;
        }
        
        .testimonials-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 20px;
            padding: 20px 10px 30px;
            margin: 0 -20px;
            scrollbar-width: none;
            grid-template-columns: none;
        }
        
        .testimonials-grid::-webkit-scrollbar {
            display: none;
        }
        
        .testimonial-card {
            min-width: 85%;
            max-width: 85%;
            scroll-snap-align: center;
            flex-shrink: 0;
        }
        
        /* Testimonials Carousel Navigation */
        .testimonials-carousel-nav {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .testimonials-carousel-nav button {
            background: var(--primary-red);
            color: var(--white);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
            transition: var(--transition);
            box-shadow: 0 4px 10px rgba(241, 50, 35, 0.3);
        }
        
        .testimonials-carousel-nav button:active {
            transform: scale(0.95);
        }
        
        /* Testimonials Carousel Dots */
        .testimonials-carousel-dots {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .testimonials-carousel-dots .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(241, 50, 35, 0.3);
            transition: all 0.3s ease;
        }
        
        .testimonials-carousel-dots .dot.active {
            width: 24px;
            border-radius: 4px;
            background: var(--primary-red);
        }
    }
    
    /* Hide carousel controls on desktop */
    @media (min-width: 769px) {
        .testimonials-carousel-nav,
        .testimonials-carousel-dots {
            display: none;
        }
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* Mobile responsive for service area map */
@media (max-width: 768px) {
    .service-area-map {
        padding: 60px 0;
    }
    
    .map-frame iframe {
        height: 350px;
    }
    
    .service-areas-compact {
        gap: 8px;
    }
    
    .area-badge {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* =====================================================
   Scroll Animations - Fade In/Out with Slide
   ===================================================== */

/* Elements start hidden and slide from below */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When element is visible (scrolling down) */
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* When element exits viewport (scrolling down) - slide up and fade out */
.scroll-animate.exit-top {
    opacity: 0;
    transform: translateY(-50px);
}

/* Different animation delays for staggered effect */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate:nth-child(5) { transition-delay: 0.5s; }
.scroll-animate:nth-child(6) { transition-delay: 0.6s; }

/* Specific elements to animate - INDIVIDUAL ITEMS ONLY */
.stat-item,
.service-card,
.about-feature,
.about-img,
.section-title,
.section-subtitle,
.about-text,
.testimonial-card,
.area-badge,
.cta-content,
.contact-info,
.contact-form,
.map-frame,
.service-areas-compact {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* When visible */
.stat-item.visible,
.service-card.visible,
.about-feature.visible,
.about-img.visible,
.section-title.visible,
.section-subtitle.visible,
.about-text.visible,
.testimonial-card.visible,
.area-badge.visible,
.cta-content.visible,
.contact-info.visible,
.contact-form.visible,
.map-frame.visible,
.service-areas-compact.visible {
    opacity: 1;
    transform: translateY(0);
}

/* When exiting top */
.stat-item.exit-top,
.service-card.exit-top,
.about-feature.exit-top,
.about-img.exit-top,
.section-title.exit-top,
.section-subtitle.exit-top,
.about-text.exit-top,
.testimonial-card.exit-top,
.area-badge.exit-top,
.cta-content.exit-top,
.contact-info.exit-top,
.contact-form.exit-top,
.map-frame.exit-top,
.service-areas-compact.exit-top {
    opacity: 0;
    transform: translateY(-50px);
}
