
/* CSS Variables */
:root {
    --primary-color: #0033CC;
    --secondary-color: #F4A300;
    --background-light: #F5F5F5;
    --text-primary: #36454F;
    --text-dark: #28282B;
    --white: #ffffff;
    --border-light: #e0e0e0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--white);
}

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

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

/* Header Styles */
.top-bar {
    background: var(--text-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item svg,
.top-bar-email svg {
    width: 16px;
    height: 16px;
    fill: var(--secondary-color);
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--secondary-color);
}

.top-bar-email {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-header {
    background: var(--white);
    padding: 18px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 42px;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    height: 100%;
    line-height: 1;
}

.nav-menu > li > a:hover {
    color: var(--primary-color);
}

/* Dropdown Arrow Styling */
.dropdown-arrow {
    width: 8px;
    height: 8px;
    fill: currentColor;
    margin-left: 4px;
    flex-shrink: 0;
}

/* DESKTOP DROPDOWN SYSTEM */
.dropdown {
    position: relative;
}

/* Desktop Dropdown Menu */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 51, 204, 0.15);
    min-width: 240px;
    z-index: 1001;
    padding: 12px 0;
    border: 1px solid #e0e0e0;
    margin-top: 2px;
}

/* Desktop Hover Behavior */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Desktop Dropdown Links */
.dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    border: none;
}

.dropdown-content a:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

/* CTA Button */
.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    margin-left: 20px;
}

.cta-button:hover {
    background: #d9940d;
}

.cta-button-primary {
    background: var(--primary-color);
    padding: 12px 30px;
}

.cta-button-primary:hover {
    background: #002299;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0044dd 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.hero .subtext {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.trust-indicator .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.trust-indicator .label {
    font-size: 14px;
    opacity: 0.9;
}

/* Transform Section */
.transform-section {
    padding: 80px 0;
    background: var(--background-light);
}

.transform-content {
    text-align: center;
    margin-bottom: 60px;
}

.transform-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.transform-content .subtitle {
    font-size: 20px;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
}

/* Before/After Slider - Completely Rebuilt */
.before-after-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    user-select: none;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    cursor: ew-resize;
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #999;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23999999" width="800" height="400"/><text x="400" y="180" text-anchor="middle" fill="white" font-size="36" font-weight="bold" font-family="sans-serif">BEFORE</text><text x="400" y="220" text-anchor="middle" fill="white" font-size="20" font-family="sans-serif">Overgrown Yard</text></svg>');
    background-size: cover;
    background-position: center;
}



.after-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 800px;
    max-width: 800px;
    height: 100%;
    background: #4CAF50;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%234CAF50" width="800" height="400"/><text x="400" y="180" text-anchor="middle" fill="white" font-size="36" font-weight="bold" font-family="sans-serif">AFTER</text><text x="400" y="220" text-anchor="middle" fill="white" font-size="20" font-family="sans-serif">Beautiful Landscape</text></svg>');
    background-size: cover;
    background-position: center;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    z-index: 11;
}

.slider-handle:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.slider-labels {
    position: absolute;
    width: 100%;
    top: 15px;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 5;
}

.slider-label {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

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

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

.local-experts p {
    font-size: 18px;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-header {
    margin-bottom: 30px;
}

.services-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
}

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

.services-grid.vertical-cards { grid-template-columns: repeat(2, 1fr); }
.services-grid.vertical-cards .service-category { flex-direction:column; gap:30px; }
.services-grid.vertical-cards .service-category .service-subtitle:empty { display:none; }
.services-grid.vertical-cards .service-category .service-category-image, .services-grid.vertical-cards .service-category .service-category-content { width:100% !important; }
.services-grid.vertical-cards .service-category .service-category-image img { min-height: 250px; height:280px; }
.services-grid.vertical-cards .service-category .service-category-content .cta-button { margin-left:0; margin-top:20px; }
.services-grid.vertical-cards .service-category .service-category-header { margin-bottom:15px; }
.services-grid.vertical-cards .service-category .service-description { margin-bottom:10px; }
.services-grid.vertical-cards .service-category .service-list li { transition:all 0.3s ease; }

.service-category {
    background: var(--white);
    border: 2px solid var(--border-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    cursor: pointer;
}

.service-category:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 51, 204, 0.15);
}

