/* ╔══════════════════════════════════════════════════╗
   ║  Magic Dental Studio — Medical Luxury Theme       ║
   ║  Palette: Navy #0a1628 · Cyan #06b6d4 · White     ║
   ╚══════════════════════════════════════════════════╝ */

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

:root {
    /* Palette */
    --navy: #0a1628;
    --navy-light: #111d32;
    --navy-mid: #1e293b;
    --slate: #334155;
    --silver: #94a3b8;
    --silver-lt: #cbd5e1;
    --white: #f8fafc;
    --pure-white: #ffffff;
    --cyan: #06b6d4;
    --cyan-dark: #0891b2;
    --cyan-glow: rgba(6, 182, 212, 0.25);
    --cyan-soft: rgba(6, 182, 212, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 120px;
    --container: 1200px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--silver-lt);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Section Shared ────────────────────────────── */
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--cyan);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header .section-label::before {
    display: none;
}

.section-header .section-label {
    padding-left: 0;
}

.section-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--silver);
}

/* ── NAVBAR ────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.3));
    transition: filter 0.3s var(--ease);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1.1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    line-height: 1;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--silver-lt);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--pure-white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--navy);
    box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--pure-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(6, 182, 212, 0.4);
    color: var(--cyan);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.15);
}

.nav-cta {
    padding: 10px 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pure-white);
    transition: all 0.3s var(--ease);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ──────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.60) 50%, rgba(6, 182, 212, 0.08) 100%),
        url('images/teknoloji.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--navy), transparent);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--cyan);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s var(--ease) both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    animation: pulse-dot 2s 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(48px, 7vw, 82px);
    font-weight: 800;
    color: var(--pure-white);
    line-height: 1.05;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s 0.2s var(--ease) both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan), #22d3ee, var(--cyan-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeInUp 0.8s 0.4s var(--ease) both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s 0.6s var(--ease) both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s 0.8s var(--ease) both;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--cyan);
}

.stat-label {
    font-size: 13px;
    color: var(--silver);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(148, 163, 184, 0.2);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeIn 1s 1.2s var(--ease) both;
}

.scroll-indicator span {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--silver);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.01% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ── ABOUT ─────────────────────────────────────── */
.about {
    padding: var(--section-pad) 0;
    background: var(--navy);
}

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

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about-image:hover .about-image-wrapper img {
    transform: scale(1.05);
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cyan);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.about-experience-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--navy);
    padding: 20px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.3);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.about-content .section-title {
    margin-bottom: 24px;
}

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

.about-text strong {
    color: var(--pure-white);
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--cyan-soft);
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-radius: 10px;
    transition: all 0.3s var(--ease);
}

.about-feature:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.12);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--cyan);
}

.about-feature span {
    font-size: 13px;
    font-weight: 500;
    color: var(--pure-white);
}

/* ── SERVICES ──────────────────────────────────── */
.services {
    padding: var(--section-pad) 0;
    background: var(--navy-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
}

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

.service-card {
    position: relative;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    animation-delay: var(--delay, 0s);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--cyan-glow);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy-light) 0%, transparent 60%);
}

.card-content {
    padding: 28px;
    position: relative;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-soft);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    color: var(--cyan);
    margin-bottom: 16px;
    transition: all 0.3s var(--ease);
}

.service-card:hover .card-icon {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px var(--cyan-glow);
}

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

.card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--silver);
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    transition: gap 0.3s var(--ease);
}

.card-link:hover {
    gap: 12px;
}

/* ── EXPERT SECTION ────────────────────────────── */
.expert {
    padding: var(--section-pad) 0;
    background: var(--navy);
    position: relative;
}

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

.expert-content .section-title {
    margin-bottom: 20px;
}

.expert-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--silver-lt);
    margin-bottom: 36px;
}

.expert-text strong {
    color: var(--pure-white);
}

