/* ============================================================
   FRESH CUT TEMPLATE
   Bright, friendly, approachable lawn care design.
   Sticky transparent→solid header, grass divider before footer,
   rounded cards, playful but professional.
   Prefix: fc-
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=DM+Serif+Display&display=swap');

:root {
    --fc-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --fc-serif: 'DM Serif Display', Georgia, serif;
    --fc-green: var(--primary, #16a34a);
    --fc-green-dark: var(--secondary, #0f172a);
    --fc-green-light: #dcfce7;
    --fc-accent: var(--accent, #f59e0b);
    --fc-text: #1e293b;
    --fc-text-light: #64748b;
    --fc-white: #ffffff;
    --fc-off-white: #f8faf9;
    --fc-border: #e2e8f0;
    --fc-radius: 12px;
    --fc-radius-lg: 20px;
    --fc-shadow: 0 4px 16px rgba(0,0,0,0.06);
    --fc-shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
    --fc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--fc-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--fc-text);
    background: var(--fc-white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--fc-green); text-decoration: none; transition: var(--fc-transition); }
a:hover { color: var(--fc-green-dark); }

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

/* --- Sections --- */
.section { padding: 80px 0; }
.section-alt { background: var(--fc-off-white); }
.section-green { background: var(--fc-green); color: var(--fc-white); }
.section-dark { background: var(--fc-green-dark); color: var(--fc-white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--fc-green);
    margin-bottom: 12px;
    background: var(--fc-green-light);
    padding: 6px 16px;
    border-radius: 20px;
}
.section-green .section-header .eyebrow,
.section-dark .section-header .eyebrow {
    background: rgba(255,255,255,0.15);
    color: var(--fc-accent);
}
.section-header h2 {
    font-family: var(--fc-serif);
    font-size: clamp(30px, 4.5vw, 46px);
    color: var(--fc-green-dark);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-green .section-header h2,
.section-dark .section-header h2 { color: var(--fc-white); }
.section-header p {
    font-size: 18px;
    color: var(--fc-text-light);
    max-width: 580px;
    margin: 0 auto;
}
.section-green .section-header p,
.section-dark .section-header p { color: rgba(255,255,255,0.75); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--fc-sans);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--fc-transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--fc-green);
    color: var(--fc-white);
    border-color: var(--fc-green);
}
.btn-primary:hover {
    background: var(--fc-green-dark);
    border-color: var(--fc-green-dark);
    color: var(--fc-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22,163,74,0.3);
}
.btn-white {
    background: var(--fc-white);
    color: var(--fc-green-dark);
    border-color: var(--fc-white);
}
.btn-white:hover {
    background: transparent;
    color: var(--fc-white);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--fc-green);
    border-color: var(--fc-green);
}
.btn-outline:hover {
    background: var(--fc-green);
    color: var(--fc-white);
    transform: translateY(-2px);
}
.btn-accent {
    background: var(--fc-accent);
    color: var(--fc-green-dark);
    border-color: var(--fc-accent);
    font-weight: 800;
}
.btn-accent:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    color: var(--fc-green-dark);
}
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ============================================================
   STICKY TRANSPARENT → SOLID HEADER
   ============================================================ */
.fc-topbar {
    background: var(--fc-green-dark);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}
.fc-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fc-topbar a { color: rgba(255,255,255,0.8); margin-right: 18px; }
.fc-topbar a:hover { color: var(--fc-accent); }
.fc-topbar-social a { margin: 0 0 0 12px; }

.fc-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 16px 0;
}
.fc-nav.scrolled {
    background: var(--fc-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0;
}
.fc-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 64px;
}
.fc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.fc-logo img { height: 44px; width: auto; border-radius: 6px; }
.fc-logo-text {
    font-family: var(--fc-serif);
    font-size: 22px;
    color: var(--fc-white);
    transition: var(--fc-transition);
}
.fc-nav.scrolled .fc-logo-text { color: var(--fc-green-dark); }

.fc-nav-links { display: flex; align-items: center; gap: 4px; }
.fc-nav-links a {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    border-radius: 8px;
    transition: var(--fc-transition);
}
.fc-nav.scrolled .fc-nav-links a { color: var(--fc-text); }
.fc-nav-links a:hover,
.fc-nav-links a.active { color: var(--fc-white); background: rgba(255,255,255,0.15); }
.fc-nav.scrolled .fc-nav-links a:hover,
.fc-nav.scrolled .fc-nav-links a.active { color: var(--fc-green); background: var(--fc-green-light); }

