/* ----- RESET & BASE (Mobile-First) ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f5f5f5;
    color: #1a1a1a;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* ----- TOP BAR ----- */
.top-bar {
    background: #1a3c2a;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.5rem 0;
    font-weight: 500;
    display: none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-phone {
    color: #ffb347;
    text-decoration: none;
    font-weight: 600;
}

/* ----- BUTTONS ----- */
.btn-primary {
    display: inline-block;
    background: #f96302;
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-align: center;
    width: 100%;
}

.btn-primary:hover {
    background: #d95402;
    transform: translateY(-1px);
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #1a3c2a;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid #1a3c2a;
    transition: all 0.2s;
    text-align: center;
    width: 100%;
}

.btn-outline:hover {
    background: #1a3c2a;
    color: #fff;
}

.btn-nav {
    display: inline-block;
    background: #f96302;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-nav:hover {
    background: #d95402;
}

.btn-small {
    display: inline-block;
    background: #f96302;
    color: #fff;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    transition: background 0.2s;
}

.btn-small:hover {
    background: #d95402;
}

/* ----- NAVBAR ----- */
.navbar {
    background: #fff;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.logo-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #1a3c2a;
}

.logo-tag {
    font-size: 0.55rem;
    font-weight: 700;
    color: #f96302;
    background: #fff0e6;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #1a3c2a;
    border-radius: 4px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid #eee;
    margin-top: 0.8rem;
}

.nav-links.open {
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #f96302;
}

.nav-links .btn-nav {
    align-self: flex-start;
}

/* ----- HERO (Mobile-First) ----- */
.hero {
    padding: 2.5rem 0 3rem;
    background: #fff;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text .badge {
    display: inline-block;
    background: #f96302;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1a3c2a;
    margin-bottom: 0.75rem;
}

.hero-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #4a4a4a;
    font-weight: 500;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
}

.trust-row span:first-child {
    color: #f96302;
}

/* ----- HERO CARD ----- */
.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: #1a3c2a;
    border-radius: 20px;
    padding: 1.2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 12px 40px rgba(26, 60, 42, 0.2);
    position: relative;
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 12px;
    background: #f96302;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card-img svg {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 0.8rem;
    font-size: 0.7rem;
    color: #c8d6c4;
    font-weight: 500;
    flex-wrap: wrap;
    gap: 0.4rem;
}

/* ----- SECTION HEADERS ----- */
.section-label {
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f96302;
    margin-bottom: 0.2rem;
}

section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a3c2a;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

/* ----- SERVICES ----- */
.services {
    padding: 3rem 0;
    background: #fafafa;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-card {
    background: #fff;
    padding: 1.5rem 1.2rem;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:active {
    transform: scale(0.98);
}

.service-card .icon {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #1a3c2a;
}

.service-card p {
    font-size: 0.9rem;
    color: #5a5a5a;
}

.service-card.highlight {
    background: #f96302;
    color: #fff;
    border-color: #f96302;
}

.service-card.highlight h3,
.service-card.highlight p {
    color: #fff;
}

.service-card.highlight .btn-small {
    background: #fff;
    color: #f96302;
}

.service-card.highlight .btn-small:hover {
    background: #f0f0f0;
}

/* ----- GALLERY ----- */
.gallery {
    padding: 3rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    text-align: center;
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.gallery-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a3c2a;
}

/* ----- REVIEWS ----- */
.reviews {
    padding: 3rem 0;
    background: #fafafa;
}

.review-grid {
    display: grid;
    gap: 1rem;
}

.review-card {
    background: #fff;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
}

.review-card .stars {
    color: #f96302;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.95rem;
    color: #2a2a2a;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.reviewer {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a3c2a;
}

.reviewer span {
    font-weight: 400;
    color: #f96302;
    font-size: 0.7rem;
}

.review-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.review-cta .btn-outline {
    max-width: 280px;
    margin: 0 auto;
}

/* ----- CONTACT ----- */
.contact {
    padding: 3rem 0;
    background: #1a3c2a;
    color: #fff;
}

.contact-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-text .badge {
    display: inline-block;
    background: #f96302;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.contact-text h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #c8d6c4;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact-item a {
    color: #ffb347;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    color: #1a1a1a;
}

.contact-form h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a3c2a;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #d0d0d0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.8rem;
    transition: border 0.2s;
    background: #f9f9f9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #f96302;
    outline: none;
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form .btn-primary {
    margin-top: 0.2rem;
}

.form-note {
    font-size: 0.75rem;
    color: #6a6a6a;
    text-align: center;
    margin-top: 0.6rem;
}

/* ----- FOOTER ----- */
.footer {
    padding: 2rem 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

.logo.small {
    font-size: 1.3rem;
    color: #1a3c2a;
}

.copy {
    font-size: 0.8rem;
    color: #6a6a6a;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #f96302;
}

/* ========================================
   TABLET & DESKTOP (min-width: 768px)
   ======================================== */
@media (min-width: 768px) {
    .top-bar {
        display: block;
    }

    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        width: auto;
        border: none;
        padding: 0;
        margin: 0;
        gap: 1.8rem;
        align-items: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.2rem 0;
    }

    .nav-links .btn-nav {
        align-self: auto;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .hero-text {
        flex: 1;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: auto;
    }

    .hero-visual {
        flex: 1;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .review-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .contact-inner {
        flex-direction: row;
        align-items: stretch;
    }

    .contact-text {
        flex: 1;
    }

    .contact-form {
        flex: 1;
        max-width: 480px;
    }

    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 3.6rem;
    }

    .service-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    section h2 {
        font-size: 2.4rem;
    }
}