:root {
    --primary: #2d7a3e;
    --primary-dark: #1a5228;
    --primary-darker: #0f3a1a;
    --primary-light: #6ab547;
    --primary-lighter: #e8f5e0;
    --accent: #a4c639;
    --accent-dark: #7a9829;
    --accent-warm: #d9e89a;

    --bg: #fafdf7;
    --bg-alt: #f2f8ea;
    --bg-card: #ffffff;

    --text-primary: #122b17;
    --text-secondary: #5a6b5d;
    --text-muted: #8a9a8d;
    --border: #e1ebda;

    --shadow-sm: 0 2px 8px rgba(26, 82, 40, 0.06);
    --shadow: 0 10px 40px rgba(26, 82, 40, 0.10);
    --shadow-lg: 0 25px 60px rgba(26, 82, 40, 0.15);
    --shadow-green: 0 12px 30px rgba(45, 122, 62, 0.28);

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary-light);
    color: var(--primary-darker);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border);
    transition: all 0.35s var(--ease);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo img {
    width: 120px;
    height: 120px;
    top: 2px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    background: #fff;
    padding: 2px;
    box-shadow: 0 6px 18px rgba(45, 122, 62, 0.25), inset 0 0 0 1px rgba(45, 122, 62, 0.1);
    transition: transform 0.4s var(--ease);
}

.logo:hover img {
    transform: rotate(-6deg) scale(1.04);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.nav-links a.active {
    color: white;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: var(--shadow-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--primary);
}

.nav-phone-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-alt);
    border-radius: 50%;
    font-size: 1.1rem;
}

.btn-nav-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-green);
    transition: all 0.3s var(--ease);
}

.btn-nav-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 122, 62, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: 0.3s;
}

/* ---------- Hero Slider Full Width BG ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slider-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 58, 26, 0.75) 0%, rgba(26, 82, 40, 0.6) 50%, rgba(15, 58, 26, 0.7) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 32px;
    animation: fadeInUp 0.8s ease forwards;
}

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

.slide.active .slide-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: white;
}

.hero h1 span {
    background: linear-gradient(135deg, #a4c639 0%, #d9e89a 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.btn-outline-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 14px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(45, 122, 62, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary);
    color: var(--primary-dark);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    background: var(--primary-lighter);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* ---------- Hero Showcase ---------- */
.hero-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-showcase > img {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(26, 82, 40, 0.25), 0 0 0 6px rgba(255, 255, 255, 0.6);
    animation: gentle-tilt 8s ease-in-out infinite;
}

@keyframes gentle-tilt {
    0%, 100% { transform: rotate(-2deg) translateY(0); }
    50% { transform: rotate(-0.5deg) translateY(-10px); }
}

.badge-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(45, 122, 62, 0.15);
    border-radius: 20px;
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float 7s ease-in-out infinite;
    z-index: 2;
}

.badge-floating.badge-stat { top: 5%; left: -8%; animation-delay: 0.5s; }
.badge-floating.badge-rating { bottom: 10%; right: -8%; animation-delay: 3s; }

.badge-floating .badge-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-warm));
    border-radius: 14px;
}

.badge-floating .stat-num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.badge-floating .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 4px;
}

.badge-floating .star-row {
    font-size: 0.95rem;
    color: #f5b301;
    letter-spacing: 2px;
    line-height: 1;
}

.badge-floating .rating-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-top: 4px;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

/* ---------- Slider Controls ---------- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 1.2rem;
    color: white;
    z-index: 100;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-prev { left: 40px; }
.slider-next { right: 40px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 100;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border: 1.5px solid var(--primary-light);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(45, 122, 62, 0.08);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--primary-darker);
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Features ---------- */
.features {
    padding: 120px 0;
    background: var(--bg);
    position: relative;
}

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

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary-lighter) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 22px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-warm) 100%);
    border-radius: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-darker);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.features.features-alt {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.features.features-alt .section-header .tag {
    background: rgba(45, 122, 62, 0.2);
    border-color: rgba(45, 122, 62, 0.4);
    color: #86efac;
}

.features.features-alt .section-header h2 {
    color: white;
}

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

.features.features-alt .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.features.features-alt .feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(45, 122, 62, 0.5);
}

.features.features-alt .feature-card h3 {
    color: white;
}

.features.features-alt .feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

.features.features-alt .feature-icon {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.3) 0%, rgba(164, 198, 57, 0.2) 100%);
}

.features.features-dark {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.features.features-dark .section-header .tag {
    background: rgba(45, 122, 62, 0.2);
    border-color: rgba(45, 122, 62, 0.4);
    color: #86efac;
}

.features.features-dark .section-header h2 {
    color: white;
}

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

.features.features-dark .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.features.features-dark .feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(45, 122, 62, 0.5);
}

.features.features-dark .feature-card h3 {
    color: white;
}

.features.features-dark .feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

.features.features-dark .feature-icon {
    background: linear-gradient(135deg, rgba(45, 122, 62, 0.3) 0%, rgba(164, 198, 57, 0.2) 100%);
}