.fc-nav-cta {
    background: var(--fc-accent) !important;
    color: var(--fc-green-dark) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
}
.fc-nav-cta:hover {
    filter: brightness(1.1) !important;
    transform: translateY(-1px);
}

.fc-nav-login {
    border: 1.5px solid rgba(0,0,0,0.12) !important;
    padding: 8px 18px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    color: var(--fc-text, #333) !important;
    background: transparent !important;
    transition: all 0.3s ease;
}
.fc-nav-login:hover {
    border-color: var(--fc-green, #16a34a) !important;
    color: var(--fc-green, #16a34a) !important;
    background: transparent !important;
}

/* Mobile Toggle */
.fc-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.fc-nav-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--fc-white);
    border-radius: 2px;
    transition: var(--fc-transition);
}
.fc-nav.scrolled .fc-nav-toggle span { background: var(--fc-green-dark); }

/* ============================================================
   HERO
   ============================================================ */
.fc-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--fc-green-dark) 0%, #0d3320 100%);
    overflow: hidden;
    padding-top: 80px;
}
.fc-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.fc-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15,23,42,var(--hero-overlay,0.55)), rgba(13,51,32,var(--hero-overlay,0.55)));
}
.fc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 24px;
    margin: 0 auto 0 8%;
}
.fc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--fc-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.fc-hero h1 {
    font-family: var(--fc-serif);
    font-size: clamp(38px, 5.5vw, 64px);
    color: var(--fc-white);
    line-height: 1.08;
    margin-bottom: 20px;
}
.fc-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 520px;
}
.fc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.fc-hero-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.fc-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.fc-hero-trust-item i {
    color: var(--fc-accent);
    font-size: 16px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.fc-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.fc-service-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--fc-border);
    transition: var(--fc-transition);
    display: block;
    color: inherit;
}
.fc-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fc-shadow-lg);
    border-color: var(--fc-green);
    color: inherit;
}
.fc-service-card-img {
    height: 180px;
    overflow: hidden;
    background: var(--fc-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fc-service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--fc-transition); }
.fc-service-card:hover .fc-service-card-img img { transform: scale(1.06); }
.fc-service-card-img .fc-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--fc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--fc-green);
    box-shadow: var(--fc-shadow);
}
.fc-service-card-body { padding: 24px; }
.fc-service-card-body h3 {
    font-family: var(--fc-serif);
    font-size: 20px;
    color: var(--fc-green-dark);
    margin-bottom: 8px;
}
.fc-service-card-body p {
    font-size: 15px;
    color: var(--fc-text-light);
    line-height: 1.6;
    margin-bottom: 14px;
}
.fc-service-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--fc-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fc-service-card:hover .fc-service-link { gap: 10px; }

/* ============================================================
   ABOUT / CONTENT GRID
   ============================================================ */
