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

:root {
    --emerald-900: #022c22;
    --emerald-800: #047857;
    --emerald-700: #059669;
    --emerald-600: #10b981;
    --emerald-500: #34d399;
    --cream-50: #FAF9F6;
    --cream-100: #F5F5DC;
    --cream-200: #EDE8D5;
    --cream-300: #E8E0C8;
    --dark: #0a0a0a;
    --dark-700: #1a1a1a;
    --dark-600: #2a2a2a;
    --dark-500: #3a3a3a;
    --gray-400: #6b7280;
    --gray-300: #9ca3af;
    --white: #ffffff;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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;
    -moz-osx-font-smoothing: grayscale;
}

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;
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(4, 120, 87, 0.08);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    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-weight: 700;
    font-size: 1.1rem;
    color: var(--emerald-800);
}

.nav-logo-text {
    letter-spacing: -0.02em;
}

.nav-logo-accent {
    color: var(--dark-500);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-500);
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.25s var(--ease-out);
}

.nav-link:hover {
    color: var(--emerald-800);
    background: rgba(4, 120, 87, 0.06);
}

.nav-link--cta {
    background: var(--emerald-800);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 10px;
    margin-left: 8px;
    transition: all 0.3s var(--ease-out);
}

.nav-link--cta:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: rgba(4, 120, 87, 0.06);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.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);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--cream-50);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.25s var(--ease-out);
    transform: translateY(20px);
    opacity: 0;
}

.mobile-menu.open .mobile-menu-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(4) { transition-delay: 0.2s; }

.mobile-menu-link:hover {
    color: var(--emerald-800);
}

.mobile-menu-cta {
    background: var(--emerald-800);
    color: var(--white) !important;
    border-radius: 12px;
    padding: 16px 36px;
    font-size: 1.25rem;
    margin-top: 8px;
}

.mobile-menu-contact {
    margin-top: 32px;
    text-align: center;
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 1.8;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s var(--ease-out) 0.25s;
}

.mobile-menu.open .mobile-menu-contact {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-contact a {
    color: var(--emerald-800);
    font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--emerald-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(4, 120, 87, 0.25);
}

.btn--primary:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(4, 120, 87, 0.35);
}

.btn--secondary {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--cream-300);
}

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

.btn--light {
    background: var(--white);
    color: var(--emerald-800);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn--light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: var(--cream-50);
}

.hero-deco {
    position: absolute;
    pointer-events: none;
}

.hero-deco--circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4, 120, 87, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -150px;
}

.hero-deco--square {
    width: 200px;
    height: 200px;
    background: var(--emerald-800);
    border-radius: 24px;
    opacity: 0.04;
    bottom: 10%;
    left: -60px;
    transform: rotate(15deg);
}

.hero-deco--dots {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--emerald-800) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.12;
    top: 20%;
    left: 8%;
}

.hero-deco--line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--emerald-800), transparent);
    opacity: 0.1;
    top: 35%;
    right: 5%;
    transform: rotate(-30deg);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(4, 120, 87, 0.08);
    border: 1px solid rgba(4, 120, 87, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--emerald-800);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-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-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--emerald-800);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(4, 120, 87, 0.15);
    border-radius: 3px;
    z-index: -1;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark-500);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    gap: 28px;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--emerald-800);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--emerald-800);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    z-index: 2;
}

.hero-floating-card--1 {
    bottom: 80px;
    left: -30px;
    animation: float-1 4s ease-in-out infinite;
}

.hero-floating-card--2 {
    top: 60px;
    right: -20px;
    animation: float-2 5s ease-in-out infinite;
}

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

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

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-800);
    background: rgba(4, 120, 87, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--cream-100);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 18px;
}

.section-title--light {
    color: var(--white);
}

.section-highlight {
    color: var(--emerald-800);
}

.section-highlight-light {
    color: var(--emerald-500);
}

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

/* ========== SERVICES ========== */
.services {
    padding: 120px 0;
    background: var(--cream-50);
    position: relative;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

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

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(4, 120, 87, 0.08);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--emerald-800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(4, 120, 87, 0.1);
    border-color: rgba(4, 120, 87, 0.15);
}

