/* ========================================
   TATTOO MAZE — Styles
   Emerald Green + Cream | Vibrant Modern
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --green-900: #064e3b;
    --green-800: #065f46;
    --green-700: #047857;
    --green-600: #059669;
    --green-500: #10b981;
    --green-100: #d1fae5;
    --green-50:  #ecfdf5;

    --cream-500: #d4a574;
    --cream-400: #e8c4a0;
    --cream-300: #f5e6d3;
    --cream-200: #faf3eb;
    --cream-100: #fdf8f0;
    --cream-50:  #fefcf7;

    --dark:    #1a1a1a;
    --dark-2:  #2d2d2d;
    --gray-500:#6b7280;
    --gray-300:#d1d5db;
    --white:   #ffffff;

    --font-display: 'Bebas Neue', sans-serif;
    --font-serif:   'Playfair Display', serif;
    --font-body:    'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

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

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag--light {
    color: var(--cream-300);
    background: rgba(255,255,255,0.15);
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    line-height: 1.05;
    color: var(--green-900);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}
.section-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cream-500);
}
.section-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 520px;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}
.btn-primary:hover {
    background: var(--green-800);
    border-color: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-700);
}
.btn-outline:hover {
    background: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-light {
    background: var(--cream-300);
    color: var(--green-900);
    border-color: var(--cream-300);
}
.btn-light:hover {
    background: var(--cream-400);
    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-900);
    transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    color: var(--green-800);
}
.nav-logo:hover { color: var(--green-600); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-2);
    position: relative;
    transition: color 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-600);
    transition: width 0.3s;
}
.nav-links a:hover { color: var(--green-700); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
    background: var(--green-700) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600 !important;
    transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--green-800) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.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 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--cream-50);
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(6, 95, 70, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-geo {
    position: absolute;
    pointer-events: none;
}
.hero-geo--1 {
    width: 300px;
    height: 300px;
    background: var(--green-100);
    border-radius: 50%;
    top: -60px;
    right: 10%;
    opacity: 0.6;
}
.hero-geo--2 {
    width: 180px;
    height: 180px;
    background: var(--cream-300);
    top: 20%;
    left: -40px;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
    opacity: 0.7;
}
.hero-geo--3 {
    width: 100px;
    height: 100px;
    background: var(--green-500);
    border-radius: 50%;
    bottom: 15%;
    left: 8%;
    opacity: 0.3;
}
.hero-geo--4 {
    width: 60px;
    height: 60px;
    background: var(--cream-500);
    top: 30%;
    right: 5%;
    border-radius: var(--radius-sm);
    transform: rotate(45deg);
    opacity: 0.5;
}
.hero-geo--5 {
    width: 140px;
    height: 140px;
    border: 3px solid var(--green-100);
    border-radius: 50%;
    bottom: 10%;
    right: 15%;
    opacity: 0.5;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin-right: auto;
}
.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(6, 95, 70, 0.06);
}
.hero-badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    color: var(--green-900);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}
.hero-accent {
    color: var(--cream-500);
    position: relative;
}
.hero-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--green-100);
    z-index: -1;
    border-radius: 3px;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Floating Stat Cards --- */
.hero-stats {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    z-index: 2;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 95, 70, 0.06);
    transition: transform 0.3s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card--1 { grid-column: 1; }
.stat-card--2 { grid-column: 2; transform: translateY(24px); }
.stat-card--2:hover { transform: translateY(20px); }
.stat-card--3 { grid-column: 1; transform: translateY(-24px); }
.stat-card--3:hover { transform: translateY(-28px); }
.stat-card--4 { grid-column: 2; }
.stat-card--4:hover { transform: translateY(-4px); }
.stat-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.stat-card--1 .stat-card-accent { background: var(--green-600); }
.stat-card--2 .stat-card-accent { background: var(--cream-500); }
.stat-card--3 .stat-card-accent { background: var(--green-800); }
.stat-card--4 .stat-card-accent { background: var(--cream-400); }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--green-800);
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    font-weight: 600;
}

/* --- SERVICES --- */
.services {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid transparent;
    transition: all 0.35s ease;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, var(--green-100), transparent, var(--cream-300));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-100);
}
.service-card:hover::before { opacity: 1; }
.service-card-geo {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-100);
    top: -20px;
    right: -20px;
    opacity: 0.4;
    transition: all 0.35s;
}
.service-card:hover .service-card-geo {
    transform: scale(1.5);
    opacity: 0.2;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
    transition: all 0.35s;
}
.service-card:hover .service-icon {
    background: var(--green-800);
    transform: scale(1.05);
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--green-900);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}
.service-card p {
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.7;
}
.services-geo {
    position: absolute;
    pointer-events: none;
}
.services-geo--1 {
    width: 200px;
    height: 200px;
    background: var(--green-50);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    opacity: 0.5;
}
.services-geo--2 {
    width: 120px;
    height: 120px;
    background: var(--cream-300);
    border-radius: var(--radius-lg);
    top: 40px;
    right: -20px;
    transform: rotate(20deg);
    opacity: 0.4;
}

