/* Professional Modern Design - Artificial Turf California */
/* Complete Redesign with Green Color Scheme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #177245;
    --secondary-color: #0d5130;
    --accent-color: #46c35f;
    --accent-light: #8be28f;
    --text-dark: #111827;
    --text-light: #6b7280;
    --bg-light: #f0f7f2;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #177245 0%, #0d5130 100%);
    --bg-gradient-accent: linear-gradient(135deg, #46c35f 0%, #19a974 100%);
    --bg-gradient-light: linear-gradient(135deg, #f0f7f2 0%, #ffffff 100%);
    --border-color: #d1e4d6;
    --shadow: 0 4px 20px rgba(23, 114, 69, 0.08);
    --shadow-lg: 0 12px 40px rgba(13, 81, 48, 0.15);
    --shadow-accent: 0 6px 25px rgba(70, 195, 95, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --section-padding: 100px 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 17px;
    overflow-x: hidden;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* Container - Wider for Modern Look */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header - Sleek Modern Design */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    background: var(--bg-gradient);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-contact {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-weight: 500;
    padding: 5px 0;
}

.contact-link:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-social {
    display: flex;
    gap: 25px;
}

.header-social a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
}

.header-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Navbar - Modern Horizontal Layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.navbar-brand .logo {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.navbar-brand .logo:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 3px;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.navbar-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.navbar-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav a:hover::before,
.navbar-nav a:focus::before {
    width: 100%;
}

.navbar-nav a:hover {
    color: var(--primary-color);
}

.navbar-nav .btn-primary {
    background: var(--bg-gradient-accent);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: var(--shadow-accent);
    margin-left: 10px;
}

.navbar-nav .btn-primary::before {
    display: none;
}

.navbar-nav .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(70, 195, 95, 0.4);
}

/* Hero Section - Split Layout Design */
.hero {
    background: var(--bg-gradient);
    color: white;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(70, 195, 95, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.15;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    text-align: center;
}

.feature-item .icon {
    font-size: 2rem;
    color: var(--accent-light);
    margin-bottom: 5px;
}

.hero-trust {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.google-rating .stars {
    font-size: 2rem;
    color: #FFD700;
    letter-spacing: 4px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.rating-text strong {
    font-size: 1.4rem;
    font-weight: 700;
}

.review-link {
    color: white;
    text-decoration: underline;
    font-size: 1.05rem;
    opacity: 0.9;
    transition: var(--transition);
}

.review-link:hover {
    opacity: 1;
    color: var(--accent-light);
}

/* Buttons - Modern Pill Design */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    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.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--bg-gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(70, 195, 95, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.05rem;
}

/* Trust Bar - Modern Card Grid */
.trust-bar {
    background: var(--bg-white);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
}

.trust-stat {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.trust-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.trust-stat:hover::before {
    transform: scaleX(1);
}

.trust-stat:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Trust Badges - Side by Side Layout */
.trust-badges-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: white;
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.badge-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.badge-text strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.badge-text span {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sections - Modern Spacing */
section {
    padding: var(--section-padding);
}

section h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.9;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

/* Services Grid - Modern Card Design */
.services-section {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--bg-gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(70, 195, 95, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 30px;
    display: block;
    line-height: 1;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    flex: 1;
}

/* NAP Section - Modern Card Design */
.nap-section {
    background: var(--bg-gradient);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.nap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.nap-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.nap-card h2 {
    color: white;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 800;
}

.nap-card .address,
.nap-card .phone,
.nap-card .email,
.nap-card .hours {
    margin: 20px 0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.nap-card a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nap-card a:hover {
    color: white;
    text-decoration: underline;
}

/* Areas Section - Split Layout */
.areas-section {
    background: var(--bg-light);
}

.areas-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.areas-list {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.areas-list h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

.map-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.map-wrapper {
    margin: 25px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-note {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    list-style: none;
    margin: 30px 0;
}

.city-link {
    display: block;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-size: 1rem;
}

.city-link:hover {
    background: var(--bg-gradient);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

/* Reviews Section - Modern Card Layout */
.reviews-section {
    background: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    padding: 45px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 6px solid var(--accent-color);
    border: 2px solid var(--border-color);
    border-left: 6px solid var(--accent-color);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.reviewer-location {
    font-size: 0.95rem;
    color: var(--text-light);
}

.review-stars {
    color: #FFD700;
    font-size: 1.4rem;
    letter-spacing: 3px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.1rem;
    flex: 1;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 60px;
}

/* Contact Section - Modern Split Layout */
.contact-section {
    background: var(--bg-light);
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.trust-item {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(23, 114, 69, 0.1);
}

.contact-card {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    position: sticky;
    top: 120px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 40px;
}

/* Footer - Modern Design */
.footer {
    background: #0a1f14;
    color: white;
    padding: 90px 0 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--bg-gradient-accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 30px;
    color: var(--accent-light);
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom a {
    color: var(--accent-light);
    text-decoration: none;
}

/* Floating Call Button - Modern Design */
.floating-call {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}

.floating-call-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-gradient-accent);
    color: white;
    padding: 20px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-accent);
    transition: var(--transition);
    animation: pulse 2s infinite;
    font-size: 1rem;
}

.floating-call-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(70, 195, 95, 0.5);
}

.floating-call-btn svg {
    width: 24px;
    height: 24px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(70, 195, 95, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(70, 195, 95, 0.7);
    }
}

/* FAQ Section - Modern Accordion */
.faq-section {
    background: var(--bg-white);
}

.faq-list {
    max-width: 1000px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--text-dark);
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] {
    background: var(--bg-gradient);
    color: white;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-icon {
    font-size: 2rem;
    transition: var(--transition);
    color: var(--accent-color);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-answer.active {
    max-height: 1000px;
}

.faq-answer p {
    padding: 30px;
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

/* Breadcrumbs - Modern Design */
.breadcrumbs {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: center;
}

.breadcrumbs li::after {
    content: ' › ';
    margin-left: 12px;
    color: var(--text-light);
    font-weight: 600;
}

.breadcrumbs li:last-child::after {
    content: '';
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumbs li:last-child {
    color: var(--text-light);
}

/* City Areas Section */
.city-areas-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.area-link {
    display: inline-block;
    padding: 18px 35px;
    margin: 5px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.05rem;
    box-shadow: var(--shadow);
}

.area-link:hover {
    background: var(--bg-gradient);
    color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* City Info Section */
.city-info-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.city-info-section .info-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.city-info-section h3 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.city-info-section p {
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.benefits-list li {
    padding: 25px;
    margin-bottom: 18px;
    background: var(--bg-light);
    border-left: 6px solid var(--accent-color);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.benefits-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.benefits-list li strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

/* Area Info Section */
.area-info-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.area-info-section .info-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.area-info-section h3 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

.area-info-section p {
    line-height: 1.9;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .areas-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-container,
    .contact-card {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-lg);
        gap: 25px;
        z-index: 1000;
    }
    
    .navbar-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    section {
        padding: 70px 0;
    }
    
    section h2 {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .floating-call-btn span {
        display: none;
    }
    
    .floating-call-btn {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .contact-form,
    .contact-card,
    .nap-card {
        padding: 35px 25px;
    }
    
    .floating-call {
        bottom: 20px;
        right: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .contact-section,
    .floating-call {
        display: none;
    }
}
