/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a4d2e;
    --primary-light: #2d6a3e;
    --accent: #7cb342;
    --accent-hover: #689f38;
    --text: #1a1a2e;
    --text-light: #4a4a5a;
    --text-muted: #6b7280;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #f1f5f9;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(26,77,46,0.08);
    --shadow-lg: 0 10px 40px rgba(26,77,46,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }

/* ===== Top Bar ===== */
.top-bar { background: var(--primary); color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 10px 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-address, .top-bar-email { display: flex; align-items: center; gap: 6px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.top-bar svg { flex-shrink: 0; }

/* ===== Navigation ===== */
.main-nav { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 85px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.3rem; color: var(--primary); }
.logo-icon {
    width: 38px; height: 38px; background: var(--primary); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius); font-size: 1.1rem;
}
.logo-text { color: var(--primary); }
.nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-menu a {
    display: block; padding: 10px 16px; border-radius: var(--radius);
    font-weight: 500; font-size: 0.92rem; color: var(--text-light);
    transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: var(--bg-dark); }
.nav-menu a.nav-cta {
    background: var(--accent); color: #fff; margin-left: 8px;
}
.nav-menu a.nav-cta:hover { background: var(--accent-hover); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--transition); }

/* Dropdown Menu */
.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    padding: 10px 18px;
    font-size: 0.88rem;
    color: var(--text-light);
    display: block;
    border-radius: 0;
    border-bottom: none;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: var(--bg-dark);
    color: var(--primary);
}
.dropdown-menu li a::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff; padding: 100px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; background: rgba(124,179,66,0.08);
    border-radius: 50%;
}
.hero .container { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-visual {
    position: relative; z-index: 1; flex-shrink: 0;
    width: 380px; height: 300px; display: flex; align-items: center; justify-content: center;
}
.hero-visual svg { width: 100%; height: 100%; }
.hero h1 {
    font-family: 'Playfair Display', serif; font-size: 3.2rem;
    font-weight: 700; line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px;
    border-radius: var(--radius); font-weight: 600; font-size: 0.95rem;
    transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(124,179,66,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); color: #fff; }

/* ===== Section Styles ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-light); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-header h2 {
    font-family: 'Playfair Display', serif; font-size: 2.4rem;
    color: var(--primary); margin-bottom: 14px;
}
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ===== Feature Cards ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--bg); padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.feature-icon {
    width: 52px; height: 52px; background: var(--bg-dark); color: var(--accent);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 1.4rem; font-weight: 700;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary); }
.feature-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

/* ===== Stats Bar ===== */
.stats-bar { background: var(--primary); color: #fff; padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--accent); margin-bottom: 6px; }
.stat-item p { color: rgba(255,255,255,0.75); font-size: 0.9rem; }

/* ===== About Preview ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary); margin-bottom: 18px; }
.about-content p { color: var(--text-light); margin-bottom: 16px; }
.about-content ul { list-style: none; margin: 20px 0; }
.about-content li { padding: 6px 0; color: var(--text); display: flex; align-items: center; gap: 10px; }
.about-content li::before { content: '\2713'; color: var(--accent); font-weight: bold; }
.about-image {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--border) 100%);
    border-radius: var(--radius-lg); min-height: 350px; display: flex;
    align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.about-image-inner {
    text-align: center; padding: 40px;
}
.about-image-inner .logo-icon {
    width: 80px; height: 80px; font-size: 2.5rem; margin: 0 auto 20px;
}
.about-image-inner h3 { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.5rem; }

/* ===== Services List ===== */
.services-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-item {
    background: var(--bg); padding: 28px; border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent); box-shadow: var(--shadow); transition: var(--transition);
}
.service-item:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); }
.service-item h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.service-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.55; }

/* ===== Philosophy Timeline ===== */
.philosophy-timeline { max-width: 800px; margin: 0 auto; }
.philosophy-step {
    display: flex; gap: 24px; margin-bottom: 40px; position: relative;
}
.philosophy-step:last-child { margin-bottom: 0; }
.philosophy-step::before {
    content: ''; position: absolute; left: 23px; top: 50px; bottom: -30px;
    width: 2px; background: var(--border);
}
.philosophy-step:last-child::before { display: none; }
.step-number {
    width: 48px; height: 48px; background: var(--primary); color: var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; flex-shrink: 0; position: relative; z-index: 1;
}
.step-content h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 10px; }
.step-content ul { list-style: none; margin-top: 10px; }
.step-content li { padding: 4px 0; color: var(--text-light); font-size: 0.92rem; display: flex; align-items: flex-start; gap: 8px; }
.step-content li::before { content: '\2022'; color: var(--accent); font-weight: bold; }

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
.contact-info p { color: var(--text-light); margin-bottom: 24px; }
.contact-detail {
    display: flex; align-items: flex-start; gap: 14px; padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
    width: 44px; height: 44px; background: var(--bg-dark); color: var(--accent);
    border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--text); font-weight: 500; }