.fc-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.fc-content-image { position: relative; border-radius: var(--fc-radius-lg); overflow: hidden; }
.fc-content-image img {
    border-radius: var(--fc-radius-lg);
    box-shadow: var(--fc-shadow-lg);
    width: 100%;
    object-fit: cover;
}
.fc-content-image .fc-badge-float {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--fc-accent);
    color: var(--fc-green-dark);
    padding: 16px 20px;
    border-radius: var(--fc-radius);
    font-weight: 800;
    font-size: 14px;
    box-shadow: var(--fc-shadow-lg);
    line-height: 1.3;
    text-align: center;
}
.fc-content-body h2 {
    font-family: var(--fc-serif);
    font-size: clamp(26px, 3.5vw, 38px);
    color: var(--fc-green-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}
.fc-content-body p { color: var(--fc-text-light); margin-bottom: 16px; }
.fc-checklist { list-style: none; margin: 24px 0; }
.fc-checklist li {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}
.fc-checklist li i {
    width: 24px;
    height: 24px;
    background: var(--fc-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--fc-green);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.fc-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.fc-testimonial {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    padding: 32px;
    border: 1px solid var(--fc-border);
    transition: var(--fc-transition);
    position: relative;
}
.fc-testimonial:hover { box-shadow: var(--fc-shadow); transform: translateY(-3px); }
.fc-testimonial-stars { color: var(--fc-accent); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.fc-testimonial-text {
    font-size: 16px;
    color: var(--fc-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.fc-testimonial-author { font-weight: 700; color: var(--fc-green-dark); font-size: 15px; }
.fc-testimonial-location { font-size: 13px; color: var(--fc-text-light); }

/* ============================================================
   FAQ
   ============================================================ */
.fc-faq-list { max-width: 800px; margin: 0 auto; }
.fc-faq-item {
    border: 1px solid var(--fc-border);
    border-radius: var(--fc-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--fc-transition);
}
.fc-faq-item:hover { border-color: var(--fc-green); }
.fc-faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 16px;
    color: var(--fc-green-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}
.fc-faq-question:hover { background: var(--fc-green-light); }
.fc-faq-toggle { font-size: 12px; transition: var(--fc-transition); color: var(--fc-green); }
.fc-faq-item.open .fc-faq-toggle { transform: rotate(180deg); }
.fc-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.fc-faq-item.open .fc-faq-answer { max-height: 500px; }
.fc-faq-answer p { padding: 0 24px 20px; color: var(--fc-text-light); line-height: 1.7; }

/* ============================================================
   GALLERY
   ============================================================ */
.fc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.fc-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--fc-radius-lg);
    aspect-ratio: 4/3;
}
.fc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--fc-transition); }
.fc-gallery-item:hover img { transform: scale(1.08); }
.fc-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--fc-white);
    font-size: 14px;
    font-weight: 600;
    transform: translateY(100%);
    transition: var(--fc-transition);
}
.fc-gallery-item:hover .fc-gallery-overlay { transform: translateY(0); }

/* ============================================================
   BLOG
   ============================================================ */
.fc-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.fc-blog-card {
    background: var(--fc-white);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--fc-border);
    transition: var(--fc-transition);
    display: block;
}
.fc-blog-card:hover { transform: translateY(-4px); box-shadow: var(--fc-shadow-lg); }
.fc-blog-card-image { height: 200px; overflow: hidden; }
.fc-blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--fc-transition); }
.fc-blog-card:hover .fc-blog-card-image img { transform: scale(1.05); }
.fc-blog-card-body { padding: 24px; }
.fc-blog-card-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--fc-green);
    background: var(--fc-green-light);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.fc-blog-card-body h3 {
    font-family: var(--fc-serif);
    font-size: 18px;
    color: var(--fc-green-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.fc-blog-card-body p { font-size: 14px; color: var(--fc-text-light); line-height: 1.6; }

/* ============================================================
   CONTACT / CTA
   ============================================================ */
.fc-cta {
    padding: 72px 0;
    text-align: center;
    position: relative;
}
.fc-cta h2 {
    font-family: var(--fc-serif);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--fc-white);
    margin-bottom: 16px;
}
.fc-cta p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 32px; }

.fc-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.fc-contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.fc-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--fc-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-green);
    font-size: 18px;
    flex-shrink: 0;
}
.fc-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 6px;
}
.fc-form input, .fc-form textarea, .fc-form select {
    width: 100%;
    padding: 13px 18px;
    font-size: 15px;
    font-family: var(--fc-sans);
    border: 2px solid var(--fc-border);
    border-radius: var(--fc-radius);
    background: var(--fc-white);
    color: var(--fc-text);
    transition: var(--fc-transition);
    margin-bottom: 16px;
}
.fc-form input:focus, .fc-form textarea:focus {
    outline: none;
    border-color: var(--fc-green);
    box-shadow: 0 0 0 3px rgba(22,163,74,0.1);
}
.fc-form textarea { min-height: 120px; resize: vertical; }
.form-success { display: none; padding: 16px; background: var(--fc-green-light); border-radius: var(--fc-radius); color: var(--fc-green-dark); font-weight: 600; margin-bottom: 16px; }

/* ============================================================
   GRASS DIVIDER (unique to Fresh Cut)
   ============================================================ */
