/* ===================================
   Des Peres Plumbing Pros - Main Stylesheet
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Professional Plumbing Theme */
    --primary-blue: #0c4a8a;
    --primary-blue-dark: #083459;
    --primary-blue-light: #1a5fa3;
    --accent-orange: #ff6b35;
    --accent-orange-dark: #e85a2b;
    --accent-red: #d32f2f;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    
    /* Status Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue-dark);
}

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

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

ul {
    list-style: none;
}

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

/* Section Spacing */
section {
    padding: 80px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    color: var(--primary-blue-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-white:hover {
    background-color: var(--light-gray);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 32px;
    color: var(--accent-orange);
}

.logo-text {
    font-size: 16px;
    line-height: 1.3;
    color: var(--primary-blue);
    font-weight: 500;
}

.logo-text strong {
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-blue-dark);
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-gray);
    padding: 8px 0;
    position: relative;
}

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

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

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

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-blue-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    background-image: 
        linear-gradient(135deg, rgba(12, 74, 138, 0.95) 0%, rgba(26, 95, 163, 0.9) 100%),
        url('https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 74, 138, 0.92) 0%, rgba(26, 95, 163, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #ffc107;
}

.hero-title {
    font-size: 58px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
    opacity: 0.95;
}

.hero-description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.9;
}

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

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    font-size: 32px;
    color: var(--accent-orange);
}

.hero-feature span {
    color: var(--white);
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

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

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

.about-content {
    padding-right: 20px;
}

.about-text {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 5px;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.about-image-badge i {
    font-size: 32px;
    color: var(--success);
}

.about-image-badge span {
    font-weight: 600;
    color: var(--primary-blue-dark);
    font-size: 15px;
}

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

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

.service-card {
    background-color: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange) 0%, var(--primary-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue-dark);
    font-weight: 700;
}

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

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
}

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

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--white);
}

.services-cta h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-us {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.feature-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-blue-dark);
    font-weight: 700;
}

.feature-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray);
}

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

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

.testimonial-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

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

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    color: var(--primary-blue-dark);
    font-size: 16px;
    margin-bottom: 3px;
}

.author-location {
    font-size: 13px;
    color: var(--gray);
}

.testimonials-footer {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 12px;
}

.rating-summary {
    font-size: 18px;
    color: var(--dark-gray);
}

.rating-stars {
    display: inline-flex;
    gap: 5px;
    margin-right: 10px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 20px;
}

/* ===================================
   Areas We Serve Section
   =================================== */
.areas {
    background-color: var(--white);
}

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

.areas-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.city-item:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.city-item i {
    color: var(--accent-orange);
    font-size: 14px;
}

.city-item:hover i {
    color: var(--white);
}

.city-item span {
    font-weight: 600;
    font-size: 14px;
}

.areas-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

.phone-link {
    color: var(--primary-blue);
    font-weight: 700;
}

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

.areas-map {
    position: sticky;
    top: 100px;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
}

.map-info {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.map-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-info p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background-color: var(--light-gray);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue-dark);
    font-family: var(--font-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-orange);
}

.faq-question i {
    font-size: 14px;
    color: var(--accent-orange);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    color: var(--white);
}

.faq-cta h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    padding: 60px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-text p {
    color: var(--white);
    font-size: 18px;
    opacity: 0.95;
}

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

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

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

.footer-logo i {
    font-size: 32px;
    color: var(--accent-orange);
}

.footer-logo span {
    font-size: 16px;
    line-height: 1.3;
    color: var(--white);
    font-weight: 500;
}

.footer-logo strong {
    font-weight: 800;
    font-size: 18px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 16px;
    color: var(--white);
}

.footer-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-orange);
    font-size: 16px;
    margin-top: 2px;
}

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

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

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

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-tags {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: var(--accent-orange-dark);
    transform: translateY(-5px);
}

.scroll-to-top.visible {
    display: flex;
}

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

@media (max-width: 992px) {
    /* Header */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 30px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-right: 0;
    }
    
    /* Section Title */
    .section-title {
        font-size: 32px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Areas */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-map {
        position: static;
    }
    
    /* CTA Banner */
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cities */
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* CTA Text */
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Section Spacing */
    section {
        padding: 60px 0;
    }
    
    /* Header */
    .logo i {
        font-size: 28px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .logo-text strong {
        font-size: 16px;
    }
    
    .header-cta .btn {
        padding: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header-btn-text {
        display: none;
    }
    
    /* Ensure icon is centered and properly sized */
    .header-cta .btn i {
        margin: 0;
        font-size: 16px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 24px;
    }
    
    /* Cards */
    .service-card,
    .feature-card,
    .testimonial-card {
        padding: 25px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}