.service-category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.service-category h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 20px;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.service-list li:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.service-cta {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.service-cta svg {
    width: 16px;
    height: 16px;
    margin-left: 5px;
    fill: currentColor;
}

.service-cta:hover {
    color: var(--secondary-color);
}

.services-bottom-cta {
    text-align: center;
    margin-top: 40px;
}

.services-bottom-cta p {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--background-light);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.why-choose-header p {
    font-size: 18px;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid var(--secondary-color);
    position: relative;
}

.value-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.why-choose-cta {
    text-align: center;
    margin-top: 60px;
}

.why-choose-cta p {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.testimonial .quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial .location {
    font-size: 14px;
    color: var(--text-primary);
    opacity: 0.8;
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 0;
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
}

.service-areas-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-areas-section .intro-text {
    font-size: 20px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.service-areas-section .coverage-text {
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.8;
    font-style: italic;
}

.service-areas-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.home-base-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e69500 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(244, 163, 0, 0.3);
    position: relative;
}

.home-base-highlight::before {
    content: "🏠";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-base-highlight h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.home-base-highlight p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}

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

.area-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.area-card:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(244, 163, 0, 0.2);
}

.area-card.special-card {
    background: linear-gradient(135deg, rgba(244, 163, 0, 0.15), rgba(244, 163, 0, 0.05));
    border-color: rgba(244, 163, 0, 0.3);
}

.area-card.special-card::before {
    content: "✨";
    background: var(--secondary-color);
}

.area-card.special-card:hover {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(244, 163, 0, 0.2), rgba(244, 163, 0, 0.1));
}

.area-card::before {
    content: "📍";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.area-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 5px 0;
    color: var(--white);
}

.area-card .distance {
    font-size: 13px;
    opacity: 0.8;
    color: var(--secondary-color);
}

.service-areas-cta {
    margin-top: 50px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-areas-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-areas-cta .highlight-text {
    color: var(--secondary-color);
}

.areas-grid {
    display: none; /* Hide old grid for fallback */
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: var(--background-light);
    color: var(--text-primary);
}

.contact-hero {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.contact-hero p {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid rgba(0, 51, 204, 0.08);
    box-shadow: 0 8px 40px rgba(0, 51, 204, 0.08);
    position: relative;
}


.contact-form-header {
    margin-bottom: 35px;
    text-align: center;
}

.contact-form h3 {
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.contact-form .form-subtitle {
    color: var(--text-primary);
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 0 16px 20px;
    border: none;
    border-bottom: 2px solid var(--border-light);
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(54, 69, 79, 0.5);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--primary-color);
    outline: none;
    background: rgba(0, 51, 204, 0.02);
}

.form-group input:focus + .form-focus-line,
.form-group textarea:focus + .form-focus-line {
    width: 100%;
}

.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
    padding-top: 16px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: rgba(245, 245, 245, 0.3);
}

.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

.form-submit {
    margin-top: 35px;
}

.form-submit .cta-button {
    background: linear-gradient(135deg, var(--secondary-color), #e69500);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(244, 163, 0, 0.3);
}

.form-submit .cta-button:hover {
    background: linear-gradient(135deg, #d9940d, #cc8500);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 163, 0, 0.4);
}

.contact-info {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: fit-content;
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--background-light);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-method:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 51, 204, 0.1);
    border-color: rgba(0, 51, 204, 0.1);
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    margin-right: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 51, 204, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method-icon {
    background: var(--primary-color);
}

.contact-method-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-color);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.contact-method:hover .contact-method-icon svg {
    stroke: var(--white);
}

.contact-method-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    line-height: 1.3;
}

.contact-method-content p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    color: var(--text-primary);
}

.contact-method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Footer */
.associations-block { background: var(--background-light); border-top: 1px solid #ebeaea; padding:80px 30px; }
.associations-grid { display: flex; align-items: center; gap: 20px; flex-wrap:wrap; }
.associations-grid > .association-item { width: calc(16.6666% - 20px); text-align:center; }
.associations-grid > .association-item img { width:100%; height:auto; max-width:120px; margin:auto; }

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0 0;
}

.footer-main {
    padding-bottom: 50px;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand {
    grid-column: 1;
}

.footer-brand .brand-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand .brand-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.footer-brand .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-brand .contact-item svg {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    fill: var(--secondary-color);
}

.footer-brand .contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer-brand .contact-item a:hover {
    color: var(--secondary-color);
}
.footer-brand .contact-info {
    margin-bottom: 25px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.service-areas, .credentials {
    margin-top: 25px;
}
.service-areas p, .credentials p, .business-hours p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0;
}
.service-areas p strong, .credentials p strong, .business-hours p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.business-hours {
    margin-top: 20px;
}

.business-hours .hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.business-hours .hours-day {
    color: rgba(255, 255, 255, 0.9);
}

.business-hours .hours-time {
    color: var(--secondary-color);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-twg {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    background: var(--text-dark);
}

.footer-twg-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.twg-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
}

.twg-logo {
    width: 80px;
    height: auto;
    opacity: 0.8;
}

.twg-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.twg-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.twg-text a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
    text-align: center;
    background: #1a1a1d;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    fill: var(--text-primary);
}

.mobile-menu-toggle:hover svg {
    fill: var(--primary-color);
}

