/* ═══════════════════════════════════════════════════════════
   MATAYA M TRADING - style.css
   Premium dark theme with forest green accents
   Fonts: Playfair Display (headings) + DM Sans (body)
═══════════════════════════════════════════════════════════ */

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

:root {
    --bg: #0a0f0d;
    --bg-surface: #111a14;
    --bg-surface2: #162019;
    --green: #1D9E75;
    --green-light: #5DCAA5;
    --green-pale: #9FE1CB;
    --text: #f0f5f1;
    --text-sec: #8aaa93;
    --text-muted: #4a6e57;
    --border: rgba(29, 158, 117, 0.14);
    --border-hover: rgba(29, 158, 117, 0.35);
    --radius: 12px;
    --nav-h: 120px;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

ul {
    list-style: none;
}

/* ── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}

/* ── FLOATING WHATSAPP ────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* ── NAVIGATION ───────────────────────────────────────── */
.nav {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
    border-bottom: 1px solid transparent;

}

.nav.scrolled {
    background: rgba(10, 15, 13, 0.9);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
}

.nav-logo {}

.nav-logo img,
.footer-logo img {
    width: auto;
    display: block;
    max-width: 250px;
}

.nav-logo span {
    color: var(--green);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.09em;
    color: var(--text-sec);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-cta {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #fff !important;
    background: var(--green);
    padding: 9px 20px !important;
    border-radius: 7px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--green-light) !important;
    color: var(--bg) !important;
    transform: translateY(-1px);
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 158, 117, 0.3);
    color: var(--bg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    padding: 14px 28px;
    border-radius: 8px;
    border: 1px solid var(--border-hover);
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-secondary:hover {
    border-color: var(--green);
    color: var(--green-light);
    transform: translateY(-2px);
}

/* ── SCROLL REVEAL ────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── SECTION SHARED ───────────────────────────────────── */
section {
    padding: 6rem 4rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.9rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.18;
    margin-bottom: 0.9rem;
}

.section-title em {
    font-style: italic;
    color: var(--green);
}

.section-sub {
    font-size: 15px;
    color: var(--text-sec);
    max-width: 520px;
    line-height: 1.78;
}

/* ── HERO ─────────────────────────────────────────────── */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--nav-h) + 5rem) 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(29, 158, 117, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 158, 117, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 158, 117, 0.09) 0%, transparent 65%);
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-52%) scale(1.06);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--border-hover);
    border-radius: 100px;
    padding: 7px 18px;
    margin-bottom: 1.8rem;
}

.hero-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

h1.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.4rem);
    font-weight: 700;
    line-height: 1.06;
    color: var(--text);
    margin-bottom: 1.5rem;
}

h1.hero-title em {
    font-style: italic;
    color: var(--green);
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-sec);
    max-width: 500px;
    line-height: 1.78;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    width: fit-content;
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── SERVICES ─────────────────────────────────────────── */
#services {
    background: var(--bg-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card {
    background: var(--bg-surface);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
}

.service-card:hover {
    background: var(--bg-surface2);
}

.service-card:hover .service-icon {
    color: var(--green-light);
}

.service-icon {
    width: 46px;
    height: 46px;
    color: var(--green);
    margin-bottom: 1.2rem;
    transition: color 0.3s;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.55rem;
}

.service-desc {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.68;
    margin-bottom: 1rem;
}

.service-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 3px 10px;
}

/* ── WHY CHOOSE US ────────────────────────────────────── */
#why-us {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.why-card {
    background: var(--bg);
    padding: 3rem 2.8rem;
    transition: background 0.3s;
}

.why-card:hover {
    background: var(--bg-surface);
}

.why-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(29, 158, 117, 0.1);
    line-height: 1;
    margin-bottom: -0.6rem;
    user-select: none;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.why-desc {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.72;
}

.why-accent {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--green);
    margin-top: 1.6rem;
    border-radius: 2px;
    transition: width 0.3s;
}

.why-card:hover .why-accent {
    width: 50px;
}

/* ── HOW IT WORKS ─────────────────────────────────────── */
#how-it-works {
    background: var(--bg-surface);
}

.steps-row {
    display: grid;
    grid-template-columns: 1fr 60px 1fr 60px 1fr;
    align-items: start;
    gap: 0;
}

.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.step-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    color: var(--green);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.step:hover .step-circle {
    background: rgba(29, 158, 117, 0.1);
    border-color: var(--green);
    transform: scale(1.06);
}

.step-circle svg {
    width: 28px;
    height: 28px;
}

.step-num {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.55rem;
}

.step-desc {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.68;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
    color: var(--text-muted);
}

.step-connector svg {
    width: 22px;
    height: 22px;
}

/* ── GALLERY ──────────────────────────────────────────── */
#gallery {
    background: var(--bg);
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin: 0 auto;
    max-width: 1440px;
    width: min(100%, 1440px);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    will-change: transform;

}

.gallery-track:active {
    cursor: grabbing;
}

.gallery-item {
    position: relative;
    flex: 0 0 100%;
    height: 520px;
    background: var(--bg-surface2);
    overflow: hidden;
}

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

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

/* Placeholder shown when no image is loaded */
.gallery-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
    background: var(--bg-surface2);
    background-image:
        linear-gradient(rgba(29, 158, 117, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 158, 117, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.gallery-placeholder svg {
    width: 52px;
    height: 52px;
    opacity: 0.3;
}

.gallery-placeholder span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(transparent, rgba(10, 15, 13, 0.85));
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--text-sec);
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.gallery-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sec);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}

