/* ==========================================
   GO CARPET CLEANING - MODERN ENHANCED CSS
   Version: 2.1 - Dark Mode Fixed
   ========================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Brand Colors */
    --primary-teal: #1a5c5c;
    --primary-teal-dark: #0d3a3a;
    --primary-yellow: #f4c542;
    --primary-yellow-light: #ffd966;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f9f9f9;
    --light-gray: #e0e0e0;
    --gray: #999999;
    --dark-gray: #666666;
    --black: #1a1a1a;
    --lightyellow: #fafff1;

    --section-bg-white: #ffffff;
    --section-bg-alt: #f8f9fa;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a5c5c 0%, #2d7a7a 100%);
    --gradient-yellow: linear-gradient(135deg, #f4c542 0%, #ffd966 100%);
    --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.25);
    
    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --section-padding: 60px;
    --container-max: 1400px;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
    }
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.gradient-text {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffdd66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== CONTAINER ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========== SECTION BACKGROUNDS ========== */
section {
    background: var(--section-bg-white);
    transition: background-color 0.3s ease;
}

section:nth-child(even) {
    background: var(--section-bg-alt);
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-carpet-cleaning.jpg') !important;
}

.trust-bar {
    background: var(--gradient-primary) !important;
}

.cta {
    background: url('images/cta-carpet-background.jpg') !important;
}

/* ========== DARK MODE ========== */
[data-theme="dark"] {
    --section-bg-white: #1a1a1a;
    --section-bg-alt: #252525;
    --white: #1a1a1a;
    --off-white: #252525;
    --black: #ffffff;
    --dark-gray: #cccccc;
    --light-gray: #404040;
}

[data-theme="dark"] body {
    background: #1a1a1a;
    color: #e0e0e0;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6,
[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] span,
[data-theme="dark"] div:not(.btn):not(.badge):not(.trust-item):not(.hero-overlay):not(.cta-overlay):not(.hero-text):not(.cta-content) {
    color: #e0e0e0;
}

/* Keep WHITE text on colored backgrounds */
[data-theme="dark"] .trust-bar,
[data-theme="dark"] .trust-bar *,
[data-theme="dark"] .trust-item,
[data-theme="dark"] .trust-item *,
[data-theme="dark"] .hero-text,
[data-theme="dark"] .hero-text *,
[data-theme="dark"] .cta-content,
[data-theme="dark"] .cta-content *,
[data-theme="dark"] .hero-feature,
[data-theme="dark"] .hero-feature *,
[data-theme="dark"] .feature-card h3,
[data-theme="dark"] .why-choose h3 {
    color: white !important;
}

/* Keep WHITE icons on teal backgrounds */
[data-theme="dark"] .trust-item i,
[data-theme="dark"] .hero-feature i,
[data-theme="dark"] .cta-feature i,
[data-theme="dark"] .feature-icon i {
    color: white !important;
}

/* Navigation - make it more visible */
[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-link {
    color: #ffffff !important;
}

[data-theme="dark"] .nav-link:hover {
    color: var(--primary-yellow) !important;
}

[data-theme="dark"] a:not(.btn):not(.nav-link):not(.hero-text a):not(.cta-content a) {
    color: #90cdf4;
}

[data-theme="dark"] a:not(.btn):not(.hero-text a):not(.cta-content a):hover {
    color: var(--primary-yellow);
}

[data-theme="dark"] .nav-toggle span {
    background: #ffffff;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .gallery-item,
[data-theme="dark"] .area-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .info-box,
[data-theme="dark"] .bordered-box,
[data-theme="dark"] .bordered-box-thick,
[data-theme="dark"] .quick-check,
[data-theme="dark"] .coverage-stat,
[data-theme="dark"] .process-step {
    background: #252525;
    color: #e0e0e0;
}

[data-theme="dark"] .service-card h3,
[data-theme="dark"] .service-card p,
[data-theme="dark"] .service-card li,
[data-theme="dark"] .review-card p,
[data-theme="dark"] .area-card h3,
[data-theme="dark"] .area-card p,
[data-theme="dark"] .area-card li {
    color: #e0e0e0;
}

[data-theme="dark"] .glass-card {
    background: rgba(37, 37, 37, 0.95);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .glass-card h3,
[data-theme="dark"] .contact-form h3,
[data-theme="dark"] .info-card h3 {
    color: var(--primary-yellow);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: #2a2a2a;
    color: #e0e0e0;
    border-color: #404040;
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: #888;
}

[data-theme="dark"] .form-icon {
    color: #888;
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--primary-teal);
}

[data-theme="dark"] input:focus ~ .form-icon,
[data-theme="dark"] textarea:focus ~ .form-icon {
    color: var(--primary-teal);
}

[data-theme="dark"] .section-header h2,
[data-theme="dark"] .section-label {
    color: var(--primary-yellow);
}

[data-theme="dark"] .section-header p {
    color: #b0b0b0;
}

/* Feature cards - keep readable */
[data-theme="dark"] .feature-card {
    background: #252525;
}

[data-theme="dark"] .feature-card h3 {
    color: var(--primary-yellow);
}

[data-theme="dark"] .feature-card p {
    color: #b0b0b0;
}

[data-theme="dark"] .about-text h3,
[data-theme="dark"] .about-feature h4 {
    color: var(--primary-yellow);
}

[data-theme="dark"] .about-text p,
[data-theme="dark"] .about-feature p {
    color: #b0b0b0;
}

[data-theme="dark"] .city-tag {
    background: #2a2a2a;
    color: #e0e0e0;
    border: 1px solid #404040;
}

[data-theme="dark"] .city-tag:hover {
    background: var(--primary-teal);
    color: white;
}

[data-theme="dark"] .faq-question {
    background: #252525;
    color: #e0e0e0;
}

[data-theme="dark"] .faq-question:hover {
    background: #2a2a2a;
}

[data-theme="dark"] .faq-answer p {
    color: #b0b0b0;
}

[data-theme="dark"] .step-content h3 {
    color: var(--primary-yellow);
}

[data-theme="dark"] .step-content p {
    color: #b0b0b0;
}

[data-theme="dark"] .sidebar-box-gray {
    background: #252525;
    color: #e0e0e0;
}

[data-theme="dark"] .table-of-contents {
    background: #252525;
    border-color: #404040;
}

[data-theme="dark"] .table-of-contents a {
    color: #90cdf4;
}

[data-theme="dark"] .breadcrumb,
[data-theme="dark"] .blog-meta,
[data-theme="dark"] .article-meta,
[data-theme="dark"] .review-date {
    color: #888;
}

[data-theme="dark"] .breadcrumb a {
    color: #90cdf4;
}

[data-theme="dark"] .article-intro {
    background: #252525;
    border-left-color: var(--primary-yellow);
}

[data-theme="dark"] .article-title {
    color: white;
}

[data-theme="dark"] .heading-teal,
[data-theme="dark"] .heading-teal-spaced {
    color: var(--primary-yellow);
}

[data-theme="dark"] .promo-box-minimal {
    background: linear-gradient(to right, #1a3a3f, #1e4147);
    border: 2px solid #2a9da9;
    border-left: 6px solid var(--primary-yellow);
    color: #e0e0e0;
}

[data-theme="dark"] .promo-box-minimal strong:first-child {
    color: var(--primary-yellow);
}

[data-theme="dark"] .promo-box-minimal a {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
}

[data-theme="dark"] .promo-box-minimal a:hover {
    color: white;
    border-bottom-color: white;
}

/* Buttons - keep original colors for visibility */
[data-theme="dark"] .btn-primary,
[data-theme="dark"] .btn-yellow,
[data-theme="dark"] .btn-glass,
[data-theme="dark"] .btn-white,
[data-theme="dark"] .btn-outline {
    /* Keep original button colors - they work in both modes */
}

[data-theme="dark"] .reviewer-name {
    color: var(--primary-yellow);
}

[data-theme="dark"] .review-text {
    color: #b0b0b0;
}

[data-theme="dark"] .stat-number {
    color: var(--primary-yellow);
}

[data-theme="dark"] .rating-count,
[data-theme="dark"] .stat-label {
    color: #b0b0b0;
}

[data-theme="dark"] .service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

[data-theme="dark"] .footer {
    background: #0a0a0a !important;
    color: var(--white) !important;
}

[data-theme="dark"] .footer h3,
[data-theme="dark"] .footer h4,
[data-theme="dark"] .footer p {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .footer a {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .footer a:hover {
    color: var(--primary-yellow) !important;
}

[data-theme="dark"] .footer-bottom {
    color: rgba(255, 255, 255, 0.5) !important;
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

/* ========== THEME TOGGLE ========== */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-fast);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-fast);
}

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

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

.nav-cta {
    margin-left: 1rem;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 3px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

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

.btn-yellow {
    background: var(--gradient-yellow);
    color: var(--black);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.5);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

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

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-carpet-cleaning.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 92, 92, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

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

.badge {
    display: inline-block;
    background: rgba(244, 197, 66, 0.2);
    color: var(--primary-yellow);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-feature i {
    color: var(--primary-yellow);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========== GLASS CARD FORM ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-form h3 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px rgba(26, 92, 92, 0.1);
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    transition: var(--transition-fast);
}

.textarea-icon {
    top: 1.5rem;
}

.form-group input:focus ~ .form-icon,
.form-group textarea:focus ~ .form-icon {
    color: var(--primary-teal);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: var(--gradient-primary);
    padding: 2rem 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    color: var(--white);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ========== SECTION STYLES ========== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: var(--primary-teal-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.125rem;
}

/* ========== PROMO BOX ========== */
.promo-box-minimal {
    background: linear-gradient(to right, #fffbea, #fff9e6);
    border: 2px solid var(--primary-teal);
    border-left: 6px solid var(--primary-yellow);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.promo-box-minimal strong:first-child {
    color: var(--primary-teal);
    font-size: 1.3rem;
}

.promo-box-minimal a {
    color: var(--primary-teal);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-yellow);
    transition: all 0.3s;
}

.promo-box-minimal a:hover {
    border-bottom-color: var(--primary-teal);
}

/* ========== ABOUT SECTION ========== */
.about {
    padding: var(--section-padding) 0;
}

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

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

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

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-yellow);
    color: var(--black);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge strong {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.experience-badge span {
    font-size: 0.875rem;
    font-weight: 600;
}

.about-text h3 {
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

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

/* ========== SERVICES SECTION ========== */
.services {
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

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

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

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-yellow);
    color: var(--black);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    color: var(--primary-yellow);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-teal-dark);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-features i {
    color: var(--primary-teal);
    font-size: 0.875rem;
}

.service-card.featured .service-features i {
    color: var(--primary-yellow);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: auto;
}

.service-card.featured .service-link {
    color: var(--primary-yellow);
}

.service-link:hover {
    gap: 1rem;
}

.services-cta-center {
    text-align: center;
    margin-top: 3rem;
}

.emergency-notice {
    margin-top: 1rem;
    font-size: 1rem;
}

/* ========== PROCESS SECTION ========== */
.process {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-gray);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.step-content {
    flex: 1;
    padding: 1.5rem 0;
}

.step-content h3 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========== GALLERY SECTION ========== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-label {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========== REVIEWS SECTION ========== */
/* Light mode */
.reviews {
    padding: var(--section-padding) 0;
    background-color: rgb(252, 252, 222); /* Light cream/yellow */
}

/* Dark mode */
[data-theme="dark"] .reviews {
    background-color: #2b2a28; /* Dark warm brown */

}
[data-theme="dark"] .btn-outline {
    color: white;
    border-color: white;
}
.reviews-summary {
    text-align: center;
    margin: 0 auto 3rem auto;
}

.rating-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-teal);
}

.rating-stars {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.rating-count {
    font-size: 1.25rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.reviews-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.reviews-carousel {
    overflow: hidden;
    width: 100%;
}

.reviews-grid {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.review-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: calc(33.333% - 1.35rem);
    background: var(--off-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--primary-teal);
}

.review-date {
    color: var(--gray);
    font-size: 0.875rem;
}

.review-rating {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.review-text {
    color: var(--dark-gray);
    line-height: 1.7;
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-teal);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-teal);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

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

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

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: var(--primary-teal);
    transform: translateY(-50%);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-teal);
    width: 30px;
    border-radius: 5px;
}

/* ========== WHY CHOOSE US ========== */
.why-choose {
    padding: 4rem 0;
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), #2d7a7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========== SERVICE AREA SECTION ========== */
.service-area {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.area-map img {
    width: 100%;
    height: auto;
    display: block;
}

.area-info h3 {
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.area-list ul {
    list-style: none;
}

.area-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
}

.area-list i {
    color: var(--primary-teal);
}

.area-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.area-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.area-feature i {
    color: var(--primary-teal);
    font-size: 1.25rem;
}

.service-area-hero {
    background: linear-gradient(135deg, #1a5c5c 0%, #2d7a7a 100%);
    padding: 120px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-area-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/atlanta-service-map.jpg') center/cover;
    opacity: 0.1;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #1a5c5c;
}

.area-card h3 {
    color: #1a5c5c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.area-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.area-features li {
    padding: 0.5rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.area-features i {
    color: #f4c542;
    margin-right: 0.5rem;
    width: 20px;
}

.area-badge {
    display: inline-block;
    background: #f4c542;
    color: #1a5c5c;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-section {
    background: #f9f9f9;
    padding: 4rem 0;
    margin: 4rem 0;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.coverage-stat {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.coverage-stat .number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a5c5c;
    margin-bottom: 0.5rem;
}

.coverage-stat .label {
    color: #666;
    font-size: 1.1rem;
}

.quick-check {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 3rem 0;
}

.quick-check h3 {
    color: #1a5c5c;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.zip-checker {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.zip-checker input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1rem;
}

.zip-checker button {
    padding: 1rem 2rem;
    background: #1a5c5c;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zip-checker button:hover {
    background: #0d3a3a;
    transform: translateY(-2px);
}

.area-list-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.area-list-compact a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.area-list-compact a:hover {
    background: #f4c542;
    color: #1a5c5c;
    padding-left: 1rem;
}

.area-coming-soon {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #999;
    font-style: italic;
    cursor: default;
    opacity: 0.6;
}

.area-coming-soon:hover {
    opacity: 0.8;
}

.city-tag {
    display: inline-block;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.city-tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

/* ========== FAQ SECTION ========== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--off-white);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-teal-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

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

.faq-question i {
    transition: var(--transition-fast);
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ========== CTA SECTION ========== */
.cta {
    padding: var(--section-padding) 0;
    position: relative;
    background: url('images/cta-carpet-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ========== CONTACT SECTION ========== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 15px;
}

.info-card h3 {
    color: var(--primary-teal);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--primary-teal);
    font-size: 1.25rem;
    width: 30px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.info-item a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-item a:hover {
    color: var(--primary-teal);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--primary-teal-dark);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-yellow);
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.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-fast);
}

.footer-social a:hover {
    background: var(--primary-yellow);
    color: var(--black);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-contact i {
    color: var(--primary-yellow);
    width: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-yellow);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========== LOADING ANIMATION ========== */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ========== BLOG ARTICLE UTILITIES ========== */
.article-header {
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    margin-top: 80px;
    position: relative;
}

.article-meta {
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.article-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: white;
}

.blog-article {
    padding: 4rem 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-left: 4px solid var(--primary-teal);
}

.section-mb {
    margin-bottom: 3rem;
}

.line-height-2 {
    line-height: 2;
}

.info-box {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box {
    background: var(--primary-teal);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box h2,
.highlight-box h3,
.highlight-box h4 {
    color: white;
}

.highlight-box p,
.highlight-box li {
    color: white;
}

.tip-box {
    background: var(--primary-yellow);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.bordered-box {
    background: white;
    padding: 2rem;
    border: 2px solid var(--primary-teal);
    border-radius: 10px;
    margin: 2rem 0;
}

.bordered-box-thick {
    background: white;
    padding: 2rem;
    border: 3px solid var(--primary-teal);
    border-radius: 10px;
    margin: 2rem 0;
}

.sidebar-box-teal {
    background: var(--primary-teal);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.sidebar-box-teal h3,
.sidebar-box-teal h4 {
    color: white;
    margin-bottom: 1rem;
}

.sidebar-box-teal p {
    color: white;
}

.sidebar-box-gray {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.heading-teal {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.heading-teal-spaced {
    color: var(--primary-teal);
    margin-top: 1.5rem;
}

.heading-mb {
    margin-bottom: 1rem;
}

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

.list-unstyled {
    list-style: none;
    padding: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid,
    .area-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 968px) {
    .reviews-carousel-container {
        padding: 0 50px;
    }
    
    .review-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: calc(50% - 1rem);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-carousel-container {
        padding: 0 45px;
    }
    
    .review-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .theme-toggle {
        top: auto;
        bottom: 80px;
        right: 20px;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-header {
        padding: 80px 0 40px;
    }
    
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}