/* ---------- CTA ---------- */
.cta {
    padding: 120px 0;
    background:
        radial-gradient(1000px 500px at 85% 20%, rgba(164, 198, 57, 0.25) 0%, transparent 60%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-darker) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(164, 198, 57, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
    line-height: 1.15;
}

.cta-content p {
    font-size: 1.18rem;
    margin-bottom: 40px;
    opacity: 0.92;
    color: white;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(180deg, #0f3a1a 0%, #081f0e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(164, 198, 57, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    background: #fff;
    padding: 3px;
    box-shadow: 0 6px 18px rgba(164, 198, 57, 0.25);
}

.footer-brand p {
    color: #c2d1c4;
    font-size: 0.95rem;
    line-height: 1.75;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--accent) 100%);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #c2d1c4;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact p {
    color: #c2d1c4;
    font-size: 0.95rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(194, 209, 196, 0.15);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #8aa08d;
    font-size: 0.88rem;
}

/* ---------- Page Header ---------- */
.page-header {
    padding: 180px 0 100px;
    background:
        linear-gradient(135deg, rgba(15, 58, 26, 0.85) 0%, rgba(26, 82, 40, 0.75) 50%, rgba(15, 58, 26, 0.85) 100%),
        url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 500px at 30% -20%, rgba(164, 198, 57, 0.15) 0%, transparent 60%),
        radial-gradient(800px 400px at 80% 110%, rgba(45, 122, 62, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1.5px;
    position: relative;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
    line-height: 1.7;
}

.content-section {
    padding: 100px 0;
}

/* ---------- Services ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    font-size: 2.6rem;
    margin-bottom: 22px;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-warm) 100%);
    border-radius: 20px;
    transition: transform 0.4s var(--ease);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-darker);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    margin:35px 0;
}

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

.contact-item {
    background: white;
    border-radius: var(--radius);
    padding: 26px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.contact-item .icon {
    font-size: 1.7rem;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--accent-warm) 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-darker);
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.form-group label {
    display: block;
    font-size: 0.93rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-darker);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 122, 62, 0.12);
}

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

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

/* ---------- Team ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
}

.team-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-green);
}

.team-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary-darker);
}

.team-card p {
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.fade-left { transform: translateX(-60px); }
.reveal.fade-right { transform: translateX(60px); }
.reveal.fade-left.visible,
.reveal.fade-right.visible { transform: translateX(0); }
.reveal.fade-zoom { transform: scale(0.9); }
.reveal.fade-zoom.visible { transform: scale(1); }

.reveal.d-1 { transition-delay: 0.1s; }
.reveal.d-2 { transition-delay: 0.2s; }
.reveal.d-3 { transition-delay: 0.3s; }
.reveal.d-4 { transition-delay: 0.4s; }
.reveal.d-5 { transition-delay: 0.5s; }

/* ---------- Stats section ---------- */
.stats-section {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
    position: relative;
}
.stat-box:hover {
    transform: translateY(-6px);
    background: var(--bg-alt);
    box-shadow: var(--shadow);
}
.stat-icon {
    font-size: 1.7rem;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 18px;
    margin: 0 auto 18px;
    box-shadow: var(--shadow-green);
    transition: transform 0.4s var(--ease);
}
.stat-box:hover .stat-icon { transform: scale(1.1) rotate(-6deg); }
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: inline-flex;
    align-items: baseline;
}
.stat-suffix {
    -webkit-text-fill-color: initial;
    background: none;
    color: var(--primary);
}
.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 10px;
}

