/* ═══════════════════════════════════════════════════════════
   GADSDEN CLASSIC — LawnHosting Template
   A warm, trustworthy design for established lawn care companies
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (overridden by site colors) ── */
:root {
    --primary: #16a34a;
    --primary-dark: #1a5c2a;
    --primary-light: #e8f5e9;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --accent-light: #f5ecd4;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --bg: #ffffff;
    --bg-warm: #faf8f5;
    --bg-section: #f5f3ef;
    --border: #e8e4de;
    --shadow-sm: 0 2px 8px rgba(26,60,42,0.06);
    --shadow-md: 0 4px 20px rgba(26,60,42,0.08);
    --shadow-lg: 0 8px 40px rgba(26,60,42,0.12);
    --shadow-xl: 0 20px 60px rgba(26,60,42,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--secondary); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 900; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.125rem; font-weight: 700; }
p + p { margin-top: 1em; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(45,122,62,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45,122,62,0.4);
}

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

.btn-accent {
    background: var(--accent);
    color: var(--secondary);
    box-shadow: 0 4px 16px rgba(212,168,67,0.3);
}
.btn-accent:hover {
    background: #c49a38;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--secondary);
}
.btn-white:hover {
    background: var(--primary-light);
}

.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Trust Bar ── */
.trust-bar {
    background: var(--secondary);
    color: rgba(255,255,255,0.9);
    padding: 10px 0;
    font-size: 13px;
    letter-spacing: 0.3px;
    border-bottom: 2px solid var(--accent);
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.trust-bar-item i { color: var(--accent); }

/* ── Navigation ── */
.gc-nav {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s;
}

.gc-nav.scrolled { box-shadow: var(--shadow-md); }

.gc-nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gc-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--secondary);
    flex-shrink: 0;
}

.gc-logo img {
    height: 48px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
}

.gc-logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.gc-nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
}

.gc-nav-links a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    white-space: nowrap;
}

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

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

.gc-nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-sm) !important;
    margin-left: 8px;
}
.gc-nav-cta:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

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

/* Mobile Menu Toggle */
.gc-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.gc-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    margin: 6px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.gc-nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.gc-nav-toggle.active span:nth-child(2) { opacity: 0; }
.gc-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ── Section Styles ── */
.section { padding: 100px 0; }
.section-warm { background: var(--bg-warm); }
.section-alt { background: var(--bg-section); }
.section-dark { background: var(--secondary); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.8); }

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

.section-header h2 { margin-bottom: 16px; }

.section-header .section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header .section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ── Hero ── */
.gc-hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d2618 50%, #1a3c2a 100%);
    color: #fff;
}

.gc-hero[style] h1 { color: var(--hero-text, #fff); }
.gc-hero[style] .gc-hero-subtitle { color: var(--hero-text, #fff); opacity: 0.9; }
.gc-hero[style] .gc-hero-phone a { color: var(--hero-text, #fff); }

.gc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gc-hero::after {
    content: '';
    position: absolute;
    z-index: 0;
    right: -200px;
    top: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45,122,62,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.gc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gc-hero h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}

.gc-hero-subtitle {
    font-size: 19px;
    opacity: 0.9;
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 520px;
}

.gc-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.gc-hero-phone {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gc-hero-phone a { color: #fff; text-decoration: none; }
.gc-hero-phone i { color: var(--accent); }

/* Hero Stats */
.gc-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gc-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}
.gc-stat:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}

.gc-stat-number {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.gc-stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.7;
    font-weight: 600;
}

/* ── Service Cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 28px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), #d4edda);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.service-card-price {
    margin-top: 16px;
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.2s;
}
.service-card-link:hover { gap: 10px; }

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-content .section-label { text-align: left; }
.about-content h2 { text-align: left; margin-bottom: 20px; }

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 16px;
}

.about-badges {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

.about-badge i {
    width: 36px;
    height: 36px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    opacity: 0.95;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
}

.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-location { font-size: 13px; opacity: 0.6; }

/* ── FAQ ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
    padding: 22px 28px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--secondary);
    transition: color 0.2s;
    user-select: none;
}

.faq-question:hover { color: var(--primary); }

.faq-toggle {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--primary);
    font-size: 14px;
}

.faq-item.active .faq-toggle { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ── Contact Section ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; }

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.contact-detail h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin-bottom: 4px;
}

.contact-detail p { color: var(--text); font-size: 15px; }
.contact-detail a { color: var(--text); transition: color 0.2s; }
.contact-detail a:hover { color: var(--primary); }

/* ── Forms ── */
.gc-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { position: relative; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.gc-form input,
.gc-form textarea,
.gc-form select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.gc-form input:focus,
.gc-form textarea:focus,
.gc-form select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,122,62,0.1);
}

.gc-form textarea { height: 140px; resize: vertical; }

.gc-form .btn { width: 100%; justify-content: center; }

.form-success {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
    display: none;
}

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

/* ── Map ── */
.gc-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-md);
    border: 0;
    margin-top: 24px;
}

/* ── Footer ── */
.gc-footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.85);
    padding: 64px 0 0;
}

.gc-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.gc-footer h4 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.gc-footer p { font-size: 14px; line-height: 1.8; }

.gc-footer-links a {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.gc-footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.gc-footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}
.gc-footer-contact i { color: var(--accent); width: 16px; text-align: center; }

.gc-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.gc-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all 0.2s;
}
.gc-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

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

.gc-footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.gc-footer-bottom a:hover { color: var(--accent); }

/* ── Gallery Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,60,42,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: #fff;
    font-weight: 600;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ── Blog Cards ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 28px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.blog-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

/* ── Service Areas ── */
.areas-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: #fff;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.area-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ── Page Header (for inner pages) ── */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #0d2618 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-inner {
    position: relative;
    z-index: 1;
}

.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p { opacity: 0.8; font-size: 18px; max-width: 600px; margin: 0 auto; }

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.6;
}
.breadcrumbs a { color: #fff; text-decoration: underline; }
.breadcrumbs a:hover { opacity: 1; }

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; font-size: 18px; }

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.6s, transform 0.6s;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.6s, transform 0.6s;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .gc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .gc-stats { grid-template-columns: repeat(4, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper::before { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .gc-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    :root { --nav-height: 64px; }
    .section { padding: 64px 0; }

    .gc-nav-links { 
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }
    .gc-nav-links.open { display: flex; }
    .gc-nav-links a { font-size: 18px; padding: 12px 24px; }
    .gc-nav-toggle { display: block; }

    .gc-hero { padding: 60px 0 80px; }
    .gc-hero h1 { font-size: 2rem; }
    .gc-stats { grid-template-columns: repeat(2, 1fr); }

    .trust-bar-inner { gap: 16px; font-size: 12px; }

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

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

@media (max-width: 480px) {
    .gc-hero-actions { flex-direction: column; }
    .gc-hero-actions .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}
