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

:root {
    --green-900: #0d3318;
    --green-800: #1a4d2e;
    --green-700: #226b3f;
    --green-600: #2d8a52;
    --green-500: #3aaf67;
    --cream: #faf8f5;
    --cream-dark: #f3efe9;
    --warm: #d4a373;
    --warm-dark: #b8864e;
    --warm-light: #e8c9a0;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --border: #e8e4de;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    text-decoration: none;
}
.skip-link:focus {
    top: 16px;
}

/* Top Bar */
.top-bar {
    background: var(--green-900);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
    letter-spacing: 0.02em;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-phone {
    color: var(--warm-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: color var(--transition);
}
.top-bar-phone:hover {
    color: var(--warm);
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--green-800);
}
.logo-tagline {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav-link:hover {
    color: var(--green-800);
    background: rgba(26,77,46,0.06);
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-800);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition);
}
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mobile-nav-inner {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 280px;
    background: var(--white);
    padding: 80px 32px 32px;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-nav-overlay.active .mobile-nav-inner {
    transform: translateX(0);
}
.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}
.mobile-nav-link:hover {
    color: var(--green-800);
}
.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--green-800);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    margin-top: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-secondary {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-800);
}
.btn-secondary:hover {
    background: var(--green-800);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--text-primary);
    color: var(--white);
    border-color: var(--text-primary);
}
.btn-dark:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-accent {
    background: var(--warm);
    color: var(--text-primary);
    border-color: var(--warm);
}
.btn-accent:hover {
    background: var(--warm-dark);
    border-color: var(--warm-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
}
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}
.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero */
.hero {
    background: var(--cream);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(26,77,46,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(212,163,115,0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26,77,46,0.08);
    color: var(--green-800);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.text-accent {
    color: var(--green-800);
    position: relative;
}
.text-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--warm-light);
    z-index: -1;
    border-radius: 3px;
}
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--green-800);
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}
.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Image */
.hero-image {
    position: relative;
}
.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-image-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-accent {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 2px solid rgba(26,77,46,0.1);
    pointer-events: none;
}
.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.hero-floating-card strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
}
.hero-floating-card span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Section */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}
.section-header-center {
    margin-left: auto;
    margin-right: auto;
}
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    border: 1px solid transparent;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: var(--green-800);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--green-700);
    transform: scale(1.05);
}
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green-800);
    text-decoration: none;
    transition: gap var(--transition);
}
.service-link:hover {
    gap: 10px;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}
.about-img-secondary img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--green-800);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-experience-badge .exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}
.about-experience-badge .exp-text {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.3;
    margin-top: 4px;
}
.about-content .section-label {
    text-align: left;
}
.about-content .section-title {
    text-align: left;
}
.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 28px 0 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}
.feature-check {
    width: 24px;
    height: 24px;
    background: rgba(26,77,46,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
    flex-shrink: 0;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: var(--green-800);
    color: var(--white);
}
.why-us .section-label {
    color: var(--warm-light);
}
.why-us .section-title {
    color: var(--white);
}
.why-us .section-description {
    color: rgba(255,255,255,0.7);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: all var(--transition);
}
.why-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}
.why-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: 16px;
}
.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(212,163,115,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-light);
    margin-bottom: 20px;
}
.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}
.why-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* CTA Strip */
.cta-strip {
    padding: 80px 0;
    background: var(--cream-dark);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}
.cta-text {
    font-size: 16px;
    color: var(--text-secondary);
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.contact-item {
    display: flex;
    gap: 16px;
}
.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(26,77,46,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-800);
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 2px;
}
.contact-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}
.contact-item a {
    color: var(--green-700);
    text-decoration: none;
    transition: color var(--transition);
}
.contact-item a:hover {
    color: var(--green-800);
}
.contact-map {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 8px;
}
.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(26,77,46,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}
.form-success.show {
    display: block;
}
.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(26,77,46,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.form-success p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}
.logo-footer .logo-name {
    color: var(--white);
}
.logo-footer .logo-tagline {
    color: rgba(255,255,255,0.5);
}
.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a,
.footer-contact li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}
.footer-links a:hover,
.footer-contact li a:hover {
    color: var(--warm-light);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
    }
    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
    }
    .header-inner {
        height: 64px;
    }
    .nav, .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero {
        padding: 48px 0 64px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image {
        order: -1;
    }
    .hero-floating-card {
        left: 16px;
        bottom: -16px;
    }
    .hero-stats {
        gap: 16px;
    }
    .services {
        padding: 64px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about {
        padding: 64px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-img-secondary {
        right: 0;
        bottom: -20px;
    }
    .about-features {
        grid-template-columns: 1fr;
   
