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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --accent: #f59e0b;
    --accent-light: #fef3c7;

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

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

    --shadow-sm: 0 1px 3px rgba(15,23,42,.08);
    --shadow-md: 0 4px 20px rgba(15,23,42,.1);
    --shadow-lg: 0 12px 40px rgba(15,23,42,.12);
    --shadow-xl: 0 20px 60px rgba(15,23,42,.15);

    --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: var(--slate-50);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

/* ===== Decorative Background Shapes ===== */
.shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: .04;
}
.shape-1 {
    width: 600px; height: 600px;
    background: var(--teal-600);
    border-radius: 50%;
    top: -200px; right: -200px;
}
.shape-2 {
    width: 400px; height: 400px;
    background: var(--teal-500);
    border-radius: 50%;
    bottom: 20%; left: -150px;
}
.shape-3 {
    width: 200px; height: 200px;
    background: var(--accent);
    top: 50%; right: 5%;
    transform: rotate(45deg);
}
.shape-4 {
    width: 120px; height: 120px;
    background: var(--teal-400);
    border-radius: 50%;
    bottom: 10%; right: 15%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(248,250,252,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
    transition: var(--transition);
}
.header.scrolled {
    background: rgba(248,250,252,.95);
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--slate-800);
}
.logo-icon {
    color: var(--teal-600);
    flex-shrink: 0;
}
.logo-text { display: none; }
@media (min-width: 480px) { .logo-text { display: block; } }

.nav { display: none; gap: 8px; }
@media (min-width: 768px) {
    .nav { display: flex; }
}
.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: .938rem;
    color: var(--slate-600);
    transition: var(--transition);
}
.nav-link:hover { color: var(--teal-700); background: var(--teal-50); }

.btn-header {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--teal-600);
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    transition: var(--transition);
}
.btn-header:hover { background: var(--teal-700); transform: translateY(-1px); }
@media (min-width: 1024px) {
    .btn-header { display: flex; }
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .mobile-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15,23,42,.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: min(320px, 85vw);
    background: var(--slate-50);
    padding: 96px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.active .mobile-menu-inner { transform: translateX(0); }
.mobile-link {
    padding: 14px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-link:hover { background: var(--teal-50); color: var(--teal-700); }
.mobile-btn {
    margin-top: 16px;
    text-align: center;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .938rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--teal-600);
    color: #fff;
    box-shadow: 0 4px 14px rgba(13,148,136,.3);
}
.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,.35);
}
.btn-outline {
    background: transparent;
    color: var(--teal-700);
    border: 2px solid var(--teal-200);
}
.btn-outline:hover {
    background: var(--teal-50);
    border-color: var(--teal-400);
}
.btn-white {
    background: #fff;
    color: var(--teal-700);
    box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--teal-50) 50%, var(--slate-100) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 960px) {
    .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--teal-100);
    color: var(--teal-800);
    border-radius: 50px;
    font-size: .813rem;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--teal-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: 24px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--teal-700);
}
.stat-label {
    font-size: .813rem;
    color: var(--slate-500);
    font-weight: 500;
}
.stat-divider {
    width: 1px; height: 40px;
    background: var(--slate-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.visual-card--main {
    width: 100%;
    max-width: 400px;
}
@media (min-width: 960px) {
    .visual-card--main { max-width: 520px; }
}
.visual-card--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 520/640;
}
.visual-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(15,23,42,.7) 0%, transparent 100%);
}
.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,.95);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .875rem;
    color: var(--slate-700);
}

.visual-card--float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.visual-card--float:nth-child(2) { animation-delay: -1s; }
.visual-card--float:nth-child(3) { animation-delay: -2s; }

.visual-card--teal {
    background: var(--teal-600);
    color: #fff;
    bottom: 40px; left: -20px;
}
.visual-card--slate {
    background: var(--slate-800);
    color: #fff;
    top: 40px; right: -10px;
}
.float-icon { flex-shrink: 0; opacity: .9; }
.float-text { display: flex; flex-direction: column; }
.float-text strong { font-size: .938rem; }
.float-text span { font-size: .813rem; opacity: .8; }

/* Hero geometric shapes */
.hero-shape {
    position: absolute;
    pointer-events: none;
}
.hero-shape--circle {
    width: 300px; height: 300px;
    border: 3px solid var(--teal-200);
    border-radius: 50%;
    top: 10%; left: -80px;
    opacity: .5;
}
.hero-shape--triangle {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid var(--teal-100);
    opacity: .4;
    top: 15%; right: 5%;
    transform: rotate(20deg);
}
.hero-shape--dots {
    width: 80px; height: 80px;
    background-image: radial-gradient(var(--teal-400) 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: .4;
    bottom: 20%; left: 8%;
}

/* ===== Section Shared ===== */
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: 50px;
    font-size: .813rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.15;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.063rem;
    color: var(--slate-500);
    max-width: 600px;
    line-height: 1.7;
}
.section-header--center .section-subtitle { margin: 0 auto; }

