/* ============================================================
   STARTER TEMPLATE
   Simple & Direct — contact form front and center in the hero.
   Inspired by high-converting lawn care sites that put the
   estimate form above the fold.
   
   Prefix: st-
   Primary: var(--primary)  — forest green
   Secondary: var(--secondary) — dark forest
   Accent: var(--accent) — bright green
   ============================================================ */

/* ── Animations ─────────────────────────────────────────────── */

@keyframes st-fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes st-fadeLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes st-fadeRight {
    from { opacity: 0; transform: translateX(50px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes st-scaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes st-slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes st-countPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Scroll-triggered animation classes */
.st-animate {
    opacity: 0;
    transition: none;
}

.st-animate.st-visible {
    animation-duration: 0.7s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.st-fade-up.st-visible    { animation-name: st-fadeUp; }
.st-fade-left.st-visible  { animation-name: st-fadeLeft; }
.st-fade-right.st-visible { animation-name: st-fadeRight; }
.st-scale-in.st-visible   { animation-name: st-scaleIn; }

/* Stagger delays for grid children */
.st-stagger-1 { animation-delay: 0.05s; }
.st-stagger-2 { animation-delay: 0.12s; }
.st-stagger-3 { animation-delay: 0.19s; }
.st-stagger-4 { animation-delay: 0.26s; }
.st-stagger-5 { animation-delay: 0.33s; }
.st-stagger-6 { animation-delay: 0.40s; }

/* ── Utility Top Bar ────────────────────────────────────────── */

.st-topbar {
    background: var(--secondary, #1b4332);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: 0.02em;
}

.st-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.st-topbar a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.st-topbar a:hover { opacity: 0.8; }

.st-topbar i {
    margin-right: 6px;
    color: var(--accent, #52b788);
}

.st-topbar-left,
.st-topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ── Navigation ─────────────────────────────────────────────── */

.st-nav {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: st-slideDown 0.5s ease;
}

.st-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.st-nav-logo img {
    height: 48px;
    width: auto;
}

.st-nav-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary, #2d6a4f);
    text-decoration: none;
}

.st-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.st-nav-links a {
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.25s;
}

.st-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary, #2d6a4f);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.st-nav-links a:hover,
.st-nav-links a.active {
    color: var(--primary, #2d6a4f);
}

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

.st-nav-cta {
    background: var(--primary, #2d6a4f);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid var(--primary, #2d6a4f);
}

.st-nav-cta:hover {
    background: transparent;
    color: var(--primary, #2d6a4f) !important;
}

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

.st-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary, #2d6a4f) !important;
    font-weight: 600;
    font-size: 15px;
}

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

.st-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #334155;
    transition: all 0.3s;
    border-radius: 2px;
}

/* ── Hero Section ───────────────────────────────────────────── */

.st-hero {
    background: var(--secondary, #1b4332);
    position: relative;
    overflow: hidden;
}

.st-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(82,183,136,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(82,183,136,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Decorative leaf pattern overlay */
.st-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 Q35 15 30 25 Q25 15 30 5Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

.st-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px 72px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.st-hero-content {
    animation: st-fadeLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.st-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(82,183,136,0.2);
    color: #a7f3d0;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.st-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
}

.st-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 32px;
    max-width: 480px;
}

.st-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.st-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 100px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.st-trust-badge:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}

.st-trust-badge i {
    color: var(--accent, #52b788);
    font-size: 14px;
}

/* Hero Form Card */
.st-hero-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: st-fadeRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.st-hero-form-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
}

.st-hero-form-card .st-form-sub {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px;
}

.st-form-group {
    margin-bottom: 14px;
}

.st-form-group input,
.st-form-group textarea,
.st-form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Source Sans 3', sans-serif;
    color: #1e293b;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #f8fafc;
    box-sizing: border-box;
}

.st-form-group input:focus,
.st-form-group textarea:focus {
    outline: none;
    border-color: var(--primary, #2d6a4f);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
    background: #fff;
}

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

.st-form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.st-form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
}

.st-form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary, #2d6a4f);
    cursor: pointer;
}

.st-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.st-form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary, #2d6a4f);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.st-form-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.st-form-submit:hover {
    background: var(--secondary, #1b4332);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45,106,79,0.35);
}

.st-form-submit:hover::after {
    transform: translateX(100%);
}

/* ── Section Base ───────────────────────────────────────────── */

.st-section {
    padding: 80px 0;
}

.st-section-alt {
    background: #f8faf9;
}

.st-section-dark {
    background: var(--secondary, #1b4332);
    color: #fff;
}

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

.st-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.st-section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary, #2d6a4f);
    margin-bottom: 10px;
}

.st-section-dark .st-section-eyebrow {
    color: var(--accent, #52b788);
}

.st-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
    line-height: 1.2;
}

.st-section-dark .st-section-header h2 {
    color: #fff;
}

.st-section-header p {
    font-size: 17px;
    color: #64748b;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.st-section-dark .st-section-header p {
    color: rgba(255,255,255,0.7);
}

/* ── Services Grid ──────────────────────────────────────────── */

.st-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.st-service-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid #f1f5f9;
}

.st-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.st-service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.st-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.st-service-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary, #2d6a4f), var(--secondary, #1b4332));
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-service-img-placeholder i {
    font-size: 48px;
    color: rgba(255,255,255,0.3);
}

.st-service-body {
    padding: 24px;
}

.st-service-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}

.st-service-body p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px;
}

.st-service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary, #2d6a4f);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s;
}

.st-service-link:hover {
    gap: 10px;
}

.st-service-price {
    display: inline-block;
    background: rgba(45,106,79,0.08);
    color: var(--primary, #2d6a4f);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

/* ── About Section ──────────────────────────────────────────── */

.st-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.st-about-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
    line-height: 1.2;
}

.st-about-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 28px;
}

.st-about-stats {
    display: flex;
    gap: 32px;
}

.st-about-stat {
    text-align: center;
}

.st-about-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary, #2d6a4f);
    line-height: 1;
    margin-bottom: 4px;
}

