/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #065f46;
    --emerald-light: #059669;
    --emerald-dark: #044734;
    --cream: #fef9ef;
    --cream-dark: #f5edd6;
    --cream-fill: #f0e6cc;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --shadow-sm: 0 2px 8px rgba(6, 95, 70, 0.08);
    --shadow-md: 0 8px 30px rgba(6, 95, 70, 0.12);
    --shadow-lg: 0 20px 60px rgba(6, 95, 70, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 249, 239, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 249, 239, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--emerald);
}

.nav-logo-text {
    line-height: 1.2;
}

.nav-logo-sub {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--text-mid);
}

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

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--emerald);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--emerald);
    color: var(--cream) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem !important;
}

.nav-phone::after {
    display: none;
}

.nav-phone:hover {
    background: var(--emerald-light);
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--emerald);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.06) 0%, rgba(6, 95, 70, 0.02) 100%);
    top: -100px;
    right: -100px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--cream-dark);
    bottom: 10%;
    left: -60px;
    opacity: 0.6;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: var(--emerald);
    border-radius: var(--radius-sm);
    top: 25%;
    right: 5%;
    opacity: 0.07;
    transform: rotate(25deg);
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid var(--emerald);
    opacity: 0.05;
    bottom: 20%;
    right: 15%;
    transform: rotate(-15deg);
}

.geo-dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--emerald) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.15;
    top: 40%;
    left: 8%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 95, 70, 0.08);
    border: 1px solid rgba(6, 95, 70, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--emerald);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-light);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.text-emerald {
    color: var(--emerald);
}

.text-cream-fill {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--emerald-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--emerald);
    border: 2px solid var(--emerald);
}

.btn-secondary:hover {
    background: var(--emerald);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn-cream {
    background: var(--cream);
    color: var(--emerald);
}

.btn-cream:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ===== HERO VISUAL ===== */
.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.hero-card-main {
    width: 100%;
    max-width: 440px;
}

.hero-card-img {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6, 95, 70, 0.3) 100%);
}

.hero-card-body {
    padding: 24px;
}

.hero-card-tag {
    display: inline-block;
    background: rgba(6, 95, 70, 0.08);
    color: var(--emerald);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.hero-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Floating cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-1 {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.float-2 {
    top: 40px;
    right: -20px;
    animation-delay: 1.3s;
}

.float-3 {
    bottom: -10px;
    right: 40px;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-icon-cream {
    background: var(--cream);
}

.float-value {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.float-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* ===== SECTION COMMON ===== */
.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald);
    background: rgba(6, 95, 70, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.7;
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.products-shape {
    position: absolute;
    right: -80px;
    bottom: -80px;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(6, 95, 70, 0.04);
}

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

.section-header .section-desc {
    margin: 0 auto;
}

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

.product-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 95, 70, 0.1);
    background: var(--white);
}

.product-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-card-accent {
    opacity: 1;
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    background: var(--emerald);
}

.product-card:hover .product-icon svg {
    stroke: var(--cream) !important;
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--cream);
}

.about-img-secondary img {
    width: 300px;
    height: 250px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--emerald);
    color: var(--cream);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    margin-bottom: 32px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
}

/* ===== LOCATION ===== */
.location {
    padding: 100px 0;
    background: var(--emerald);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(217, 249, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(217, 249, 157, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.location .container {
    position: relative;
    z-index: 1;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location-info {
    color: var(--cream);
}

.location-info .section-tag {
    background: rgba(217, 249, 157, 0.15);
    color: var(--cream);
}

.location-info .section-title {
    color: var(--cream);
    margin-bottom: 40px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.location-item {
    display: flex;
    gap: 18px;
}

.location-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(217, 249, 157, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--cream);
}

.location-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(254, 249, 239, 0.6);
    margin-bottom: 4px;
}

.location-value {
    display: block;
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.5;
}

.location-value a {
    color: var(--cream);
}

.location-value a:hover {
    color: var(--cream-dark);
}

.location-cta .btn-primary {
    background: var(--cream);
    color: var(--emerald);
}

.location-cta .btn-primary:hover {
    background: var(--cream-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    background: var(--emerald);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
}

.contact-shape-1 {
    width: 300px;
    height: 300px;
    background: rgba(217, 249, 157, 0.06);
    top: -80px;
    right: -80px;
}

.contact-shape-2 {
    width: 200px;
    height: 200px;
    background: rgba(217, 249, 157, 0.04);
    bottom: -60px;
    left: 20%;
}

.contact-content {
    position: relative;
    z-index: 1;
    color: var(--cream);
}

.contact-content .section-tag {
    background: rgba(217, 249, 157, 0.15);
    color: var(--cream);
}

.contact-content .section-title {
    color: var(--cream);
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1rem;
    color: rgba(254, 249, 239, 0.7);
    line-height: 1.7;
    margin-bottom: 28px;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--cream);
    transition: var(--transition);
}

.contact-phone:hover {
    color: var(--cream-dark);
    transform: scale(1.03);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(6, 95, 70, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(6, 95, 70, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--emerald);
}

.form-success p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 60px 0 0;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(254, 249, 239, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(254, 249, 239, 0.5);
    padding: 6px 0;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(254, 249, 239, 0.5);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    font-size: 0.9rem;
    color: var(--cream-dark);
}

.footer-contact a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(254, 249, 239, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(254, 249, 239, 0.35);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-secondary {
        right: 20px;
        bottom: -20px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 249, 239, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(6, 95, 70, 0.08);
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.open {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-visual {
        min-height: auto;
    }
    
    .floating-card {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-main img {
        height: 400px;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 300px;
    }
    
    .map-wrapper {
        min-height: 300px;
    }
    
    .contact-wrapper {
        padding: 28px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-phone {
        font-size: 1.2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
}