.fc-grass-divider {
    position: relative;
    height: 80px;
    background: var(--fc-green-dark);
    overflow: hidden;
}
.fc-grass-divider svg {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.fc-page-header {
    background: linear-gradient(160deg, var(--fc-green-dark), #0d3320);
    padding: 120px 0 48px;
    text-align: center;
}
.fc-page-header h1 {
    font-family: var(--fc-serif);
    font-size: clamp(30px, 4vw, 46px);
    color: var(--fc-white);
    margin-bottom: 8px;
}
.fc-page-header p { color: rgba(255,255,255,0.7); font-size: 17px; }
.fc-breadcrumbs { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.fc-breadcrumbs a { color: rgba(255,255,255,0.6); }
.fc-breadcrumbs a:hover { color: var(--fc-white); }

/* ============================================================
   SERVICE DETAIL
   ============================================================ */
.fc-service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.fc-article { max-width: 800px; }
.fc-article h2 { font-family: var(--fc-serif); font-size: 28px; color: var(--fc-green-dark); margin: 32px 0 16px; }
.fc-article h3 { font-family: var(--fc-serif); font-size: 22px; color: var(--fc-green-dark); margin: 24px 0 12px; }
.fc-article p { margin-bottom: 16px; line-height: 1.8; }
.fc-article img { border-radius: var(--fc-radius-lg); margin: 24px 0; }
.fc-article ul, .fc-article ol { margin: 16px 0; padding-left: 24px; }
.fc-article li { margin-bottom: 8px; color: var(--fc-text-light); }

.fc-sidebar-card {
    background: var(--fc-off-white);
    border-radius: var(--fc-radius-lg);
    padding: 28px;
    position: sticky;
    top: 96px;
}
.fc-sidebar-card h3 {
    font-family: var(--fc-serif);
    font-size: 20px;
    color: var(--fc-green-dark);
    margin-bottom: 16px;
}
.fc-sidebar-card a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--fc-border);
    font-size: 15px;
    color: var(--fc-text);
}
.fc-sidebar-card a:hover { color: var(--fc-green); padding-left: 4px; }
.fc-sidebar-card a:last-child { border: none; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.fc-areas-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.fc-area-tag {
    display: inline-block;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--fc-green);
    border-radius: 50px;
    color: var(--fc-green);
    transition: var(--fc-transition);
}
.fc-area-tag:hover { background: var(--fc-green); color: var(--fc-white); }

/* ============================================================
   FOOTER
   ============================================================ */
.fc-footer {
    background: var(--fc-green-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.fc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.fc-footer h4 {
    color: var(--fc-white);
    font-family: var(--fc-serif);
    font-size: 18px;
    margin-bottom: 20px;
}
.fc-footer p { font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.fc-footer-links { display: flex; flex-direction: column; }
.fc-footer-links a {
    color: rgba(255,255,255,0.6);
    padding: 5px 0;
    font-size: 15px;
    transition: var(--fc-transition);
}
.fc-footer-links a:hover { color: var(--fc-white); padding-left: 4px; }
.fc-social { display: flex; gap: 10px; margin-top: 16px; }
.fc-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--fc-transition);
}
.fc-social a:hover { background: var(--fc-green); color: var(--fc-white); }
.fc-footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
    color: rgba(255,255,255,0.4);
}
.fc-footer-bottom a { color: var(--fc-green); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .fc-services-grid { grid-template-columns: repeat(2, 1fr); }
    .fc-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .fc-service-detail-grid { grid-template-columns: 1fr; }
    .fc-sidebar-card { position: static; }
}

@media (max-width: 768px) {
    .fc-topbar { display: none; }
    .fc-nav-toggle { display: flex; }
    .fc-nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--fc-white);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--fc-shadow-lg);
    }
    .fc-nav-links.open { display: flex; }
    .fc-nav-links a { color: var(--fc-text) !important; padding: 12px 0; border-bottom: 1px solid var(--fc-border); }
    .fc-nav-cta { text-align: center; margin-top: 8px; }

    .fc-hero { min-height: 520px; }
    .fc-hero-inner { margin: 0 auto; text-align: center; padding: 60px 24px; }
    .fc-hero-actions { justify-content: center; }
    .fc-hero-trust { justify-content: center; }

    .fc-content-grid { grid-template-columns: 1fr; gap: 36px; }
    .fc-contact-grid { grid-template-columns: 1fr; }
    .fc-services-grid { grid-template-columns: 1fr; }
    .fc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .fc-blog-grid { grid-template-columns: 1fr; }
    .fc-footer-grid { grid-template-columns: 1fr; }
    .fc-testimonials-grid { grid-template-columns: 1fr; }

    .section { padding: 56px 0; }
    .fc-page-header { padding: 100px 0 40px; }
}

@media (max-width: 480px) {
    .fc-gallery-grid { grid-template-columns: 1fr; }
}