.expert-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--cyan-soft);
    border: 1px solid rgba(6, 182, 212, 0.1);
    border-radius: 12px;
    transition: all 0.3s var(--ease);
}

.benefit:hover {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.1);
    transform: translateX(4px);
}

.benefit-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan);
    opacity: 0.5;
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
}

.benefit-content h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--silver);
}

.expert-visual {
    position: relative;
}

.expert-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.expert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.expert-images-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 520px;
}

.expert-image-accent {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--cyan);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.2;
}

.expert-card {
    position: absolute;
    bottom: -20px;
    left: 24px;
    right: 24px;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.expert-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 10px;
    color: var(--navy);
}

.expert-card strong {
    display: block;
    font-size: 14px;
    color: var(--pure-white);
    margin-bottom: 2px;
}

.expert-card span {
    font-size: 12px;
    color: var(--silver);
}

/* ── TECHNOLOGY ────────────────────────────────── */
.technology {
    padding: var(--section-pad) 0;
    background: var(--navy-light);
    position: relative;
}

.technology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
}

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

.tech-card {
    padding: 36px 28px;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s var(--ease);
    animation-delay: var(--delay, 0s);
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.06);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.tech-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-soft);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 16px;
    color: var(--cyan);
    margin: 0 auto 20px;
    transition: all 0.3s var(--ease);
}

.tech-card:hover .tech-icon-wrapper {
    background: rgba(6, 182, 212, 0.15);
    border-color: var(--cyan);
    box-shadow: 0 0 24px var(--cyan-glow);
    transform: scale(1.1);
}

.tech-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--silver);
}

/* ── CONTACT ───────────────────────────────────── */
.contact {
    padding: var(--section-pad) 0;
    background: var(--navy);
    position: relative;
}

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

.contact-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--silver-lt);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cyan-soft);
    border: 1px solid rgba(6, 182, 212, 0.12);
    border-radius: 10px;
    color: var(--cyan);
}

.contact-item strong {
    display: block;
    font-size: 14px;
    color: var(--pure-white);
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.5;
}

/* Form */
.contact-form-wrapper {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.08);
    border-radius: 20px;
    padding: 40px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--silver-lt);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--pure-white);
    outline: none;
    transition: all 0.3s var(--ease);
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-glow);
    background: rgba(10, 22, 40, 0.8);
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    margin-top: 8px;
}

/* ── FOOTER ────────────────────────────────────── */
.footer {
    background: var(--navy-light);
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 64px 0 48px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--silver);
    margin-top: 16px;
    font-style: italic;
}

.footer-links h4,
.footer-map h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    color: var(--silver);
    transition: color 0.3s var(--ease);
}

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

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.map-wrapper iframe {
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--slate);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(148, 163, 184, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 10px;
    color: var(--silver);
    transition: all 0.3s var(--ease);
}

.footer-social a:hover {
    background: var(--cyan-soft);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--cyan);
    transform: translateY(-2px);
}

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll reveal classes */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s var(--ease);
}

.reveal-up {
    transform: translateY(48px);
}

.reveal-left {
    transform: translateX(-48px);
}

.reveal-right {
    transform: translateX(48px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
    :root {
        --section-pad: 80px;
    }

    .about-grid {
        gap: 48px;
    }

    .expert-grid {
        gap: 48px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-pad: 64px;
    }

    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 48px;
        transition: transform 0.4s var(--ease);
        border-left: 1px solid rgba(6, 182, 212, 0.1);
        transform: translateX(100%);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    /* Hero */
    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper img {
        height: 320px;
    }

    .about-experience-badge {
        bottom: -16px;
        right: auto;
        left: 16px;
    }

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

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

    /* Expert */
    .expert-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .expert-visual {
        order: -1;
    }

    .expert-images-row {
        height: 360px;
    }

    .expert-image-wrapper img {
        height: 100%;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .card-content {
        padding: 20px;
    }
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Form success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    color: var(--cyan);
    margin-bottom: 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--silver);
}