/* ---------- Service cards with images ---------- */
.service-card.has-image {
    padding: 0;
    overflow: hidden;
}
.service-image-wrap {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-warm));
}
.service-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.service-card.has-image:hover .service-image-wrap img {
    transform: scale(1.1);
}
.service-image-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 58, 26, 0.45) 100%);
    transition: opacity 0.4s;
}
.image-tag {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-content { padding: 26px 28px 32px; }
.service-content h3 {
    font-size: 1.22rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-darker);
}
.service-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ---------- About split ---------- */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-wrap::before {
    content: '';
    position: absolute; top: -20px; right: -20px;
    width: 180px; height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(40px);
    z-index: -1;
}
.about-image-wrap img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 1.2s var(--ease);
}
.about-image-wrap:hover img { transform: scale(1.05); }
.about-image-wrap .floating-stat-card {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    justify-content: space-around;
    gap: 16px;
    box-shadow: var(--shadow);
}
.floating-stat-card > div { text-align: center; }
.floating-stat-card .num {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}
.floating-stat-card .lbl {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1.2px;
    color: var(--primary-darker);
    line-height: 1.15;
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-list {
    list-style: none;
    margin-top: 22px;
}
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.98rem;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    padding: 120px 0;
    background:
        radial-gradient(800px 400px at 20% 30%, rgba(164, 198, 57, 0.15) 0%, transparent 65%),
        radial-gradient(600px 400px at 90% 80%, rgba(45, 122, 62, 0.1) 0%, transparent 65%),
        linear-gradient(180deg, #f8fbf2 0%, #eff7e0 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 34px 30px 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
    position: relative;
    overflow: hidden;
}
.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px; right: 22px;
    font-size: 7rem;
    font-family: Georgia, serif;
    color: var(--primary-lighter);
    line-height: 1;
    pointer-events: none;
}
.testimonial-stars {
    color: #f5b301;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
    position: relative;
}
.testimonial-card > p {
    color: var(--text-primary);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: var(--shadow-green);
    flex-shrink: 0;
}
.testimonial-author h5 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 2px;
}
.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--primary-lighter);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.4s;
}
.gallery-item:hover { box-shadow: var(--shadow-lg); }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 58, 26, 0.75) 100%);
    opacity: 0.5;
    transition: opacity 0.4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
    position: absolute;
    bottom: 18px; left: 22px; right: 22px;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    transform: translateY(10px);
    opacity: 0;
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    z-index: 1;
    line-height: 1.3;
}
.gallery-caption small {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.blog-featured {
    grid-row: span 2;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.blog-featured:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-featured .blog-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-featured .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-featured:hover .blog-image img {
    transform: scale(1.08);
}

.blog-featured .blog-content {
    padding: 32px;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-date, .blog-author {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.blog-featured h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-darker);
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-featured p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    display: grid;
    grid-template-columns: 200px 1fr;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

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

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 24px;
}

.blog-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--primary-dark);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 12px 24px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-numbers a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.pagination-numbers a:hover,
.pagination-numbers a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ---------- Gallery Filter ---------- */
.gallery-filter {
    padding: 40px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ---------- Gallery Masonry ---------- */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-warm));
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 58, 26, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    display: flex;
    align-items: flex-end;
}

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

.gallery-info {
    padding: 24px;
    color: white;
}

.gallery-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.gallery-info p {
    font-size: 0.85rem;
    opacity: 0.85;
}

.gallery-load-more {
    text-align: center;
    margin-top: 50px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .feature-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 50px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-wide { grid-column: span 2; }

    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero h1 { font-size: 2.8rem; }
    .hero p { margin: 0 auto 36px; }
    .hero-btns { justify-content: center; }
    .hero-showcase { display: none; }

    .section-header h2 { font-size: 2.4rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .navbar {
        padding: 12px 0;
    }

    .navbar .container {
        gap: 12px;
    }

    .logo img {
        width: 50px;
        height: 50px;
        top: auto;
        position: relative;
        padding: 2px;
        box-shadow: 0 4px 12px rgba(45, 122, 62, 0.2);
    }

    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }

    .hero {
        min-height: 100vh;
        padding: 0;
    }

    .slide-content {
        padding: 0 20px;
    }

    .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero p { font-size: 0.95rem; margin-bottom: 24px; padding: 0 10px; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .btn { width: 100%; max-width: 260px; justify-content: center; padding: 14px 20px; font-size: 0.9rem; }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }

    .section-header h2 { font-size: 1.8rem; }
    .section-header p { font-size: 0.95rem; }

    .feature-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card,
    .service-card {
        padding: 24px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand img {
        margin: 0 auto 16px;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        font-size: 0.88rem;
    }

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

    .page-header {
        padding: 120px 0 60px;
        background-attachment: scroll;
    }
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 0.95rem; }

    .cta-content h2 { font-size: 1.8rem; }
    .cta { padding: 70px 0; }
    .features, .content-section, .testimonials-section { padding: 70px 0; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-number { font-size: 2rem; }
    .stat-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .stat-label { font-size: 0.85rem; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    .gallery-tall, .gallery-wide {
        grid-row: auto;
        grid-column: auto;
    }

    /* Blog Responsive */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured {
        grid-row: auto;
    }

    .blog-featured .blog-content {
        padding: 20px;
    }

    .blog-featured h2 {
        font-size: 1.4rem;
    }

    .blog-card {
        grid-template-columns: 120px 1fr;
    }

    .blog-card-image {
        min-height: 120px;
    }

    .blog-card-content {
        padding: 16px;
    }

    .blog-card h3 {
        font-size: 0.95rem;
    }

    .blog-card p {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .blog-pagination {
        flex-wrap: wrap;
        gap: 12px;
    }

    .pagination-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .pagination-numbers a {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    /* Gallery Responsive */
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .gallery-tall {
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 1;
    }

    .filter-tabs {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .about-text h2 { font-size: 1.7rem; }
    .about-text p { font-size: 0.95rem; }

    .about-list li {
        font-size: 0.88rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-card > p {
        font-size: 0.88rem;
    }

    /* Services page */
    .service-card.has-image .service-content {
        padding: 16px 18px 24px;
    }

    .service-card.has-image h3 {
        font-size: 1rem;
    }

    .service-card.has-image p {
        font-size: 0.85rem;
    }

    /* Mobile Menu Active State */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        gap: 8px;
        z-index: 999;
    }

    .nav-links.active a {
        padding: 14px 20px;
        border-radius: var(--radius);
        background: var(--bg-alt);
    }

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

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 22px;
        height: 2px;
    }
}