.contact-form-card {
    background: var(--bg); padding: 40px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 28px; font-size: 0.95rem; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group label .required { color: #dc2626; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border);
    border-radius: var(--radius); font-family: inherit; font-size: 0.95rem;
    color: var(--text); background: var(--bg); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(124,179,66,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-message { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.92rem; }
.form-message.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-message.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ===== Team Grid ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.team-card {
    background: var(--bg); padding: 32px 24px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); text-align: center; transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.team-avatar {
    width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif;
}
.team-card h4 { font-size: 1.1rem; color: var(--primary); margin-bottom: 4px; }
.team-card p { color: var(--text-light); font-size: 0.88rem; }

/* ===== Image Sections ===== */
.image-section {
    display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.image-section.reverse { direction: rtl; }
.image-section.reverse > * { direction: ltr; }
.image-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg); min-height: 360px; display: flex;
    align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.image-box svg { width: 70%; height: auto; opacity: 0.9; }
.image-box-light {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #e8f5e9 100%);
    border-radius: var(--radius-lg); min-height: 360px; display: flex;
    align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.image-box-light svg { width: 70%; height: auto; }
.image-content h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--primary); margin-bottom: 18px; }
.image-content p { color: var(--text-light); margin-bottom: 16px; }

.image-box img, .image-box-light img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.img-rounded { border-radius: var(--radius-lg); }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.hero-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; opacity: 0.15; z-index: 0;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--primary);
}
.hero-slider .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}
.hero-slider .slide img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-slider .slide-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(26,77,46,0.88) 0%, rgba(26,77,46,0.6) 50%, rgba(26,77,46,0.3) 100%);
    z-index: 1;
}
.hero-slider .slide-content {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    padding: 0 24px;
}
.hero-slider .slide-content .container {
    max-width: 700px;
}
.hero-slider .slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}
.hero-slider .slide.active .slide-content h1 {
    opacity: 1;
    transform: translateY(0);
}
.hero-slider .slide-content h1 span {
    color: var(--accent);
}
.hero-slider .slide-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 560px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
}
.hero-slider .slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}
.hero-slider .slide-content .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
}
.hero-slider .slide.active .slide-content .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}
.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.slider-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.slider-dot.active {
    background: var(--accent);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.2);
}
.slider-dot:hover {
    background: rgba(255,255,255,0.6);
}

/* ===== CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff; padding: 90px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px; background: rgba(124,179,66,0.08);
    border-radius: 50%;
}
.cta-banner::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 400px; height: 400px; background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; margin-bottom: 16px; color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-primary {
    background: var(--accent); color: #fff; padding: 16px 40px; font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(124,179,66,0.35);
}
.cta-banner .btn-primary:hover {
    background: var(--accent-hover); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124,179,66,0.45);
}

/* ===== Footer ===== */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.7); }
.footer-main { padding: 60px 0 40px; }
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr; 
    gap: 48px; 
    align-items: start;
}
.footer-brand { max-width: 320px; }
.footer-brand h4,
.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    min-height: 1.2em;
}
.footer-logo { display: block; margin-bottom: 14px; }
.footer-logo img { height: 50px; width: auto; display: block; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: 0.9rem; }
.contact-list a { color: rgba(255,255,255,0.7); }
.contact-list a:hover { color: var(--accent); }
.contact-list svg { flex-shrink: 0; margin-top: 2px; }
.footer-links ul { list-style: none; }
.footer-links li { padding: 5px 0; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); }
.footer-legal { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-legal p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff; padding: 70px 0 50px; text-align: center;
}
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 2.6rem; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== Breadcrumb ===== */
.breadcrumb { background: var(--bg-light); padding: 14px 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { max-width: 100%; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .image-section { grid-template-columns: 1fr; gap: 40px; }
    .hero .container { flex-direction: column; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-visual { width: 280px; height: 220px; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
}
@media (max-width: 768px) {
    .hero-slider { height: 500px; }
    .hero-slider .slide-content h1 { font-size: 2.2rem; }
    .hero-slider .slide-content p { font-size: 1rem; }
    .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg); border-bottom: 1px solid var(--border);
        flex-direction: column; padding: 10px 24px; gap: 0;
        display: none; box-shadow: var(--shadow-lg);
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { width: 100%; padding: 12px 16px; border-radius: 0; border-bottom: 1px solid var(--border); }
    .nav-menu a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; min-width: auto; display: none; }
    .nav-dropdown.open .dropdown-menu { display: block; }
    .dropdown-menu li a { padding: 8px 16px; font-size: 0.85rem; }
    .hero { padding: 70px 0 60px; }
    .hero h1 { font-size: 2.2rem; }
    .section-header h2 { font-size: 1.9rem; }
    .section { padding: 60px 0; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .cta-banner h2 { font-size: 1.9rem; }
    .image-box, .image-box-light { min-height: 260px; }
}
@media (max-width: 480px) {
    .hero-slider { height: 450px; }
    .hero-slider .slide-content h1 { font-size: 1.8rem; }
    .hero h1 { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2rem; }
    .hero-visual { width: 220px; height: 180px; }
}
