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

:root {
    --primary-color: #32cd32;
    --primary-dark: #28a828;
    --primary-light: #39ff14;
    --secondary-color: #32cd32;
    --bg-dark: #0f0f0f;
    --bg-darker: #1a1a1a;
    --bg-card: #2d2d2d;
    --bg-card-light: #3a3a3a;
    --text-light: #e5e5e5;
    --text-muted: #b0b0b0;
    --text-white: #ffffff;
    --border-color: #404040;
    --border-light: #505050;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.6), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #f5f5f5;
    line-height: 1.7;
    background-color: var(--bg-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    background-color: var(--bg-darker);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 73px);
    overflow: hidden;
    background-color: var(--bg-darker);
    margin: 0;
    margin-top: 0;
    padding: 0 !important;
    display: flex;
    align-items: stretch;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: calc(100vh - 73px);
    margin: 0;
    padding: 0;
    gap: 0;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-darker);
    padding: 80px 60px;
    position: relative;
}

.hero-content-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(26, 26, 26, 0.3) 30%,
        rgba(26, 26, 26, 0.6) 60%,
        var(--bg-darker) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 550px;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(
        to right,
        var(--bg-darker) 0%,
        rgba(26, 26, 26, 0.8) 20%,
        rgba(26, 26, 26, 0.4) 50%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1.4;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #e5e5e5;
}

.hero-description {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #d5d5d5;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.4);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    color: #d5d5d5;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    background-color: var(--bg-darker);
}

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

.service-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-icon i {
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(50, 205, 50, 0.3));
}

.service-card:hover .service-icon {
    color: var(--primary-light);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    filter: drop-shadow(0 0 12px rgba(50, 205, 50, 0.5));
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    color: #d5d5d5;
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-darker);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
    box-sizing: border-box;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.before-after-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
}

.before-after-pair > .image-container {
    min-width: 0;
    max-width: 100%;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    width: 100%;
    height: 400px;
    min-width: 0;
    max-width: 100%;
    min-height: 400px;
    max-height: 400px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
    min-width: 0;
}

.image-container:hover .carousel-image {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-white);
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Navigation Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(50, 205, 50, 0.9);
    color: var(--bg-dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.5);
}

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

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

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

.carousel-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-button:disabled:hover {
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    background-color: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
}

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

.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow);
    border: 2px dashed var(--border-color);
}

.gallery-image-placeholder.after {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-color: var(--primary-color);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.gallery-note {
    text-align: center;
    color: #d5d5d5;
    font-style: italic;
    line-height: 1.7;
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    background-color: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.contact-info .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
}

.info-icon {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.info-icon i {
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(50, 205, 50, 0.3));
}

.info-item:hover .info-icon {
    color: var(--primary-light);
    transform: scale(1.1);
}

.info-item:hover .info-icon i {
    filter: drop-shadow(0 0 12px rgba(50, 205, 50, 0.5));
}

.info-item-content {
    flex: 1;
    min-width: 0;
}

.info-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.info-item p {
    color: #d5d5d5;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.info-item a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: var(--bg-card);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
}

.social-link.nextdoor:hover {
    background-color: #00b04f;
    border-color: #00b04f;
}

.social-link.google:hover {
    background-color: #4285f4;
    border-color: #4285f4;
}

/* Quote Form */
.quote-form-container {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    height: fit-content;
}

.quote-form-container .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-white);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--bg-darker);
    color: #f5f5f5;
    line-height: 1.7;
    transition: border-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}

.form-group input[type="file"] {
    padding: 8px;
    cursor: pointer;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: background-color 0.3s ease;
}

.form-group input[type="file"]::-webkit-file-upload-button:hover {
    background-color: var(--primary-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(50, 205, 50, 0.1);
}

.form-group small {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.125rem;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(50, 205, 50, 0.2);
    color: var(--primary-light);
    border: 1px solid var(--primary-color);
    display: block;
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ff6b6b;
    border: 1px solid #ef4444;
    display: block;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.footer-section p {
    color: #d5d5d5;
    line-height: 1.7;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero {
        min-height: auto;
        padding: 0 !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content-wrapper {
        padding: 60px 40px;
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
        min-height: 50vh;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-tagline {
        font-size: 0.8125rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        letter-spacing: -0.01em;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        width: 100%;
    }

    .contact-info .section-title,
    .quote-form-container .section-title {
        text-align: center;
    }

    .contact-info .section-subtitle {
        text-align: center;
    }

    .quote-form-container {
        padding: 1.5rem;
    }

    .quote-form-container .section-title {
        text-align: center;
        font-size: 2.25rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        min-width: 100%;
    }

    .section-title {
        font-size: 2.25rem;
        letter-spacing: -0.015em;
        line-height: 1.15;
    }

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

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

    .carousel-container {
        padding: 0 50px;
    }

    .before-after-pair {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .image-container {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
    }

    .carousel-image {
        height: 300px;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-button-prev {
        left: -10px;
    }

    .carousel-button-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content-wrapper {
        padding: 40px 20px;
    }

    .hero-image-wrapper {
        min-height: 40vh;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 0.625rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin-bottom: 0.875rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: -0.01em;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .btn {
        text-align: center;
    }

    .contact-content {
        gap: 2rem;
    }

    .quote-form-container {
        padding: 1.25rem;
    }

    .quote-form-container .section-title {
        font-size: 2rem;
    }

    .info-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .info-icon {
        margin-top: 0;
    }

    .info-item p {
        font-size: 0.95rem;
    }

    .carousel-container {
        padding: 0 40px;
    }

    .image-container {
        height: 250px;
        min-height: 250px;
        max-height: 250px;
    }

    .carousel-image {
        height: 250px;
    }

    .carousel-button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .image-label {
        padding: 8px 16px;
        font-size: 0.875rem;
    }
}

