/* ===== CSS Variables ===== */
:root {
    --orange: #FC4C02;
    --orange-dark: #E04400;
    --orange-light: #FF6B2B;
    --green-dark: #1B3A1B;
    --green: #2D5A2D;
    --green-light: #3D7A3D;
    --white: #FFFFFF;
    --off-white: #F8F8F6;
    --gray-light: #F0F0ED;
    --gray: #888;
    --gray-dark: #333;
    --black: #111;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

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

.text-orange {
    color: var(--orange);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(252, 76, 2, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 18px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(27, 58, 27, 0.97);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 3px;
}

.logo-text-accent {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    color: var(--orange);
    letter-spacing: 4px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-phone {
    background: var(--orange);
    padding: 10px 20px !important;
    border-radius: 50px;
    white-space: nowrap;
}

.nav-phone::after {
    display: none !important;
}

.nav-phone:hover {
    background: var(--orange-dark);
}

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

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero-main.jpeg') center/cover no-repeat;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(27, 58, 27, 0.85) 0%,
        rgba(27, 58, 27, 0.6) 50%,
        rgba(27, 58, 27, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 10px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-since {
    font-size: 1rem;
    opacity: 0.75;
    margin-bottom: 40px;
    font-style: italic;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Promotions ===== */
.promos {
    background: var(--green-dark);
    padding: 60px 0;
    position: relative;
}

.promos-title {
    color: var(--white);
    margin-bottom: 30px;
}

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

.promo-card {
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 28px 26px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.12);
}

.promo-card:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-3px);
}

.promo-amount {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    color: var(--orange);
    white-space: nowrap;
    line-height: 1;
}

.promo-amount span {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-top: 2px;
}

.promo-details h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 3px;
}

.promo-details p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

/* ===== Sections Common ===== */
.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 50px;
}

/* ===== Services ===== */
.services {
    padding: 90px 0;
    background: var(--off-white);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.service-img {
    height: 220px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 12px;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
}

.service-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Gallery Grid ===== */
.gallery {
    padding: 90px 0 60px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-thumb:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.05);
}

/* ===== Why Us ===== */
.why-us {
    padding: 90px 0;
    background: var(--green-dark);
    color: var(--white);
}

.why-us .section-title {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    text-align: center;
    padding: 30px;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(252, 76, 2, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: var(--orange);
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 90px 0;
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    border-top: 4px solid var(--orange);
}

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

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--green-dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== Service Areas ===== */
.service-areas {
    padding: 70px 0;
    background: var(--white);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    display: inline-block;
    padding: 10px 22px;
    background: var(--gray-light);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green-dark);
    border: 2px solid transparent;
    transition: all var(--transition);
}

.area-tag:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* ===== Contact ===== */
.contact {
    padding: 90px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-item h3 {
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.contact-item a:hover {
    color: var(--orange-dark);
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-cta {
    text-align: center;
    padding-top: 10px;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--green-dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-dark);
    background: var(--off-white);
    transition: border-color var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 350px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--orange);
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--orange-light);
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== Form Success ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.visible {
    display: block;
}

.form-success svg {
    width: 56px;
    height: 56px;
    color: var(--green);
    margin: 0 auto 16px;
}

.form-success p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-dark);
}

/* ===== Mobile Sticky CTA ===== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--green-dark);
    padding: 10px 12px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-cta-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-cta-call {
    background: var(--white);
    color: var(--green-dark);
}

.mobile-cta-estimate {
    background: var(--orange);
    color: var(--white);
}

/* ===== Lightbox ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1;
    transition: color var(--transition);
}

.lightbox-close:hover {
    color: var(--orange);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    z-index: 2001;
}

.lightbox-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.lightbox-arrow:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        right: 0;
    }

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

    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-phone {
        text-align: center;
        margin-top: 20px;
        border-bottom: none !important;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    /* Mobile sticky CTA */
    .mobile-cta {
        display: flex;
    }

    .footer {
        padding-bottom: 80px;
    }

    /* Mobile form optimizations */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px 16px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 10px;
    }

    .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        padding-right: 40px;
    }

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

    .contact-form .btn-primary {
        min-height: 52px;
        font-size: 1.1rem;
    }

    .contact-item a {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .promo-card {
        flex-direction: column;
        text-align: center;
    }

    .promo-amount span {
        display: inline;
        margin-left: 5px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