/* ===== Services ===== */
.services {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.geo-accent {
    position: absolute;
    pointer-events: none;
    opacity: .06;
}
.geo-accent--hex {
    width: 200px; height: 200px;
    background: var(--teal-600);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 10%; right: -50px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
    position: relative;
    padding: 36px 28px;
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-200);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--teal-600);
    color: #fff;
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 10px;
}
.service-card p {
    font-size: .938rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--teal-700);
    transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--teal-600); }

/* ===== About ===== */
.about {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-800) 100%);
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
@media (min-width: 960px) {
    .about-grid { grid-template-columns: .9fr 1fr; gap: 64px; }
}

.about-visual { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
}
.about-img-accent {
    position: absolute;
    bottom: -24px; right: -16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255,255,255,.3);
}
.about-img-accent img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}
@media (min-width: 960px) {
    .about-img-accent { width: 55%; }
}

.about-badge {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.badge-year, .badge-location {
    padding: 8px 16px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 600;
    font-size: .875rem;
}

.about-content .section-tag { background: rgba(255,255,255,.15); color: var(--teal-200); }
.about-content .section-title { color: #fff; }
.about-text {
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
}
@media (min-width: 480px) { .about-features { grid-template-columns: repeat(2, 1fr); } }

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.feature-check {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-400);
    color: var(--teal-900);
    border-radius: 50%;
    margin-top: 2px;
}
.about-feature span {
    color: rgba(255,255,255,.9);
    font-size: .938rem;
    font-weight: 500;
}

/* ===== Why Us ===== */
.why-us {
    position: relative;
    padding: 100px 0;
    background: var(--slate-50);
    overflow: hidden;
}
.why-shape {
    position: absolute;
    pointer-events: none;
}
.why-shape--circle {
    width: 250px; height: 250px;
    border: 3px solid var(--teal-100);
    border-radius: 50%;
    top: 10%; left: -80px;
    opacity: .6;
}
.why-shape--square {
    width: 100px; height: 100px;
    background: var(--accent);
    opacity: .08;
    transform: rotate(30deg);
    bottom: 15%; right: 5%;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); }

.why-card--teal {
    background: var(--teal-600);
    color: #fff;
}
.why-card--slate {
    background: var(--slate-800);
    color: #fff;
}
.why-card--accent {
    background: var(--accent);
    color: var(--slate-900);
}

.why-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    opacity: .2;
    line-height: 1;
    margin-bottom: 16px;
}
.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.188rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.why-card p {
    font-size: .938rem;
    line-height: 1.7;
    opacity: .85;
}

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--teal-700) 0%, var(--slate-800) 100%);
    overflow: hidden;
    position: relative;
}
.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .cta-inner { flex-direction: row; text-align: left; gap: 48px; }
}

.cta-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: .1;
}
.cta-shape--1 {
    width: 200px; height: 200px;
    background: var(--teal-400);
    top: -60px; left: 10%;
}
.cta-shape--2 {
    width: 120px; height: 120px;
    background: var(--accent);
    bottom: -40px; right: 20%;
}
.cta-shape--3 {
    width: 60px; height: 60px;
    background: #fff;
    top: 20%; right: 5%;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}
.cta-text {
    color: rgba(255,255,255,.75);
    font-size: 1.063rem;
    line-height: 1.7;
    max-width: 480px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 960px) {
    .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 64px; }
}

.contact-desc {
    font-size: 1.063rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-100);
    color: var(--teal-700);
    border-radius: var(--radius-md);
}
.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: .938rem;
    color: var(--slate-800);
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: .938rem;
    color: var(--slate-500);
    line-height: 1.6;
}
.contact-item a:hover { color: var(--teal-600); }

/* Form */
.contact-form-wrap {
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--slate-100);
}
@media (min-width: 640px) { .contact-form-wrap { padding: 40px; } }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: .875rem;
    font-weight: 600;
    color: var(--slate-700);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .938rem;
    color: var(--slate-800);
    background: #fff;
    transition: var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}
.form-success.show { display: flex; }
.success-icon { color: var(--teal-500); }
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
}
.form-success p { color: var(--slate-500); }

/* ===== Map ===== */
.map-section { padding: 0; }
.map-container iframe {
    filter: grayscale(.3);
    transition: var(--transition);
}
.map-container iframe:hover { filter: grayscale(0); }

/* ===== Footer ===== */
.footer {
    background: var(--slate-900);
    color: rgba(255,255,255,.7);
    padding: 64px 0 0;
}
.logo-light { color: #fff; }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer-brand { max-width: 280px; }
.footer-desc {
    font-size: .938rem;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255,255,255,.5);
}
.footer h4 {
    font-family: var(--font-display);
    font-size: .938rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .938rem;
}
.footer-links a {
    color: rgba(255,255,255,.5);
    transition: var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }

.footer-bottom {
    margin-top: 48px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: .875rem;
    color: rgba(255,255,255,.4);
}
@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--teal-400); }

/* ===== Scroll Animations ===== */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}
