/* ===== CSS Custom Properties ===== */
: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;
    --slate-950: #020617;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

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

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-800);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ===== Typography ===== */
.text-teal {
    color: var(--teal-600);
}

.section-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-md);
}

.label-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--teal-600);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-500);
    max-width: 560px;
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-600);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 148, 136, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--teal-600);
    color: var(--teal-600);
    transform: translateY(-2px);
}

.btn-white {
    background: #ffffff;
    color: var(--teal-700);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--slate-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-200);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--slate-900);
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--teal-600);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--teal-600);
    background: var(--teal-50);
}

.nav-cta {
    margin-left: var(--space-sm);
    background: var(--teal-600);
    color: #ffffff !important;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--teal-700);
    color: #ffffff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--slate-100);
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.hamburger::before { top: 0; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 50%;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 50%;
    transform: rotate(-45deg);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--slate-600);
    transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
    background: var(--slate-100);
    color: var(--slate-900);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-800);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--teal-600);
    background: var(--teal-50);
}

.mobile-cta {
    margin-top: var(--space-md);
    background: var(--teal-600);
    color: #ffffff !important;
    padding: 1rem 2.5rem !important;
    border-radius: var(--radius-sm);
}

.mobile-cta:hover {
    background: var(--teal-700) !important;
    color: #ffffff !important;
}

/* ===== Hero Section ===== */
.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%, #ffffff 50%, var(--teal-50) 100%);
}

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

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--teal-100);
    top: -200px;
    right: -150px;
    opacity: 0.6;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: var(--teal-200);
    bottom: -80px;
    left: 10%;
    opacity: 0.4;
}

.geo-rect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--teal-600);
    border-radius: var(--radius-xl);
    top: 15%;
    left: -60px;
    opacity: 0.07;
    transform: rotate(15deg);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 150px 150px;
    border-color: transparent transparent var(--teal-300) transparent;
    bottom: 20%;
    right: 5%;
    opacity: 0.2;
    transform: rotate(-30deg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--slate-500);
    margin-bottom: var(--space-lg);
}

.eyebrow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--teal-600);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--slate-500);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--teal-600);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--slate-500);
    font-weight: 500;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    padding-right: var(--space-lg);
}

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

.hero-img--primary {
    width: 100%;
    aspect-ratio: 5/6.5;
}

.hero-img--primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
}

.hero-img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--teal-600);
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
    animation: float-badge 3s ease-in-out infinite;
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--slate-400);
    font-weight: 500;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== About Section ===== */
.about {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.about-color-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: var(--teal-600);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--slate-900);
    color: #ffffff;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.floating-card-number {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--teal-300);
}

.floating-card-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: var(--space-md);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--slate-700);
}

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--teal-100);
    color: var(--teal-600);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* ===== Products Section ===== */
.products {
    padding: var(--space-4xl) 0;
    background: var(--slate-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-label {
    justify-content: center;
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.product-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--slate-100);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
}

.product-card-content {
    padding: var(--space-xl);
}

.product-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--teal-50);
    color: var(--teal-600);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.product-card:hover .product-icon {
    background: var(--teal-600);
    color: #ffffff;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: var(--space-xs);
}

.product-desc {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--slate-600);
}

.product-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== Services Section ===== */
.services {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: var(--slate-900);
}

.services-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.services-content .section-label {
    color: var(--teal-400);
}

.services-content .section-label .label-line {
    background: var(--teal-400);
}

.services-content .section-title {
    color: #ffffff;
}

.services-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-400);
    margin-bottom: var(--space-xl);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.service-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-md);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teal-600);
    line-height: 1;
    padding-top: 0.25rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.services-visual {
    position: relative;
}

.services-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.services-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.services-quote-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--teal-600);
    color: #ffffff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}

.services-quote-card svg {
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.services-quote-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.quote-source {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    font-style: normal;
}

/* ===== Community Section ===== */
.community {
    padding: var(--space-4xl) 0;
    background: var(--teal-600);
    position: relative;
    overflow: hidden;
}

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

.c-shape {
    position: absolute;
    opacity: 0.1;
}

.c-shape--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    top: -100px;
    right: -100px;
}

.c-shape--square {
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    bottom: -50px;
    left: 10%;
    transform: rotate(20deg);
}

.c-shape--dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    top: 30%;
    left: 5%;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.community .section-label {
    color: var(--teal-200);
}

.community .section-label .label-line {
    background: var(--teal-200);
}

.community .section-title {
    color: #ffffff;
}

.community .text-teal {
    color: var(--teal-200);
}

.community-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto var(--space-md);
    color: #ffffff;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

.cta-address {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* ===== Contact Section ===== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--slate-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--teal-50);
    color: var(--teal-600);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--slate-700);
    font-weight: 500;
}

.contact-value a {
    color: var(--teal-600);
    transition: color var(--transition-fast);
}

.contact-value a:hover {
    color: var(--teal-700);
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate-800);
    transition: all var(--transition-fast);
    background: var(--slate-50);
}

.form-input:focus {
    outline: none;
    border-color: var(--teal-500);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder {
    color: var(--slate-400);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-2xl);
    gap: var(--space-md);
}

.form-success.visible {
    display: flex;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--teal-100);
    color: var(--teal-600);
    border-radius: 50%;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
}

.success-text {
    font-size: 1rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ===== Map Section ===== */
.map-section {
    border-top: 1px solid var(--slate-200);
}

.map-container {
    filter: grayscale(30%);
    transition: filter var(--transition-base);
}

.map-container:hover {
    filter: grayscale(0%);
}

/* ===== Footer ===== */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
}

.footer-top {
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.footer-logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--teal-600);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--slate-500);
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

.footer-contact a {
    color: var(--teal-400);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: var(--space-md) 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--slate-600);
    text-align: center;
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-visual {
        max-width: 500px;
    }

    .about-grid,
    .services-layout,
    .community-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-color-block {
        width: 30%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

    .hero-img--accent {
        display: none;
    }

    .hero-image-stack {
        padding-right: 0;
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-floating-card {
        right: 10px;
        bottom: -15px;
    }

    .services-quote-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-md);
        max-width: 100%;
    }

    .services-image-main img {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .community .section-title,
    .services-content .section-title,
    .about-content .section-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
}

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

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

    .hero-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-top: var(--space-sm);
        display: inline-flex;
    }

    .contact-form-wrapper {
        padding: var(--space-md);
    }
}
