/* ============================================
   UMAY SYSTEMS — Agency Website Stylesheet
   ============================================ */

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

:root {
    /* Brand Colors — Navy on Off-White (Light) */
    --bg-primary: #F7F5F2;
    --bg-secondary: #EFECE8;
    --bg-elevated: #FFFFFF;
    --bg-card: #FFFFFF;
    --bone: #1E293B;
    --bone-light: #0F172A;
    --gold: #1E3A6D;
    --gold-light: #2B5298;
    --gold-dim: rgba(30, 58, 109, 0.5);
    --muted: #64748B;
    --accent: #475569;
    --border: rgba(30, 58, 109, 0.10);
    --border-hover: rgba(30, 58, 109, 0.20);

    /* Spacing */
    --section-pad: clamp(80px, 12vw, 140px);
    --container-max: 1200px;
    --container-pad: clamp(20px, 5vw, 40px);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--bone);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-smooth);
}

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

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

ul, ol { list-style: none; }

::selection {
    background: rgba(30, 58, 109, 0.15);
    color: #FFFFFF;
}


/* ===== TYPOGRAPHY ===== */
.heading-serif {
    font-family: 'Cormorant Garamond', 'Garamond', 'Georgia', serif;
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(32px, 5vw, 54px);
    color: var(--bone-light);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title em {
    font-style: normal;
    color: var(--gold);
}

.section-desc {
    font-weight: 300;
    font-size: clamp(15px, 1.6vw, 17px);
    color: var(--accent);
    line-height: 1.8;
    max-width: 560px;
}


/* ===== LAYOUT ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

section {
    padding-top: var(--section-pad);
    padding-bottom: var(--section-pad);
    position: relative;
}


/* ===== ANIMATED BACKGROUND ===== */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-grid::before {
    content: '';
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(rgba(30, 58, 109, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 58, 109, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridDrift 25s linear infinite;
}

@keyframes gridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Ambient glow orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.bg-orb--1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -150px;
    background: var(--gold);
    animation: orbFloat 12s ease-in-out infinite;
}

.bg-orb--2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -100px;
    background: var(--bone);
    animation: orbFloat 16s ease-in-out infinite reverse;
}

.bg-orb--3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    animation: orbPulse 10s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

@keyframes orbPulse {
    0%, 100% { opacity: 0.03; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.06; transform: translate(-50%, -50%) scale(1.15); }
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 108, 181, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: left 0.15s ease-out, top 0.15s ease-out;
    will-change: left, top;
}


/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 48px);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s var(--ease-smooth);
    background: transparent;
}

.nav--scrolled {
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 1001;
}

.nav-logo-img {
    height: 32px;
    width: 32px;
    object-fit: contain;
    border-radius: 6px;
    filter: none;
    mix-blend-mode: normal;
}

.nav-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--bone);
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    position: relative;
    padding: 4px 0;
    transition: color 0.3s var(--ease-smooth);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover {
    color: var(--bone);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bone);
    padding: 12px 28px;
    border: 1px solid var(--border-hover);
    transition: all 0.4s var(--ease-smooth);
}

.nav-cta:hover {
    background: rgba(59, 108, 181, 0.08);
    border-color: var(--gold);
    letter-spacing: 3px;
}

/* Mobile menu button */
.nav-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1001;
}

.nav-menu-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--bone);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

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

.nav-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile nav overlay */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(247, 245, 242, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.nav-mobile-overlay.active {
    display: flex;
    opacity: 1;
}

.nav-mobile-overlay a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.3s;
}

.nav-mobile-overlay a:hover {
    color: var(--gold);
}


/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--container-pad);
}

.hero-brand-display {
    margin: 0 auto 44px;
    text-align: center;
    animation: heroLogoIn 1.2s var(--ease-out) 0.2s both;
}

.hero-brand-icon {
    font-size: clamp(56px, 8vw, 80px);
    line-height: 1;
    color: var(--gold);
    margin-bottom: 8px;
    filter: drop-shadow(0 0 20px rgba(59, 108, 181, 0.15));
}

.hero-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(20px, 3vw, 28px);
    letter-spacing: 10px;
    text-transform: uppercase;
    color: var(--bone);
    opacity: 0.85;
}

@keyframes heroLogoIn {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 40px;
    animation: heroBadgeIn 0.8s var(--ease-out) 0.4s both;
}

@keyframes heroBadgeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(59, 108, 181, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(59, 108, 181, 0); }
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 6.5vw, 72px);
    line-height: 1.1;
    color: var(--bone-light);
    letter-spacing: 1px;
    margin-bottom: 28px;
    animation: heroTitleIn 1s var(--ease-out) 0.5s both;
}

@keyframes heroTitleIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-subtitle {
    font-weight: 300;
    font-size: clamp(15px, 1.8vw, 18px);
    color: var(--accent);
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 44px;
    animation: heroSubIn 1s var(--ease-out) 0.7s both;
}

@keyframes heroSubIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
    animation: heroSubIn 1s var(--ease-out) 0.9s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 16px 36px;
    border: 1px solid var(--gold);
    transition: all 0.4s var(--ease-smooth);
}

