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

:root {
    --charcoal-900: #1a1a2e;
    --charcoal-800: #22223a;
    --charcoal-700: #2d2d4a;
    --charcoal-600: #3a3a5c;
    --charcoal-500: #4a4a6a;
    --coral: #FF6B4A;
    --coral-light: #FF8A6F;
    --coral-dark: #E5553A;
    --coral-glow: rgba(255, 107, 74, 0.15);
    --coral-glow-strong: rgba(255, 107, 74, 0.3);
    --white: #ffffff;
    --off-white: #f8f7f4;
    --gray-100: #f0efed;
    --gray-200: #e2e0db;
    --gray-300: #c4c1b8;
    --gray-600: #6b6860;
    --gray-800: #2a2824;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 26, 46, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal-800);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--charcoal-900);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-size: 14px;
    font-weight: 600;
}
.skip-link:focus {
    top: 16px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: relative;
}

.header-shape-left,
.header-shape-right {
    position: absolute;
    top: 0;
    height: 3px;
    width: 33.33%;
}
.header-shape-left {
    left: 0;
    background: var(--coral);
}
.header-shape-right {
    right: 0;
    background: var(--coral-light);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    z-index: 1;
}

.logo-dot {
    color: var(--coral);
}

.logo-text--light {
    color: var(--white);
}

.nav {
    z-index: 1;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-nav {
    background: var(--coral);
    color: var(--white) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    margin-left: 8px;
}
.btn-nav:hover {
    background: var(--coral-light);
    transform: translateY(-1px);
}

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

.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: radial-gradient(circle, var(--coral-glow) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 74, 0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 120px 120px;
    border-color: transparent transparent var(--coral-glow) transparent;
    top: 20%;
    left: 5%;
    transform: rotate(-15deg);
    opacity: 0.6;
}
.geo-triangle--1::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent rgba(255, 138, 111, 0.2) transparent;
    top: 25px;
    left: -60px;
    transform: rotate(30deg);
}

.geo-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 107, 74, 0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral-glow);
    border: 1px solid rgba(255, 107, 74, 0.3);
    color: var(--coral-light);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--coral);
    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.5); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 74, 0.35);
}
.btn-primary:hover {
    background: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 74, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

/* HERO VISUAL */
.hero-visual {
    position: relative;
    min-height: 460px;
}

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

.hero-card--main {
    position: relative;
}
.hero-card--main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 100%);
}

.hero-card-stat {
    display: flex;
    flex-direction: column;
}
.hero-card-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-card-stat .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.hero-card--floating {
    position: absolute;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.hero-card--floating.hero-card--stat--2 {
    animation-delay: -1.3s;
}
.hero-card--floating.hero-card--stat--3 {
    animation-delay: -2.6s;
}

.hero-card--stat {
    bottom: 40px;
    left: -30px;
}
.hero-card--stat--2 {
    top: 30px;
    right: -20px;
}
.hero-card--stat--3 {
    bottom: -10px;
    right: 30px;
}

.floating-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-glow);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.floating-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal-900);
    line-height: 1.2;
}
.floating-stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.3;
}

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

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.tag-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--charcoal-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

.text-coral {
    color: var(--coral);
}
.text-dark {
    color: var(--charcoal-900);
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header--light .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
}

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--coral-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--coral-glow);
    border-radius: 50%;
    transition: var(--transition);
}
.service-card:hover .service-card-accent {
    transform: scale(1.5);
    background: var(--coral-glow-strong);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-glow);
    border-radius: var(--radius-sm);
    color: var(--coral);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--coral);
    color: var(--white);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

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

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

.about-visual {
    position: relative;
}

.about-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-shape {
    position: absolute;
    border-radius: var(--radius-md);
}
.about-shape--1 {
    width: 120px;
    height: 120px;
    background: var(--coral);
    bottom: -30px;
    right: -30px;
    opacity: 0.15;
    transform: rotate(15deg);
}
.about-shape--2 {
    width: 80px;
    height: 80px;
    background: var(--charcoal-900);
    top: -20px;
    left: -20px;
    opacity: 0.08;
    transform: rotate(-10deg);
    border-radius: 50%;
}

.about-accent-strip {
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 60%;
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--coral) 0px,
        var(--coral) 12px,
        transparent 12px,
        transparent 20px
    );
    border-radius: 3px;
    opacity: 0.5;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-800);
}

.feature-check {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-glow);
    border-radius: 50%;
    color: var(--coral);
    flex-shrink: 0;
}

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

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

.geo-circle--3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--coral-glow) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -150px;
}

.geo-square {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 107, 74, 0.15);
    top: 15%;
    right: 8%;
    transform: rotate(30deg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--coral-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 74, 0.2);
}
.why-card:hover::after {
    transform: scaleX(1);
}

.why-card-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 107, 74, 0.15);
    line-height: 1;
    margin-bottom: 12px;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ===== LOCATION ===== */
.location {
    padding: 100px 0;
    background: var(--off-white);
}

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

.location-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.location-address {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.address-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.address-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-glow);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.address-block strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 2px;
}
.address-block span,
.address-block a {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}
.address-block a:hover {
    color: var(--coral);
}

.btn-map {
    display: inline-flex;
}

.location-map {
    position: relative;
}

.map-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}
.map-placeholder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.map-placeholder a {
    display: block;
    cursor: pointer;
}

.map-placeholder-inner {
    background: var(--charcoal-700);
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-placeholder-inner p {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
}

.map-hint {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
}

.map-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.08;
    top: -40px;
    right: -40px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

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

.contact-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal-800);
    padding: 14px 18px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.contact-quick-item:hover {
    background: var(--coral-glow);
    color: var(--coral-dark);
}

.contact-quick-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-glow);
    border-radius: var(--radius-sm);
    color: var(--coral);
    flex-shrink: 0;
}

/* FORM */
.contact-form {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal-800);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal-800);
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}
.form-input:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px var(--coral-glow);
}
.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='%236b6860' 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 14px center;
    padding-right: 40px;
}

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

.form-success {
    margin-top: 20px;
    padding: 20px;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn 0.4s ease;
}
.form-success strong {
    font-size: 14px;
    color: #2e7d32;
}
.form-success span {
    font-size: 13px;
    color: #558b2f;
}
.form-success .success-icon {
    color: #4caf50;
    flex-shrink: 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal-900);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.footer-circle {
    position: absolute;
    border-radius: 50%;
}
.footer-circle--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--coral-glow) 0%, transparent 70%);
    top: -100px;
    right: -50px;
}
.footer-circle--2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 138, 111, 0.06) 0%, transparent 70%);
    bottom: -80px;
    left: 10%;
}

.footer-inner {
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list a,
.footer-list span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-list a:hover {
    color: var(--coral-light);
}
.footer-list svg {
    flex-shrink: 0;
    opacity: 0.7;
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    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-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        max-width: 500px;
        min-height: 380px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-inner,
    .location-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-visual {
        order: -1;
        max-width: 500px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal-900);
        flex-direction: column;
        align-items: stretch;
        padding: 88px 24px 24px;
        gap: 4px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-link {
        padding: 12px 16px;
        font-size: 16px;
    }
    .btn-nav {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    .nav-overlay.active {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    .hero-visual {
        min-height: 300px;
    }
    .hero-card--floating {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 28px 20px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .hero-card--main img {
        height: 220px;
    }
}
