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

:root {
    /* Primary Colors - Professional Plumbing Theme */
    --primary-color: #0A4F85;
    --primary-dark: #083A63;
    --primary-light: #0E6BB5;
    --secondary-color: #E67E22;
    --secondary-dark: #D35400;
    
    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --border-color: #E1E8ED;
    
    /* Status Colors */
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --error-color: #E74C3C;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.highlight {
    color: var(--secondary-color);
}

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

.btn i {
    font-size: 18px;
}

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

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

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 20px 40px;
    font-size: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.btn-cta-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.btn-cta-phone {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

/* ===================================
   Header
   =================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

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

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

.logo strong {
    font-weight: 800;
}

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

.nav-link {
    padding: 10px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--light-bg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.call-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.call-btn i {
    font-size: 18px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 79, 133, 0.95), rgba(8, 58, 99, 0.95)), 
                url('https://images.unsplash.com/photo-1585704032915-c3400ca199e7?w=1600&h=900&fit=crop') center/cover;
    padding: 120px 0 100px;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.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: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

.hero-trust {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    text-align: center;
}

.stars {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 8px;
}

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

.trust-item p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 50px;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

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

.about-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

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

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

.image-badge span {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-color);
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

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

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.5rem;
}

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

.service-features {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

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

.services-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

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

.why-card {
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-card:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

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

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

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

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

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

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

.verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--success-color);
    font-weight: 600;
}

.verified i {
    font-size: 14px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

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

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 4px;
    font-size: 16px;
}

.author-info p {
    color: var(--text-light);
    font-size: 13px;
}

.testimonials-footer {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stars-large {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.stars-large i {
    font-size: 28px;
    color: #FFD700;
}

.rating-details p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   Areas Served Section
   =================================== */
.areas-served {
    padding: 100px 0;
    background: var(--white);
}

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

.areas-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.city-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: 8px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

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

.city-item i {
    color: var(--secondary-color);
    font-size: 16px;
}

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

.areas-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #FFF3E0;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.areas-note i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-top: 2px;
}

.areas-map {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 600px;
}

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

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--primary-color);
}

.map-overlay i {
    color: var(--secondary-color);
    font-size: 20px;
}

/* ===================================
   FAQs Section
   =================================== */
.faqs {
    padding: 100px 0;
    background: var(--light-bg);
}

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

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

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

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question i {
    font-size: 18px;
    color: var(--secondary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 30px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

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

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    font-size: 15px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-features i {
    color: var(--secondary-color);
    font-size: 18px;
}

.cta-action {
    text-align: center;
    flex-shrink: 0;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.9;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-about {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-rating span {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

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

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 2px;
}

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

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

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: 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: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

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

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

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

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

/* Tablets (Portrait) */
@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 30px;
    }
    
    /* Header */
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        padding: 30px 20px;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .call-btn span {
        display: none;
    }
    
    /* Hero */
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Why Choose */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Areas */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cities-list {
        grid-template-columns: 1fr;
    }
    
    /* CTA Banner */
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile Phones */
@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Header */
    .header-content {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 14px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .call-btn {
        padding: 10px 16px;
    }
    
    /* Hero */
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    /* Sections Padding */
    .about,
    .services,
    .why-choose,
    .testimonials,
    .areas-served,
    .faqs {
        padding: 60px 0;
    }
    
    /* About */
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 400px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Why Choose */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .rating-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    /* Areas */
    .areas-map {
        height: 400px;
    }
    
    /* FAQs */
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.95rem;
    }
    
    /* CTA */
    .cta-banner {
        padding: 60px 0;
    }
    
    .cta-text h2 {
        font-size: 1.75rem;
    }
    
    .cta-text p {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-cta {
        padding: 16px 30px;
        font-size: 18px;
        width: 100%;
    }
    
    .btn-cta-phone {
        font-size: 20px;
    }
    
    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px 15px;
    }
}