.st-about-stat-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.st-about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    position: relative;
}

.st-about-img img {
    width: 100%;
    height: auto;
    display: block;
}

.st-about-img-placeholder {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, var(--primary, #2d6a4f) 0%, var(--accent, #52b788) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-size: 80px;
}

/* Decorative accent bar on about image */
.st-about-img::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 24px;
    bottom: 24px;
    width: 6px;
    background: var(--accent, #52b788);
    border-radius: 3px;
    z-index: 2;
}

/* ── Why Choose Us ──────────────────────────────────────────── */

.st-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.st-why-card {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.st-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
    border-color: var(--primary, #2d6a4f);
}

.st-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #2d6a4f), var(--accent, #52b788));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
    transition: transform 0.4s;
}

.st-why-card:hover .st-why-icon {
    transform: scale(1.1) rotate(5deg);
}

.st-why-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px;
}

.st-why-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Testimonials ───────────────────────────────────────────── */

.st-testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 20px;
    scrollbar-width: none;
}

.st-testimonials-track::-webkit-scrollbar { display: none; }

.st-testimonial-card {
    flex: 0 0 360px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.st-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.st-testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.st-testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 20px;
}

.st-testimonial-author {
    font-weight: 700;
    color: #1e293b;
    font-size: 15px;
}

.st-testimonial-location {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 2px;
}

.st-google-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    color: var(--primary, #2d6a4f);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: gap 0.3s;
}

.st-google-link:hover { gap: 12px; }

/* ── FAQ ────────────────────────────────────────────────────── */

.st-faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.st-faq-item {
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}

.st-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #1e293b;
    transition: color 0.2s;
}

.st-faq-question:hover { color: var(--primary, #2d6a4f); }

.st-faq-question i {
    transition: transform 0.3s;
    color: #94a3b8;
    font-size: 14px;
}

.st-faq-item.active .st-faq-question i {
    transform: rotate(180deg);
    color: var(--primary, #2d6a4f);
}

.st-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s;
    padding: 0 0 0 0;
}

.st-faq-item.active .st-faq-answer {
    max-height: 300px;
    padding: 0 0 20px 0;
}

.st-faq-answer p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ── Gallery ────────────────────────────────────────────────── */

.st-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.st-gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.st-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.st-gallery-item:hover img {
    transform: scale(1.08);
}

/* ── Service Areas ──────────────────────────────────────────── */

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

.st-area-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.st-area-pill:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
}

.st-area-pill i {
    color: var(--accent, #52b788);
    font-size: 12px;
}

/* ── Contact Section ────────────────────────────────────────── */

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

.st-contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
}

.st-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(45,106,79,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary, #2d6a4f);
    font-size: 18px;
    flex-shrink: 0;
}

.st-contact-info-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px;
}

.st-contact-info-card p,
.st-contact-info-card a {
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    margin: 0;
}

.st-contact-info-card a:hover { color: var(--primary, #2d6a4f); }

/* ── Footer ─────────────────────────────────────────────────── */

.st-footer {
    background: #0f2419;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.st-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.st-footer h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.st-footer p,
.st-footer a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    line-height: 1.7;
}

.st-footer a:hover { color: var(--accent, #52b788); }

.st-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-footer-links li { margin-bottom: 8px; }

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

.st-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    transition: all 0.3s;
}

.st-footer-social a:hover {
    background: var(--primary, #2d6a4f);
    color: #fff;
    transform: translateY(-3px);
}

.st-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    margin-top: 48px;
    text-align: center;
    font-size: 13px;
}

/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .st-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 24px 56px;
    }
    
    .st-hero-form-card { max-width: 480px; }
    .st-services-grid { grid-template-columns: repeat(2, 1fr); }
    .st-about-grid { gap: 40px; }
    .st-why-grid { grid-template-columns: repeat(2, 1fr); }
    .st-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .st-topbar-right { display: none; }
    
    .st-nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    
    .st-nav-links.active { display: flex; }
    .st-nav-toggle { display: flex; }
    
    .st-hero h1 { font-size: 30px; }
    .st-hero-sub { font-size: 16px; }
    
    .st-services-grid { grid-template-columns: 1fr; }
    .st-about-grid { grid-template-columns: 1fr; }
    .st-about-img { order: -1; }
    .st-about-stats { gap: 20px; }
    .st-why-grid { grid-template-columns: 1fr; }
    .st-contact-grid { grid-template-columns: 1fr; }
    .st-gallery-grid { grid-template-columns: 1fr 1fr; }
    .st-footer-grid { grid-template-columns: 1fr; }
    .st-testimonial-card { flex: 0 0 300px; }
    .st-form-checkboxes { grid-template-columns: 1fr; }
}