.service-card--featured {
    background: var(--emerald-800);
    border-color: transparent;
}

.service-card--featured::before {
    background: var(--emerald-600);
}

.service-card--featured .service-card-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-card--featured .service-card-icon svg {
    stroke: var(--white) !important;
}

.service-card--featured .service-card-title {
    color: var(--white);
}

.service-card--featured .service-card-desc {
    color: rgba(255, 255, 255, 0.8);
}

.service-card--featured .service-card-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card--featured .service-card-features li svg {
    stroke: var(--emerald-400) !important;
}

.service-card-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(4, 120, 87, 0.04);
    border-radius: 50%;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-card-accent {
    transform: scale(1.5);
    background: rgba(4, 120, 87, 0.06);
}

.service-card--featured .service-card-accent {
    background: rgba(255, 255, 255, 0.06);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(4, 120, 87, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card-icon {
    background: rgba(4, 120, 87, 0.12);
    transform: scale(1.05);
}

.service-card-icon svg {
    stroke: var(--emerald-800);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-500);
    margin-bottom: 24px;
}

.service-card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-600);
}

.service-card-features li svg {
    flex-shrink: 0;
}

/* ========== ABOUT ========== */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-group {
    position: relative;
    height: 600px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 6px solid var(--white);
}

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

.about-image-pattern {
    position: absolute;
    top: -30px;
    right: 30%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--emerald-800) 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.15;
    z-index: -1;
}

.about-content-side {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-500);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-value {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(4, 120, 87, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.about-value span {
    font-size: 0.9rem;
    color: var(--dark-500);
    line-height: 1.6;
}

/* ========== WHY US ========== */
.why-us {
    padding: 120px 0;
    background: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.why-us-header {
    text-align: center;
    margin-bottom: 64px;
}

.why-us-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

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

.why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s var(--ease-out);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.why-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 20px;
}

.why-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.why-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* ========== CTA BANNER ========== */
.cta-banner {
    padding: 100px 0;
    background: var(--cream-100);
    position: relative;
    overflow: hidden;
}

.cta-banner-deco {
    position: absolute;
    border-radius: 50%;
}

.deco-circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(4, 120, 87, 0.06);
    top: -80px;
    left: -80px;
}

.deco-circle-2 {
    width: 200px;
    height: 200px;
    background: rgba(4, 120, 87, 0.04);
    bottom: -60px;
    right: 10%;
}

.cta-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner-content {
    max-width: 500px;
}

.cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-banner-text {
    font-size: 1.05rem;
    color: var(--dark-500);
    line-height: 1.7;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ========== CONTACT ========== */
.contact {
    padding: 120px 0;
    background: var(--cream-50);
    position: relative;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side {
    max-width: 480px;
}

.contact-info-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-500);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(4, 120, 87, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.contact-detail-value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.5;
}

.contact-detail-link {
    color: var(--emerald-800);
    transition: color 0.2s;
}

.contact-detail-link:hover {
    color: var(--emerald-700);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Contact Form */
.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 44px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(4, 120, 87, 0.06);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--dark-500);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream-50);
    transition: all 0.25s var(--ease-out);
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-800);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.08);
}

.form-input::placeholder {
    color: var(--gray-300);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

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

.form-success-icon {
    width: 72px;
    height: 72px;
    background: rgba(4, 120, 87, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--dark-500);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 320px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-text {
    letter-spacing: -0.02em;
}

.footer-logo-text span {
    color: var(--gray-300);
    font-weight: 500;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--emerald-500);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.footer-contact a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--emerald-500);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.footer-location {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out);
}

.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; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-group {
        height: 400px;
        max-width: 500px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        max-width: 100%;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        order: -1;
    }

    .hero-image-wrapper img {
        height: 400px;
    }

    .hero-floating-card--1 {
        left: 10px;
        bottom: 40px;
    }

    .hero-floating-card--2 {
        right: 10px;
        top: 20px;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .service-card {
        padding: 28px;
    }

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

    .cta-banner-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions .btn {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.85rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .about-image-group {
        height: 300px;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