/* Mobile CTA Buttons */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 10px;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-cta-bar .cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.mobile-cta-bar .cta-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.mobile-cta-bar .cta-call {
    background: var(--primary-color);
    color: var(--white);
}

.mobile-cta-bar .cta-text {
    background: var(--secondary-color);
    color: var(--white);
}

.mobile-cta-bar .cta-book {
    background: var(--text-dark);
    color: var(--white);
}

.img-content-block { display:flex; gap:40px; }
.img-content-block > div { width: calc(50% - 20px); }
.img-content-block > .img-block { border-radius:8px; overflow:hidden; }
.img-content-block > .img-block video, .img-content-block > .img-block img, .img-content-block > .img-block iframe { display:block; width:100%; margin:0; object-fit:cover; height:100%; min-height:420px; }
.img-content-block > .content-block { text-align:left; justify-content: center; display: inline-flex; flex-direction: column; }
.img-content-block > .content-block h2 { margin-bottom:25px; }
.center-btns-block { display:flex; justify-content:center; }
.center-btns-block > a.view-projects-button { margin-top:0; }
.service-areas-section .location-iframe { border-radius:8px; overflow:hidden; margin-top:20px; }
.service-areas-section .location-iframe iframe { display:block; width:100%; height:100%; min-height:450px; }

@media(max-width: 1024px){
    .associations-grid > .association-item { width: calc(33.3333% - 20px); }
}