.btn-primary:hover {
    background: var(--gold-light);
    letter-spacing: 3px;
    box-shadow: 0 8px 32px rgba(59, 108, 181, 0.2);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bone);
    padding: 16px 36px;
    border: 1px solid var(--border-hover);
    transition: all 0.4s var(--ease-smooth);
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(59, 108, 181, 0.06);
    letter-spacing: 3px;
}

/* Hero divider line */
.hero-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold-dim), transparent);
    margin: 0 auto;
    animation: heroDivIn 1.2s var(--ease-out) 1.1s both;
}

@keyframes heroDivIn {
    0% { opacity: 0; height: 0; }
    100% { opacity: 1; height: 80px; }
}


/* ===== SERVICES SECTION ===== */
#hizmetler {
    background: var(--bg-primary);
}

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

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
    background: rgba(59, 108, 181, 0.04);
    transition: all 0.4s var(--ease-smooth);
}

.service-card:hover .service-icon {
    border-color: var(--gold-dim);
    background: rgba(59, 108, 181, 0.08);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(22px, 2.5vw, 28px);
    color: var(--bone-light);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.service-card > p {
    font-size: 15px;
    color: var(--accent);
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
    letter-spacing: 0.3px;
}

.service-features li .check {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}


/* ===== PROCESS SECTION ===== */
#surec {
    background: var(--bg-secondary);
}

.process-header {
    text-align: center;
    margin-bottom: 72px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

/* Connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), var(--border-hover), transparent);
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--gold);
    margin: 0 auto 24px;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
    transition: all 0.4s var(--ease-smooth);
}

.process-step:hover .step-number {
    border-color: var(--gold);
    background: rgba(59, 108, 181, 0.06);
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(59, 108, 181, 0.1);
}

.process-step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--bone-light);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.process-step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}


/* ===== ABOUT / WHY US SECTION ===== */
#hakkimizda {
    background: var(--bg-primary);
}

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

.about-text {
    max-width: 520px;
}

.about-text .section-desc {
    margin-bottom: 40px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.about-value-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: rgba(59, 108, 181, 0.03);
    transition: all 0.3s var(--ease-smooth);
}

.about-value:hover .about-value-icon {
    border-color: var(--gold-dim);
    background: rgba(59, 108, 181, 0.06);
}

.about-value h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--bone-light);
    margin-bottom: 4px;
}

.about-value p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* About right — visual / stats */
.about-visual {
    position: relative;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
}

.stat-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.stat-card .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(36px, 4vw, 48px);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}


/* ===== CTA SECTION ===== */
#cta {
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 108, 181, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

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

.cta-content .section-desc {
    margin: 0 auto 44px;
}


/* ===== CONTACT SECTION ===== */
#iletisim {
    background: var(--bg-primary);
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-info-text {
    max-width: 420px;
}

.contact-info-text p {
    font-size: 15px;
    color: var(--accent);
    line-height: 1.8;
    margin-top: 12px;
}

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

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    transition: all 0.4s var(--ease-smooth);
}

.contact-channel:hover {
    border-color: var(--border-hover);
    transform: translateX(6px);
    background: var(--bg-elevated);
}

.contact-channel-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: rgba(59, 108, 181, 0.03);
}

.contact-channel-text h4 {
    font-size: 14px;
    font-weight: 400;
    color: var(--bone-light);
    margin-bottom: 2px;
}

.contact-channel-text p {
    font-size: 13px;
    color: var(--muted);
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--bone);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    outline: none;
    transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold-dim);
    box-shadow: 0 0 0 3px rgba(59, 108, 181, 0.08);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23475569'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

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

.form-submit {
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bg-primary);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 18px 36px;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    border-radius: 0;
    margin-top: 8px;
}

.form-submit:hover {
    background: var(--gold-light);
    letter-spacing: 4px;
    box-shadow: 0 8px 32px rgba(59, 108, 181, 0.2);
}


/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 28px;
    width: 28px;
    object-fit: contain;
    border-radius: 4px;
    filter: none;
    mix-blend-mode: normal;
}

.footer-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--bone);
}

.footer-brand > p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.footer-column h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--bone-light);
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-column a {
    font-size: 14px;
    color: var(--muted);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(107, 107, 120, 0.6);
    letter-spacing: 1px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--muted);
    transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
    border-color: var(--gold-dim);
    color: var(--gold);
    transform: translateY(-2px);
}


/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-smooth);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.15), 0 0 0 10px rgba(37, 211, 102, 0.05); }
}


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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.19s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.26s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.33s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.40s; }


/* ===== SECTION DIVIDERS ===== */
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.3;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-text {
        max-width: 100%;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-pad: clamp(60px, 10vw, 100px);
    }

    /* Navigation mobile */
    .nav-links-desktop {
        display: none;
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-menu-btn {
        display: flex;
    }

    /* Hero mobile */
    .hero-title {
        font-size: clamp(32px, 8vw, 48px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Stats */
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    /* WhatsApp float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .service-card {
        padding: 32px 24px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .nav-brand-text {
        font-size: 14px;
        letter-spacing: 3px;
    }
}
