/* ===================================
   ATL Junk Hero - Professional & Modern
   =================================== */

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

:root {
    --primary: #FF6B35;
    --primary-dark: #e55a28;
    --secondary: #FFD700;
    --accent: #e31b23;
    --dark: #1a1a1a;
    --gray: #4a4a4a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #FF6B35 0%, #ff8a5a 100%);
    --gradient-2: linear-gradient(135deg, #e31b23 0%, #FF6B35 100%);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

/* ===================================
   Top Bar
   =================================== */

.top-bar {
    background: var(--gradient-2);
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 30px;
    font-weight: 500;
}

.phone-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.phone-link:hover {
    color: var(--white);
}

/* ===================================
   Header
   =================================== */

.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    position: relative;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img:hover {
    border-color: var(--secondary);
    animation: logoGlow 0.3s ease;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
    50% { filter: drop-shadow(0 0 20px var(--secondary)) drop-shadow(0 0 40px var(--primary)); }
}

.logo img {
    height: 90px;
    width: 90px;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    border: 4px solid var(--primary);
    background: var(--primary);
    padding: 8px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 15px;
    position: relative;
}

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

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

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

.cta-button {
    background: var(--gradient-1);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    padding: 90px 0 70px;
    background: linear-gradient(135deg, #FFF5F0 0%, #ffffff 100%);
}

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

.hero-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features .feature {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-features .feature:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 38px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-2);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

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

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* ===================================
   Services Listing Section
   =================================== */

.services-listing {
    padding: 60px 0;
    background: var(--white);
}

.services-listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    display: block;
    text-decoration: none;
}

.service-name:hover {
    background: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: var(--primary);
}

/* ===================================
   Stats Section
   =================================== */

.stats {
    background: var(--gradient-2);
    color: var(--white);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
}

/* ===================================
   Services Section
   =================================== */

.services {
    padding: 90px 0;
    background: var(--white);
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--dark);
}

.section-header p {
    font-size: 19px;
    color: var(--gray);
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    font-size: 56px;
    margin-bottom: 22px;
    display: inline-block;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   Process Section
   =================================== */

.process {
    padding: 90px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 22px;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.step h3 {
    font-size: 21px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
}

.step p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   Pricing Section
   =================================== */

.pricing {
    padding: 90px 0;
    background: var(--white);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.pricing-card {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    padding: 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    margin-bottom: 35px;
}

.special-badge {
    background: rgba(255, 255, 255, 0.25);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.discount {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.pricing-card p {
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 600;
}

.terms {
    font-size: 15px !important;
    opacity: 0.9;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    font-size: 16px;
    font-weight: 600;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

.feature-item:hover {
    background: white;
    transform: translateX(5px);
}

.pricing-right h3 {
    font-size: 32px;
    margin-bottom: 22px;
    color: var(--dark);
    font-weight: 800;
}

.pricing-right p {
    color: var(--gray);
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.truck-info {
    margin-bottom: 32px;
}

.truck-info img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    margin-bottom: 22px;
}

.truck-specs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.spec {
    background: var(--gradient-1);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: 90px 0;
    background: var(--light-gray);
}

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

.about h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: var(--dark);
    font-weight: 800;
}

.about p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 22px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    padding: 18px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.about-feature .icon {
    font-size: 28px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    width: 100%;
}

/* ===================================
   Testimonials
   =================================== */

.testimonials {
    padding: 90px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 38px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.stars {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--secondary);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 22px;
}

.author {
    font-weight: 700;
    color: var(--dark);
    font-size: 15px;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: var(--gradient-2);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 22px;
    font-weight: 800;
}

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

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-size: 17px;
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    font-size: 17px;
}

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

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    margin-bottom: 45px;
}

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

.footer-areas h4 {
    font-size: 19px;
    margin-bottom: 22px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.footer-col:first-child {
    position: relative;
}

.footer-logo {
    height: 140px;
    width: 140px;
    object-fit: contain;
    border-radius: 50%;
    margin-bottom: 18px;
    filter: brightness(1.1);
    border: 5px solid var(--primary);
    background: var(--primary);
    padding: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.footer-logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 20px var(--secondary));
    animation: logoGlow 0.3s ease;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 19px;
    margin-bottom: 22px;
    font-weight: 700;
    color: var(--primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px 20px;
    justify-items: start;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: var(--transition);
    padding: 4px 0;
    white-space: nowrap;
}

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

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-links {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 8px 15px;
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 15px;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--light);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumbs span {
    color: var(--text);
    opacity: 0.7;
}

/* Service Areas Grid */
.service-areas-section {
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.area-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.area-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.area-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .area-card {
        padding: 25px 15px;
    }
    
    .area-icon {
        font-size: 40px;
    }
    
    .area-card h3 {
        font-size: 18px;
    }
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 28px;
}

.social-links a {
    transition: var(--transition);
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.85;
    font-size: 14px;
}

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

@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 90px;
        width: 90px;
    }

    .footer-logo {
        height: 110px;
        width: 110px;
    }

    .top-info {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .services-listing-grid,
    .process-steps,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 350px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 32px;
    }

    .service-subtitle {
        font-size: 18px;
    }

    .service-main h2 {
        font-size: 28px;
    }

    .service-main h3 {
        font-size: 24px;
    }

    .service-cta-box {
        padding: 30px 20px;
    }

    .service-cta-box h3 {
        font-size: 26px;
    }

    .service-content .testimonials-section {
        grid-template-columns: 1fr;
    }

    .service-images {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Service Pages
   =================================== */

.breadcrumbs {
    padding: 20px 0;
    background: var(--light-gray);
    font-size: 14px;
}

.breadcrumbs nav {
    color: var(--gray);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--gray);
}

.service-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #FFF5F0 0%, #ffffff 100%);
    text-align: center;
}

.service-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-content {
    padding: 60px 0;
    background: var(--white);
}

.service-main {
    max-width: 900px;
    margin: 0 auto;
}

.service-main h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.service-main h2:first-of-type {
    margin-top: 0;
}

.service-main h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    margin-top: 35px;
}

.service-main p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-main ul,
.service-main ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.service-main li {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-main li strong {
    color: var(--dark);
    font-weight: 700;
}

.service-main a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-main a:hover {
    text-decoration: underline;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 18px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.service-features li:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.service-cta-box {
    background: var(--gradient-1);
    color: var(--white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 50px;
    box-shadow: var(--shadow-xl);
}

.service-cta-box h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 16px;
    margin-top: 0;
}

.service-cta-box p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
}

.service-cta-box a {
    color: var(--white);
}

.service-cta-box .btn {
    font-size: 18px;
    padding: 20px 40px;
    color: var(--white) !important;
    background: var(--gradient-2);
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.faq-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
}

/* Testimonials Section on Service Pages */
.service-content .testimonials-section {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.image-placeholder {
    background: var(--light-gray);
    border: 2px dashed var(--primary);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder p {
    color: var(--gray);
    font-style: italic;
    margin: 0;
}

.service-main h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

/* ===================================
   Smooth Scrolling
   =================================== */

html {
    scroll-behavior: smooth;
}

/* Accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}
