﻿:root {
    --primary-color: #1a5f38;
    --primary-dark: #134529;
    --accent-color: #ffc107;
    --accent-strong: #ffb300;
    --text-dark: #1f2937;
    --text-muted: #5b6770;
    --bg-body: #f6faf6;
    --bg-surface: #ffffff;
    --border: #e5e7eb;
    --shadow-soft: 0 14px 40px rgba(15, 23, 42, 0.08);
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background: var(--bg-body);
    line-height: 1.7;
    min-height: 100vh;
}

img,
svg,
iframe {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

button,
a {
    font: inherit;
}

button {
    border: none;
    background: none;
}

/* Typography */
h1,h2,h3,h4,h5,h6 {
    font-weight: 700;
    color: var(--text-dark);
}

p {
    color: var(--text-muted);
}

.section-heading {
    text-align: center;
    margin-bottom: 44px;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--primary-color);
    margin-bottom: 14px;
}

.section-heading p {
    font-size: 1rem;
    max-width: 720px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 24px;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-call,
.btn-whatsapp,
.btn-cart {
    border-radius: 12px;
}

.btn-call {
    background: var(--primary-color);
    color: white;
    padding: 12px 18px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px 18px;
}

.btn-cart {
    background: #f8faf8;
    color: var(--text-dark);
    border: 1px solid var(--border);
    padding: 12px 18px;
}

.btn-cart:hover {
    background: #edf7ed;
}

.btn-full {
    width: 100%;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229,231,235,0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
}

.brand h1 {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: var(--primary-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1d4d2d 0%, #132e25 41%, #0f1720 100%);
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 24%),
                radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 20%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy {
    max-width: 620px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    margin-bottom: 24px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h2 {
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 24px;
}

.hero p {
    color: rgba(255,255,255,0.88);
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 32px;
}

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

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow-soft);
}

.hero-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
}

.hero-card-top span,
.hero-card-top strong {
    display: block;
    color: #e5f6e8;
}

.hero-card-top strong {
    font-size: 1.35rem;
}

.hero-features {
    display: grid;
    gap: 16px;
}

.hero-features div {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: #e5f6e8;
}

.hero-features strong {
    display: block;
    margin-bottom: 8px;
}