/* Tablet Responsive Design */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .services-grid.vertical-cards { grid-template-columns: repeat(1, 1fr); }
    .img-content-block { flex-direction:column; }
    .img-content-block > div { width: 100%; }        
    .mobile-cta-bar { display: block; }
    
    body {
        padding-bottom: 70px;
    }
    
    .main-header {
        position: relative;
    }
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }

    .top-bar-left {
        gap: 15px;
    }

    .top-bar-item svg,
    .top-bar-email svg {
        width: 14px;
        height: 14px;
    }

    .top-bar-email span {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        padding: 0;
        gap: 0;
        border-top: 1px solid var(--border-light);
        z-index: 1000;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border-light);
        justify-content: space-between;
        display: flex;
        align-items: center;
        min-height: 44px;
        color: var(--text-primary);
        text-decoration: none;
    }

    .nav-menu li:last-child > a {
        border-bottom: none;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .cta-button {
        margin: 16px 20px;
        text-align: center;
        display: block;
        background: var(--secondary-color);
        color: var(--white);
        padding: 12px 24px;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
    }
    
    .cta-button:hover {
        background: var(--primary-color);
        color: var(--white);
    }

    .nav-menu.active {
        display: flex;
    }
    
    /* MOBILE DROPDOWN SYSTEM - Override desktop styles */
    .dropdown-content {
        position: static !important;
        display: none;
        box-shadow: none !important;
        background: #f8f9fa;
        padding: 0;
        min-width: unset;
        margin: 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(0, 51, 204, 0.1);
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 12px 20px 12px 45px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        color: #36454F !important;
        text-decoration: none;
        display: flex !important;
        align-items: center;
        font-size: 14px !important;
        font-weight: 400;
        background: #f8f9fa !important;
        min-height: 44px;
        white-space: normal;
        position: relative;
    }
    
    .dropdown-content a:before {
        content: '•';
        position: absolute;
        left: 25px;
        color: var(--secondary-color);
        font-size: 16px;
    }
    
    .dropdown-content a:last-child {
        border-bottom: none !important;
    }
    
    .dropdown-content a:active {
        background: rgba(0, 51, 204, 0.08) !important;
        color: var(--primary-color) !important;
    }
    
    .dropdown-content a:hover {
        background: rgba(0, 51, 204, 0.08) !important;
        color: var(--primary-color) !important;
    }
    
    .dropdown > a {
        cursor: pointer;
    }
    
    .dropdown > a .dropdown-arrow {
        transform: rotate(0deg);
    }
    
    .dropdown.active > a .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Highlight active dropdown parent */
    .dropdown.active > a {
        background: rgba(0, 51, 204, 0.08);
        color: var(--primary-color);
        border-bottom: none !important;
    }
    
    /* Restore border for next sibling */
    .dropdown.active + li > a {
        border-top: 1px solid var(--border-light);
    }


    .hero h1 {
        font-size: 32px;
    }

    .hero .tagline {
        font-size: 20px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .transform-content h2,
    .services-header h2,
    .why-choose-header h2,
    .testimonials-header h2,
    .service-areas-section h2,
    .contact-cta-section h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-category {
        padding: 30px 25px;
    }

    .service-category-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .service-category h3 {
        font-size: 20px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-item {
        padding: 25px 20px;
        border-left-width: 3px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .surrounding-areas {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .home-base-highlight {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .home-base-highlight h3 {
        font-size: 24px;
    }
    
    .area-card {
        padding: 15px;
    }
    
    .service-areas-cta {
        padding: 20px;
        margin-top: 40px;
    }

    .contact-hero h2 {
        font-size: 32px;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .contact-form h3 {
        font-size: 24px;
    }

    .contact-info {
        padding: 30px 25px;
    }

    .contact-method {
        padding: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-twg-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .associations-grid > .association-item { width: calc(50% - 20px); }
    .img-content-block > .img-block iframe { min-height:180px; }
    .surrounding-areas {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .home-base-highlight {
        padding: 20px;
    }
    
    .home-base-highlight h3 {
        font-size: 22px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 22px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .contact-method {
        padding: 14px;
        margin-bottom: 20px;
    }

    .contact-method-icon {
        width: 44px;
        height: 44px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: 1;
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #002299 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.service-hero .hero-intro {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.service-hero .hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
}

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

.service-hero .btn-secondary:hover {
    background: var(--background-light);
}

/* Service Detail Section */
.service-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.service-detail-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

/* Advantages Section */
.advantages-section {
    padding: 80px 0;
    background: var(--background-light);
}

.advantages-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.advantage-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 16px;
    height: 16px;
    color: var(--white);
}

.advantage-item p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--white);
}

.process-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

/* Cost Section */
.cost-section {
    padding: 80px 0;
    background: var(--background-light);
}

.cost-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.cost-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.cost-content p {
    margin-bottom: 20px;
}

/* Additional Services Section */
.additional-services-section {
    padding: 80px 0;
    background: var(--white);
}

.additional-services-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.additional-services-section > p {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.services-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.service-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--background-light);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-link:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.contact-form button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #002299;
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .service-hero .btn {
        width: 100%;
        max-width: 280px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 20px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Additional Button Styles for Service Pages */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 163, 0, 0.3);
}

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

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

/* Fix for Why Choose Grid Display */
.why-choose-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)) !important;
    gap: 30px !important;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-item {
    padding: 25px;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.why-choose-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-choose-item p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Logo Fixes */
.logo img,
.custom-logo {
    height: 45px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
}

.custom-logo-link {
    display: inline-block;
}

/* Fix Advantages Section Display */
.advantages-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 25px !important;
    margin-top: 30px;
}

.advantage-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
}

.advantage-icon {
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    background: var(--primary-color) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.advantage-icon svg {
    width: 16px !important;
    height: 16px !important;
    fill: white !important;
}

.advantage-item p {
    margin: 0 !important;
    color: var(--text-primary) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

/* Fix Process Section Display */
.process-steps {
    display: block !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.process-step {
    display: flex !important;
    align-items: flex-start !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

.process-step:last-child {
    border-bottom: none !important;
}

.step-number {
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    background: var(--secondary-color) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
}

.step-content h3 {
    font-size: 1.3rem !important;
    color: var(--text-dark) !important;
    margin-bottom: 10px !important;
    margin-top: 0 !important;
}

.step-content p {
    color: var(--text-primary) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
    background: var(--background-light);
}

.gallery-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: center;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px 15px 15px;
    margin: 0;
    font-size: 0.95rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Image Coming Soon Placeholder */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-text {
    color: #666;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-item .gallery-caption {
    position: relative;
    transform: none;
    background: rgba(0,0,0,0.05);
    color: var(--text-primary);
    padding: 15px;
}

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

.hero-section {
    padding: 100px 0 80px;
}

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

/* Ensure all sections have proper background */
.service-detail-section,
.process-section,
.why-choose-section,
.additional-services-section {
    background: var(--white);
}

.advantages-section,
.cost-section,
.gallery-section,
.contact-form-section {
    background: var(--background-light);
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-caption {
        transform: translateY(0);
        background: rgba(0,0,0,0.7);
    }
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 0 0;
}

.footer-main {
    padding-bottom: 50px;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-brand {
    grid-column: 1;
}

.footer-brand .brand-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand .brand-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.footer-brand .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-brand .contact-item svg {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    fill: var(--secondary-color);
}

.footer-brand .contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

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

.footer-brand .contact-info {
    margin-bottom: 25px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.service-areas, .credentials {
    margin-top: 25px;
}

.service-areas p, .credentials p, .business-hours p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 8px 0;
}

.service-areas p strong, .credentials p strong, .business-hours p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-twg {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    background: var(--text-dark);
}

.footer-twg-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.twg-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
}

.twg-logo {
    width: 80px;
    height: auto;
    opacity: 0.8;
}

.twg-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.twg-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.twg-text a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px 0;
    text-align: center;
    background: #1a1a1d;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

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

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

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1;
        text-align: center;
    }

    .footer-twg-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}