/* --- GALLERY --- */
.gallery {
    position: relative;
    padding: 100px 0;
    background: var(--cream-50);
    overflow: hidden;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.05em;
}
.gallery-item--1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item--2 { grid-column: 5 / 9; grid-row: 1; }
.gallery-item--3 { grid-column: 9 / 13; grid-row: 1; }
.gallery-item--4 { grid-column: 5 / 8; grid-row: 2; }
.gallery-item--5 { grid-column: 8 / 13; grid-row: 2; }
.gallery-geo {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--green-100);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    opacity: 0.3;
    pointer-events: none;
}

/* --- ABOUT --- */
.about {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}
.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}
.about-img-float img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--green-700);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark-2);
    font-size: 0.95rem;
}
.value-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-600);
    flex-shrink: 0;
}
.about-geo {
    position: absolute;
    pointer-events: none;
}
.about-geo--1 {
    width: 160px;
    height: 160px;
    background: var(--cream-300);
    border-radius: var(--radius-lg);
    top: 40px;
    right: 60px;
    transform: rotate(-15deg);
    opacity: 0.4;
}
.about-geo--2 {
    width: 80px;
    height: 80px;
    background: var(--green-100);
    border-radius: 50%;
    bottom: 60px;
    left: 40px;
    opacity: 0.5;
}

/* --- TESTIMONIALS --- */
.testimonials {
    position: relative;
    padding: 100px 0;
    background: var(--green-800);
    overflow: hidden;
}
.testimonials .section-tag { background: rgba(255,255,255,0.12); color: var(--cream-300); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-title em { color: var(--cream-400); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.35s;
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}
.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--cream-500);
    margin-bottom: 8px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.05em;
}
.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}
.testimonials-geo {
    position: absolute;
    pointer-events: none;
}
.testimonials-geo--1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -80px;
    left: -80px;
}
.testimonials-geo--2 {
    width: 200px;
    height: 200px;
    background: rgba(212, 165, 116, 0.08);
    border-radius: 50%;
    bottom: -60px;
    right: 10%;
}

/* --- CTA --- */
.cta {
    position: relative;
    padding: 100px 0;
    background: var(--cream-300);
    overflow: hidden;
}
.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(6, 95, 70, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(6, 95, 70, 0.08) 0%, transparent 50%);
    pointer-events: none;
}
.cta-geo { position: absolute; pointer-events: none; }
.cta-geo--1 {
    width: 200px;
    height: 200px;
    background: var(--green-100);
    border-radius: 50%;
    top: -60px;
    right: 15%;
    opacity: 0.5;
}
.cta-geo--2 {
    width: 100px;
    height: 100px;
    background: var(--green-600);
    border-radius: var(--radius-md);
    bottom: -20px;
    left: 10%;
    transform: rotate(30deg);
    opacity: 0.15;
}
.cta-card {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-card .section-tag { margin-bottom: 20px; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    color: var(--green-900);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}
.cta-title em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--cream-500);
}
.cta-text {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-bottom: 36px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- CONTACT --- */
.contact {
    position: relative;
    padding: 100px 0;
    background: var(--cream-50);
    overflow: hidden;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-detail-value {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}
.contact-detail-value a {
    transition: color 0.3s;
}
.contact-detail-value a:hover { color: var(--green-700); }
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(6, 95, 70, 0.06);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream-50);
    transition: all 0.3s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    color: var(--green-800);
    font-weight: 500;
    font-size: 0.95rem;
}
.form-success svg { color: var(--green-600); flex-shrink: 0; }
.contact-geo {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--green-100);
    border-radius: 50%;
    bottom: -60px;
    right: -60px;
    opacity: 0.3;
    pointer-events: none;
}

/* --- MAP --- */
.map-section {
    background: var(--green-900);
    padding: 0;
}
.map-container {
    filter: saturate(0.7) contrast(1.1);
    opacity: 0.9;
}

/* --- FOOTER --- */
.footer {
    position: relative;
    background: var(--green-900);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    color: var(--white);
}
.footer-logo:hover { color: var(--cream-400); }
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-400);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-links span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
    line-height: 1.5;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.footer-geo {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,165,116,0.06) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    pointer-events: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        grid-column: 1 / -1;
        margin-top: 48px;
        max-width: 400px;
    }
    .stat-card--2, .stat-card--3 { transform: none; }
    .stat-card--2:hover, .stat-card--3:hover { transform: translateY(-4px); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .about-img-float { right: 20px; bottom: -20px; width: 200px; }
    .about-img-float img { height: 200px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--1 { grid-column: 1 / -1; grid-row: auto; }
    .gallery-item--1 img { height: 400px; }
    .gallery-item--2, .gallery-item--3, .gallery-item--4, .gallery-item--5 { grid-column: auto; grid-row: auto; }
    .gallery-item img { height: 280px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 240, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(6, 95, 70, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }
    .hero { padding: 100px 24px 60px; flex-direction: column; }
    .hero-card { padding: 32px 24px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { grid-template-columns: 1fr 1fr; max-width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card:last-child { max-width: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .about-values { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--1 { grid-column: auto; }
    .gallery-item--1 img { height: 300px; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr; }
    .stat-card--2, .stat-card--3 { transform: none; }
    .stat-card--2:hover, .stat-card--3:hover { transform: translateY(-4px); }
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
}
