/* ═══════════════════════════════════════
   REAL AMOUNT — Home Page
   ═══════════════════════════════════════ */

/* ── Variables ── */
:root {
    --primary: #1a3c5e;
    --primary-dark: #0d1f33;
    --primary-deeper: #091728;
    --primary-light: #2a5480;
    --accent: #c9a84c;
    --accent-light: #e8c96e;
    --accent-muted: #f5e9c8;
    --accent-glow: rgba(201, 168, 76, 0.3);
    --bg: #eef2f7;
    --card: #ffffff;
    --border: #d8e0eb;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 2px 12px rgba(26, 60, 94, 0.09);
    --shadow-lg: 0 8px 32px rgba(26, 60, 94, 0.14);
    --shadow-xl: 0 20px 60px rgba(26, 60, 94, 0.18);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 31, 51, 0.85);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 31, 51, 0.96);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 24px;
}

.nav-link.active {
    color: #fff;
}

.nav-cta {
    margin-left: 1rem;
    padding: 0.55rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 100px;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.35) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(9, 23, 40, 0.92) 0%, rgba(26, 60, 94, 0.7) 50%, rgba(9, 23, 40, 0.85) 100%),
        radial-gradient(ellipse at 30% 80%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 6rem 2rem 5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--accent-light);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge svg {
    color: var(--accent);
}

.hero-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title-line {
    display: block;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all var(--transition);
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all var(--transition);
    backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline;
}

.hero-stat-plus {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.hero-stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-scroll-indicator span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.scroll-arrow {
    animation: bounceDown 2s ease infinite;
    color: rgba(255, 255, 255, 0.4);
}

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

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

/* ═══════════════════════════════
   SECTION COMMON
═══════════════════════════════ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0.06) 100%);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--accent);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.15;
    margin-bottom: 1rem;
}

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
.services {
    padding: 6rem 0;
    background: var(--bg);
}

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

.service-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(201, 168, 76, 0.25);
}

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

.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(to bottom, #fffdf5, var(--card));
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

.service-featured-tag {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.service-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.05);
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.service-features li svg {
    color: var(--accent);
    flex-shrink: 0;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
    transition: all var(--transition);
    margin-top: auto;
}

.service-card-link:hover {
    color: var(--accent);
    gap: 0.7rem;
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, #e3e9f2 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.about-content .section-tag {
    display: inline-block;
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-content {
    text-align: center;
}

.about-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    max-width: 480px;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-light);
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.2rem;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About visual — floating stats cards */
.about-visual {
    position: relative;
    height: 420px;
}

.about-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-float-card {
    position: absolute;
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all var(--transition);
    animation: float 6s ease-in-out infinite;
}

.about-float-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: var(--shadow-xl);
}

.float-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}
.card-1 .float-card-icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #16a34a;
}

.card-2 {
    top: 160px;
    right: 10px;
    animation-delay: -2s;
}
.card-2 .float-card-icon {
    background: linear-gradient(135deg, var(--accent-muted), #f0dda0);
    color: var(--accent);
}

.card-3 {
    bottom: 30px;
    left: 40px;
    animation-delay: -4s;
}
.card-3 .float-card-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: var(--primary);
}

.float-stat {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    line-height: 1.2;
}

.float-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* ═══════════════════════════════
   PROCESS / HOW IT WORKS
═══════════════════════════════ */
.process {
    padding: 6rem 0;
    background: var(--card);
}

.process-timeline {
    display: flex;
    gap: 0;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1.5rem;
}

.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent-light);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(26, 60, 94, 0.25);
    transition: all var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(26, 60, 94, 0.35);
}

.process-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--border));
    z-index: 1;
}

.process-step:last-child .process-connector {
    display: none;
}

.process-content h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.process-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════
   CTA BANNER
═══════════════════════════════ */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-deeper) 0%, var(--primary) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

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

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    bottom: -120px;
    left: -80px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    transition: all var(--transition);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact {
    padding: 6rem 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--accent-light);
    transition: transform var(--transition);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.08);
}

.contact-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-card a:hover {
    color: var(--accent);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
    color: #fff !important;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.home-footer {
    background: var(--primary-deeper);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 0.5rem;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    transition: color var(--transition);
}

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

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all var(--transition);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.social-link:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.social-link[aria-label="Telegram"]:hover {
    background: #0088cc;
    border-color: transparent;
}

.social-link[aria-label="Facebook"]:hover {
    background: #1877f2;
    border-color: transparent;
}

.social-link[aria-label="WhatsApp"]:hover {
    background: #25d366;
    border-color: transparent;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ═══════════════════════════════
   RESPONSIVE — Tablet
═══════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-text {
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .about-values {
        align-items: center;
    }

    .value-item {
        max-width: 400px;
        text-align: left;
    }

    .about-visual {
        height: 300px;
        max-width: 500px;
        margin: 0 auto;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-connector {
        display: none !important;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(13, 31, 51, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 2rem 2rem;
        gap: 0.5rem;
        transform: translateY(-120%);
        transition: transform var(--transition);
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        height: 48px;
        max-width: calc(100vw - 80px);
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-plus {
        font-size: 1.4rem;
    }

    .hero-stat-label {
        font-size: 0.68rem;
    }

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

    .about-visual {
        height: 260px;
    }

    .about-float-card {
        padding: 1rem 1.25rem;
    }

    .float-card-icon {
        width: 44px;
        height: 44px;
    }

    .float-stat {
        font-size: 1.3rem;
    }
}

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

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

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

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

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-float-card {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }

    .card-1 { left: 5px; }
    .card-2 { right: 0; }
    .card-3 { left: 10px; }
}
