/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --secondary-color: #f97316;
    --secondary-dark: #ea580c;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success: #10b981;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

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

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

.logo a {
    display: inline-block;
    line-height: 0;
}

.logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo a:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

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

.phone-number {
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
    font-size: 16px;
}

.phone-icon {
    font-size: 18px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

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

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

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

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

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

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: url('truck.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 45, 0.9), rgba(44, 95, 45, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subheadline {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 20px;
}

section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
    margin-top: 30px;
}

/* ===== WHAT WE TAKE SECTION ===== */
.what-we-take {
    background-color: var(--bg-white);
}

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

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

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

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background-color: var(--bg-light);
}

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

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    position: relative;
}

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

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 14px;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
}

.truck-visual {
    max-width: 600px;
    margin: 30px auto 0;
}

.truck-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background: white;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== GALLERY ===== */
.gallery {
    background-color: var(--bg-light);
}

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

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.gallery-caption {
    padding: 20px;
}

.gallery-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

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

.gallery-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
}

/* ===== REVIEWS ===== */
.reviews {
    background: white;
}

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

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fbbf24;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.phone-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-decoration: none;
}

.phone-large:hover {
    color: var(--secondary-color);
}

.service-areas-text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

/* ===== SERVICE CITIES LIST ===== */
.service-cities-list {
    margin-top: 30px;
    text-align: center;
}

.service-cities-list h3 {
    color: #2c5f2d;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.city-tag {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: #2c5f2d;
    transition: all 0.3s ease;
}

.city-tag:hover {
    background: #2c5f2d;
    color: white;
    border-color: #2c5f2d;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .city-tag {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 50px 20px 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: white;
}

.footer-section p,
.footer-section ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: white;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* ===== SERVICES PAGE ===== */
.services-content {
    background: var(--bg-white);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content {
    padding: 20px;
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-detail h2 {
    text-align: left;
    font-size: 28px;
    margin-bottom: 15px;
}

.service-detail p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.additional-items {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.additional-items h2 {
    margin-bottom: 30px;
}

.items-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.item-column ul li {
    padding: 10px 0;
    color: var(--text-dark);
    font-size: 16px;
}

.restrictions {
    background: #fef3c7;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--warning);
}

.restrictions h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.restrictions p {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.restrictions ul {
    list-style: disc;
    margin-left: 25px;
    color: var(--text-dark);
}

.restrictions ul li {
    margin-bottom: 8px;
}

/* ===== SERVICE AREAS PAGE ===== */
.service-areas-content {
    background: white;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.intro-text h2 {
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

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

.area-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.area-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.coverage-map {
    margin: 60px 0;
}

.coverage-map h2 {
    margin-bottom: 30px;
}

.map-placeholder {
    background: var(--bg-light);
    padding: 100px 20px;
    border-radius: 12px;
    text-align: center;
    border: 3px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.map-note {
    font-size: 14px;
    color: var(--text-light);
}

.area-faq {
    margin-top: 60px;
}

.area-faq h2 {
    margin-bottom: 40px;
}

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    background: white;
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

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

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

.main-about-image {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    margin-bottom: 40px;
}

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

.value-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

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

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.commitment-section {
    margin-bottom: 60px;
}

.commitment-section h2 {
    margin-bottom: 40px;
}

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

.commitment-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.commitment-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.commitment-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-local {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.why-local h2 {
    margin-bottom: 20px;
}

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 16px;
}

/* ===== CONTACT PAGE ===== */
.contact-content {
    background: white;
}

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

.contact-method {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.method-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-method h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.method-value {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.method-value a {
    color: var(--primary-color);
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.form-container {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.form-container h2 {
    text-align: left;
    margin-bottom: 15px;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-note {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 10px;
}

.small-text {
    font-size: 14px;
    font-style: italic;
}

.area-list,
.tips-list {
    list-style: none;
    margin-top: 10px;
}

.area-list li,
.tips-list li {
    padding: 8px 0;
    color: var(--text-dark);
}

.contact-faq {
    margin-bottom: 60px;
}

.contact-faq h2 {
    margin-bottom: 40px;
}

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

.map-section {
    margin-bottom: 40px;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-section .map-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 15px;
}

/* ===== CITY PAGES ===== */
.city-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 100px 20px 80px;
}

.city-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.city-hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.city-content {
    background: white;
}

.city-intro {
    max-width: 800px;
    margin: 0 auto 50px;
}

.city-intro h2 {
    text-align: left;
    margin-bottom: 20px;
}

.city-intro p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.city-services {
    margin-bottom: 50px;
}

.city-services h2 {
    text-align: left;
    margin-bottom: 30px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.services-list li {
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 16px;
}

.city-why {
    margin-bottom: 50px;
}

.city-why h2 {
    margin-bottom: 30px;
}

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

.feature-simple {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.feature-simple h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-simple p {
    color: var(--text-light);
    line-height: 1.6;
}

.city-neighborhoods {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
}

.city-neighborhoods h2 {
    margin-bottom: 20px;
}

.city-neighborhoods > p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.neighborhoods-grid ul li {
    padding: 8px 0;
    color: var(--text-dark);
}

.city-cta-inline {
    background: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 50px;
}

.city-cta-inline h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.city-cta-inline p {
    font-size: 18px;
}

.city-cta-inline a {
    color: white;
    text-decoration: underline;
}

.city-cta-inline a:hover {
    color: var(--secondary-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-subheadline {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-content {
        justify-content: space-between;
    }
    
    .header-cta .btn {
        display: none;
    }
    
    .phone-number {
        font-size: 14px;
    }
    
    .phone-icon {
        font-size: 16px;
    }
    
    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    section {
        padding: 40px 20px;
    }
    
    section h2 {
        font-size: 26px;
    }
    
    .services-grid,
    .pricing-grid,
    .features-grid,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .service-detail h2 {
        font-size: 24px;
    }
    
    .items-list {
        grid-template-columns: 1fr;
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .city-hero h1 {
        font-size: 32px;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .phone-large {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Navigation Menu */
@media (max-width: 767px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: 20px;
        gap: 10px;
    }
    
    .nav-menu.active a {
        padding: 15px;
        border-bottom: 1px solid var(--border-color);
    }
}