.trust-section {
    padding: 72px 0;
    background: #f5fbf7;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.trust-card {
    background: white;
    border-radius: 22px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.trust-card strong {
    display: block;
    font-size: 1.7rem;
    margin-bottom: 14px;
    color: var(--primary-color);
}

.trust-card p {
    color: var(--text-muted);
}

.section-block {
    padding: 80px 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.service-card h3 {
    font-size: 1.45rem;
}

.service-card p {
    color: var(--text-muted);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: #f8faf8;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.3rem;
    line-height: 1;
}

.qty-btn:hover {
    background: #eef4ed;
}

.qty-value {
    min-width: 32px;
    text-align: center;
    font-weight: 700;
}

.add-cart-btn {
    width: 100%;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -32px 0 80px rgba(15, 23, 42, 0.16);
    transition: right 0.3s ease;
    z-index: 140;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar-header,
.cart-sidebar-footer {
    padding: 28px;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    border-bottom: 1px solid rgba(229,231,235,0.8);
}

.cart-sidebar-header h3 {
    margin-bottom: 6px;
}

.close-cart {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.8rem;
    cursor: pointer;
}

.cart-sidebar-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex-grow: 1;
}

.cart-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(229,231,235,0.75);
    padding-bottom: 18px;
}

.cart-item-title h4 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.cart-item-title p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.cart-item-actions .quantity-selector {
    width: 118px;
}

.remove-item {
    background: transparent;
    color: #e11d48;
    font-weight: 700;
    cursor: pointer;
}

.cart-sidebar-footer .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.cart-sidebar-footer .summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing {
    background: #f3faf3;
}

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

.pricing-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.plan-badge {
    display: inline-flex;
    background: rgba(255,193,7,0.15);
    color: #925b00;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
}

.plan-features li {
    padding-left: 24px;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-card span {
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
}

.booking-section {
    background: #eef9ee;
    padding: 80px 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
}

.booking-card,
.summary-card {
    background: white;
    padding: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row input,
.form-row textarea {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    width: 100%;
    outline: none;
}

.form-row textarea {
    min-height: 140px;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.summary-card h3 {
    margin-bottom: 20px;
}

.summary-items {
    min-height: 220px;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 24px;
}

.summary-empty {
    color: var(--text-muted);
}

.summary-totals {
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 24px;
}

.summary-totals .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.summary-totals .summary-row.total {
    font-weight: 700;
    margin-top: 14px;
}

.payment-methods h4 {
    margin-bottom: 18px;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.payment-option {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    color: var(--text-dark);
    cursor: pointer;
    background: white;
    transition: var(--transition);
}

.payment-option.active,
.payment-option:hover {
    border-color: var(--primary-color);
    background: #f0fbf2;
}

.secure-badge {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.payment-section {
    padding: 72px 0;
}

.payment-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: white;
    padding: 28px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.payment-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.payment-pill-grid span {
    background: #e8faf0;
    color: var(--primary-color);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
}

.testimonials {
    background: #f4faf4;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 30px;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    font-weight: 700;
}

.testimonial-card p {
    color: var(--text-muted);
}

.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-card {
    min-height: 220px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #e9f7ed, #d2f0d8);
    font-size: 3rem;
}

.faq {
    background: #eef6ee;
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(229,231,235,0.9);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 220px;
    padding-bottom: 22px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.contact {
    padding: 80px 0 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.contact-card {
    padding: 32px;
}

.contact-card h3 {
    margin-bottom: 14px;
}

.contact-card p {
    color: var(--text-muted);
    margin-bottom: 22px;
}

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

.map-card iframe {
    width: 100%;
    height: 420px;
}

.footer {
    background: #111916;
    color: rgba(255,255,255,0.75);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 30px;
}

.footer h4 {
    color: white;
    margin-bottom: 18px;
}

.footer a {
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 12px;
}

.footer-link {
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.footer-links a {
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 14px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 18px;
    font-size: 0.95rem;
}

.mobile-call-btn,
.whatsapp-btn {
    position: fixed;
    z-index: 150;
}

.mobile-call-btn {
    bottom: 110px;
    right: 20px;
}

.whatsapp-btn {
    bottom: 20px;
    right: 20px;
}

.call-btn,
.whatsapp-link {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-size: 1.55rem;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.whatsapp-link {
    background: #25d366;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 130;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.site-popup {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 160;
    background: rgba(15, 23, 42, 0.42);
    padding: 24px;
}

.site-popup-card {
    position: relative;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
    max-width: 520px;
    width: 100%;
    padding: 32px;
    text-align: center;
}

.site-popup-card h3 {
    margin-bottom: 18px;
    color: var(--primary-color);
}

.site-popup-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.site-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    background: rgba(17, 24, 39, 0.95);
    color: white;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 170;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

.toast-error {
    background: #dc2626;
}

.toast-success {
    background: #16a34a;
}

@media (max-width: 1024px) {
    .hero-grid,
    .service-cards,
    .trust-grid,
    .pricing-grid,
    .features-grid,
    .checkout-grid,
    .payment-grid,
    .testimonials-grid,
    .faq-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 80px 0;
    }
}

@media (max-width: 760px) {
    .header-inner {
        flex-wrap: wrap;
    }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
        display: none;
        border-bottom: 1px solid rgba(229,231,235,0.8);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(229,231,235,0.9);
    }
    .menu-toggle {
        display: flex;
    }
    .hero h2 {
        font-size: 2.3rem;
    }
    .cart-sidebar {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100%, calc(100% - 30px));
    }
    .btn,
    .qty-btn,
    .payment-option {
        font-size: 0.95rem;
    }
    .hero p,
    .section-heading p {
        font-size: 0.95rem;
    }
    .mobile-call-btn,
    .whatsapp-btn {
        right: 14px;
    }
    .call-btn,
    .whatsapp-link {
        width: 52px;
        height: 52px;
    }
}