.gallery-btn:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.gallery-btn svg {
    width: 18px;
    height: 18px;
}

.gallery-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}

.gallery-dot.active {
    background: var(--green);
    transform: scale(1.3);
}

/* ── EVENTS ───────────────────────────────────────────── */
#events {
    background: linear-gradient(180deg, #07121b 0%, #091924 100%);
}

.events-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    border: 1px solid rgba(244, 201, 77, 0.18);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    position: relative;
    overflow: hidden;
    background: rgba(8, 18, 31, 0.96);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.events-inner::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(244, 201, 77, 0.14) 0%, transparent 58%);
    pointer-events: none;
}

.events-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(244, 201, 77, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 201, 77, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: 0.9;
}

.events-text {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.events-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #f4c94d;
    margin-bottom: 1rem;
    font-weight: 700;
}

.events-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #f5f1e9;
    line-height: 1.16;
    margin-bottom: 1rem;
}

.events-desc {
    font-size: 15px;
    color: #d3cfbe;
    line-height: 1.78;
    margin-bottom: 1.5rem;
}

.events-badges {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.events-follow {
    font-size: 0.98rem;
    color: #d3cfbe;
    max-width: 520px;
    line-height: 1.7;
}

.events-follow a {
    color: #f4c94d;
    text-decoration: none;
}

.events-follow a:hover {
    text-decoration: underline;
}

.events-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(244, 201, 77, 0.12);
    border: 1px solid rgba(244, 201, 77, 0.18);
    color: #f4c94d;
    font-size: 0.95rem;
    font-weight: 500;
}

.events-badge-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 201, 77, 0.18);
    color: #f4c94d;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.events-cta {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.events-cta .btn-primary {
    background: #f4c94d;
    color: #0a0f0d;
    padding: 16px 26px;
    border: none;
    box-shadow: 0 18px 44px rgba(244, 201, 77, 0.22);
}

.events-cta .btn-primary:hover {
    background: #e5b438;
}

/* ── CONTACT ──────────────────────────────────────────── */
#contact {
    background: var(--bg);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info .section-sub {
    margin-bottom: 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 2.2rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 1.1rem 1.4rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.contact-link:hover {
    border-color: var(--green);
    background: var(--bg-surface2);
    transform: translateX(5px);
}

.contact-link-icon {
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: rgba(29, 158, 117, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
    transition: background 0.25s;
}

.contact-link:hover .contact-link-icon {
    background: rgba(29, 158, 117, 0.2);
}

.contact-link-icon svg {
    width: 20px;
    height: 20px;
}

.contact-link-label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-link-val {
    display: block;
    font-size: 14.5px;
    font-weight: 400;
    color: var(--text);
}

/* FORM */
.contact-form-wrap {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.8rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-sub {
    font-size: 13.5px;
    color: var(--text-sec);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-sec);
}

.form-group label span {
    color: var(--green);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234a6e57'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 38px;
}

.form-group select option {
    background: var(--bg-surface);
    color: var(--text);
}

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

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    margin-top: 0.5rem;
    font-size: 15px;
}

/* Form error state */
.form-group input.error,
.form-group select.error {
    border-color: #e05252;
}

/* ── FOOTER ───────────────────────────────────────────── */
footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    gap: 4rem;
    padding: 4rem 4rem 3rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 13.5px;
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-socials a:hover {
    color: var(--green);
    border-color: var(--green);
    background: rgba(29, 158, 117, 0.08);
}

.footer-socials svg {
    width: 17px;
    height: 17px;
}

.footer-links {
    display: flex;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    font-size: 13.5px;
    color: var(--text-sec);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green-light);
}

.footer-bottom {
    padding: 1.4rem 4rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-reg {
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.6;
}

.footer-reg a {
    color: #FF4500;
    text-decoration: none;
}

.footer-reg a:hover {
    text-decoration: underline;
}

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

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .steps-row {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-connector {
        padding: 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }

    .nav {
        padding: 0 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo img,
    .footer-logo img {
        width: auto;
        display: block;
        max-width: 120px;
    }



    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        height: calc(100vh - var(--nav-h));
        background: rgba(10, 15, 13, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0 2rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-110%);
        transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.9rem 1.5rem;
        font-size: 14px;
        letter-spacing: 0.04em;
    }

    .nav-cta {
        margin: 0.5rem 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
        display: none;
    }

    #hero {
        padding: calc(var(--nav-h) + 5rem) 1.5rem 3rem;
    }

    h1.hero-title {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
    }

    .hero-glow {
        display: none;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .events-inner {
        flex-direction: column;
        padding: 1.75rem 1.5rem;
        text-align: center;
        max-width: 760px;
        margin: 0 auto;
    }

    .events-text {
        max-width: 100%;
    }

    .events-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .events-follow {
        margin-bottom: 1.25rem;
    }

    .events-cta {
        width: 100%;
    }

    .events-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .gallery-item {
        height: 300px;
    }

    .footer-inner {
        flex-direction: column;
        padding: 3rem 1.5rem 2rem;
        gap: 2.5rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-bottom {
        padding: 1.2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .contact-form-wrap {
        padding: 1.8rem;
    }
}