/* ===== Reset & Variables ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #0b2545;
    --primary-light: #1a3a6b;
    --accent: #c9a14a;
    --accent-light: #b8860b;
    --accent-glow: rgba(201, 161, 74, 0.25);
    --bg: #faf8f5;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.9);
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(11, 37, 69, 0.08);
    --text: #1a1a2e;
    --text-muted: #4a5568;
    --text-dark: #718096;
    --radius: 20px;
    --radius-sm: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    background-image: linear-gradient(135deg, #faf8f5 0%, #f0ebe3 50%, #f5f0ea 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== Background ===== */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 20s ease-in-out infinite; }
.orb-1 { width: 600px; height: 600px; top: -15%; left: -10%; background: radial-gradient(circle, rgba(201,161,74,0.15), transparent 70%); }
.orb-2 { width: 500px; height: 500px; top: 50%; right: -10%; background: radial-gradient(circle, rgba(11,37,69,0.08), transparent 70%); animation-delay: -5s; }
.orb-3 { width: 400px; height: 400px; bottom: -10%; left: 30%; background: radial-gradient(circle, rgba(201,161,74,0.1), transparent 70%); animation-delay: -10s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 30px) scale(1.02); }
}

.bg-grid-3d {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: linear-gradient(rgba(11,37,69,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(11,37,69,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: perspective(500px) rotateX(60deg); transform-origin: top center;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent 40%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent 40%);
}

/* ===== Navigation ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(11,37,69,0.06); padding: 10px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.05); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; transition: var(--transition); }
.nav-logo img { height: 40px; width: auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(11,37,69,0.1); }
.nav-brand { color: var(--primary); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; }

.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-link { color: var(--text-muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; padding: 8px 16px; border-radius: 999px; transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--glass); }
.nav-link.active::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }

.nav-cta { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--primary); padding: 10px 22px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 0.82rem; transition: var(--transition); box-shadow: 0 4px 20px var(--accent-glow); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition); position: relative; overflow: hidden; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--primary); box-shadow: 0 4px 20px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px var(--accent-glow); }
.btn-ghost { background: var(--glass); color: var(--text); border: 1px solid var(--glass-border); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--bg-card-hover); border-color: var(--accent); color: var(--accent-light); transform: translateY(-2px); }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(37,211,102,0.4); }
.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

/* ===== Hero Section ===== */
.hero { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 120px 0 60px; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.badge { display: inline-flex; align-items: center; gap: 8px; background: var(--glass); border: 1px solid var(--glass-border); padding: 8px 16px; border-radius: 999px; font-size: 0.78rem; font-weight: 600; color: var(--accent-light); margin-bottom: 20px; backdrop-filter: blur(10px); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.gradient-text { background: linear-gradient(135deg, var(--accent), #b8860b, #8b6914); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-desc { font-size: 1.02rem; color: var(--text-muted); max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats { display: flex; gap: 32px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { font-size: 0.72rem; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* Hero Illustration */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-illustration { position: relative; width: 100%; max-width: 480px; }
.hero-illust-img { width: 100%; height: auto; animation: floatImg 6s ease-in-out infinite; }
@keyframes floatImg { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

.hero-float-card { position: absolute; background: #ffffff; backdrop-filter: blur(10px); border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(11,37,69,0.1), 0 4px 10px rgba(0,0,0,0.05); border: 1px solid rgba(11,37,69,0.06); animation: floatCard 4s ease-in-out infinite; }
.float-card-1 { top: 10%; right: -10%; animation-delay: 0s; }
.float-card-2 { bottom: 15%; left: -5%; animation-delay: -2s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-card-icon { font-size: 1.4rem; }
.float-card-text strong { display: block; font-size: 0.8rem; color: var(--primary); }
.float-card-text span { font-size: 0.7rem; color: var(--text-dark); }

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-dark); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid var(--text-dark); border-radius: 12px; position: relative; }
.scroll-dot { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 8px; background: var(--accent); border-radius: 3px; animation: scrollDown 1.5s ease-in-out infinite; }
@keyframes scrollDown { 0%{opacity:1;top:6px} 100%{opacity:0;top:22px} }

/* ===== Section Commons ===== */
section { position: relative; z-index: 1; padding: 80px 0; }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; background: rgba(201,161,74,0.08); border: 1px solid rgba(201,161,74,0.2); padding: 6px 16px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.01em; }
.section-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 0.95rem; }
.section-desc-left { color: var(--text-muted); max-width: 560px; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.7; }

/* ===== Page Header ===== */
.page-header { padding: 140px 0 40px; text-align: center; }
.page-header-content { max-width: 600px; margin: 0 auto; }
.page-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: 16px; }
.page-subtitle { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* ===== Features Preview (Home) ===== */
.features-preview { padding: 60px 0; }
.features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-box { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); position: relative; overflow: hidden; }
.feature-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: var(--transition); }
.feature-box:hover { background: var(--bg-card-hover); border-color: rgba(201,161,74,0.2); box-shadow: 0 20px 60px rgba(11,37,69,0.08); }
.feature-box:hover::before { opacity: 1; }
.feature-icon-wrap { margin-bottom: 20px; }
.feature-illust { width: 120px; height: 120px; object-fit: contain; }
.feature-box h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-box p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.feature-link { color: var(--accent-light); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: var(--transition); }
.feature-link:hover { color: var(--accent); }

/* ===== Trust Section (Home) ===== */
.trust-section { padding: 80px 0; }
.trust-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.trust-text { max-width: 520px; }
.trust-visual { display: flex; justify-content: center; }
.trust-illust { width: 100%; max-width: 380px; height: auto; animation: floatImg 6s ease-in-out infinite; }
.trust-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: var(--radius-sm); background: var(--glass); border: 1px solid var(--glass-border); }
.trust-check { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, rgba(201,161,74,0.2), rgba(201,161,74,0.1)); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 0.7rem; font-weight: 700; flex-shrink: 0; }
.trust-item span { font-size: 0.82rem; font-weight: 600; }

/* ===== CTA Section ===== */
.cta-section { padding: 60px 0 80px; }
.cta-box { background: linear-gradient(145deg, rgba(201,161,74,0.06), rgba(255,255,255,0.8)); border: 1px solid rgba(201,161,74,0.15); border-radius: var(--radius); padding: 50px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 20px 60px rgba(11,37,69,0.05); }
.cta-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; margin-bottom: 12px; }
.cta-content p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-illust { width: 200px; height: auto; flex-shrink: 0; animation: floatImg 5s ease-in-out infinite; }

/* ===== Services Page ===== */
.services-section { padding: 40px 0 80px; }
.services-main-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card-lg { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 28px; display: flex; gap: 24px; align-items: flex-start; transition: var(--transition); position: relative; overflow: hidden; }
.service-card-lg::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--accent), transparent); opacity: 0; transition: var(--transition); }
.service-card-lg:hover { background: var(--bg-card-hover); border-color: rgba(201,161,74,0.2); box-shadow: 0 20px 60px rgba(11,37,69,0.08); }
.service-card-lg:hover::before { opacity: 1; }
.service-card-visual { flex-shrink: 0; }
.service-illust { width: 100px; height: 100px; object-fit: contain; }
.service-card-body { flex: 1; }
.service-number { font-size: 0.7rem; font-weight: 800; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 8px; opacity: 0.7; }
.service-card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.service-features { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.service-features li { background: var(--glass); border: 1px solid var(--glass-border); padding: 4px 12px; border-radius: 999px; font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

/* ===== About Page ===== */
.about-main { padding: 40px 0 80px; }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-hero-visual { position: relative; }
.about-hero-img { width: 100%; max-width: 420px; }
.about-badge-float { position: absolute; bottom: 20px; right: 20px; background: linear-gradient(135deg, var(--accent), var(--accent-light)); border-radius: 14px; padding: 16px 20px; text-align: center; box-shadow: 0 10px 30px var(--accent-glow); }
.about-badge-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.about-badge-text { font-size: 0.7rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.05em; }
.about-hero-content .section-title { text-align: left; }
.about-hero-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; }

/* Values */
.values-section { padding: 60px 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: var(--transition); }
.value-card:hover { background: var(--bg-card-hover); border-color: rgba(201,161,74,0.2); box-shadow: 0 15px 40px rgba(11,37,69,0.08); transform: translateY(-4px); }
.value-visual { margin-bottom: 16px; }
.value-illust { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; box-shadow: 0 4px 12px rgba(11,37,69,0.08); }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.6; }

/* Team */
.team-section { padding: 60px 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: var(--transition); }
.team-card:hover { background: var(--bg-card-hover); border-color: rgba(201,161,74,0.2); box-shadow: 0 20px 50px rgba(11,37,69,0.08); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 3px solid rgba(201,161,74,0.3); box-shadow: 0 8px 25px rgba(11,37,69,0.12); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { display: block; color: var(--accent-light); font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: 0.83rem; line-height: 1.6; }

/* Stats */
.stats-section { padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: var(--transition); }
.stats-card:hover { background: var(--bg-card-hover); border-color: rgba(201,161,74,0.2); box-shadow: 0 10px 30px rgba(11,37,69,0.06); }
.stats-number { display: block; font-size: 2.2rem; font-weight: 800; background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 4px; }
.stats-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== Contact Page ===== */
.contact-section { padding: 40px 0 80px; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }

.contact-card-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); transition: var(--transition); }
.contact-card-item:hover { background: var(--bg-card-hover); border-color: rgba(201,161,74,0.2); box-shadow: 0 10px 30px rgba(11,37,69,0.06); }
.contact-card-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(201,161,74,0.1), rgba(201,161,74,0.05)); border: 1px solid rgba(201,161,74,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon svg { width: 20px; height: 20px; color: var(--accent-light); }
.contact-card-icon.wa-icon-bg { background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.05)); border-color: rgba(37,211,102,0.15); }
.contact-card-icon.wa-icon-bg svg { color: #25d366; width: 22px; height: 22px; }
.contact-card-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-card-item a, .contact-card-item address, .contact-card-item span { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; font-style: normal; line-height: 1.5; display: block; transition: color 0.2s; }
.contact-card-item a:hover { color: var(--accent-light); }

.contact-illust-wrap { margin-top: 20px; text-align: center; }
.contact-side-illust { width: 200px; height: auto; animation: floatImg 6s ease-in-out infinite; }

/* Contact Form */
.contact-form-card { background: rgba(255,255,255,0.8); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 36px; box-shadow: 0 10px 40px rgba(11,37,69,0.05); }
.form-header { margin-bottom: 24px; }
.form-header h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; margin-bottom: 8px; }
.form-header p { color: var(--text-muted); font-size: 0.88rem; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.8); border: 1px solid rgba(11,37,69,0.1);
    color: var(--text); font-family: inherit; font-size: 0.9rem;
    transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,161,74,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #a0aec0; }
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-success { text-align: center; padding: 40px 20px; }
.success-illust { width: 150px; margin-bottom: 20px; }
.form-success h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; margin-bottom: 8px; color: var(--accent-light); }
.form-success p { color: var(--text-muted); }

/* Map */
.map-section { padding: 40px 0 80px; }
.map-wrapper { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); box-shadow: 0 20px 60px rgba(11,37,69,0.08); }

/* ===== Footer ===== */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--glass-border); padding: 60px 0 0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand { max-width: 280px; }
.footer-logo { height: 40px; width: auto; border-radius: 8px; margin-bottom: 14px; display: block; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.footer-links h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; }
.footer-links a, .footer-links span { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.82rem; padding: 3px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding: 20px 24px; border-top: 1px solid var(--glass-border); text-align: center; }
.footer-bottom p { color: var(--text-dark); font-size: 0.78rem; }

/* ===== Scroll Reveal ===== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; transition-delay: var(--delay, 0s); }
.reveal-up.revealed { opacity: 1; transform: translateY(0); }
.tilt-element { transition: transform 0.5s ease; transform-style: preserve-3d; }

/* ===== WhatsApp Widget ===== */
.wa-widget { position: fixed; right: 24px; bottom: 24px; z-index: 9999; font-family: 'Inter', system-ui, sans-serif; }
.wa-fab { position: relative; width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer; background: linear-gradient(145deg, #25d366, #128c7e); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 30px rgba(37,211,102,0.4); transition: var(--transition); z-index: 2; }
.wa-fab:hover { transform: scale(1.08) translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.wa-fab-ico { width: 26px; height: 26px; }
.wa-pulse { position: absolute; inset: 0; border-radius: 50%; background: rgba(37,211,102,0.4); animation: waPulse 2s ease-out infinite; z-index: -1; }
@keyframes waPulse { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(1.8);opacity:0} }
.wa-badge { position: absolute; top: -3px; right: -3px; min-width: 20px; height: 20px; border-radius: 999px; background: #ef4444; color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 10px rgba(239,68,68,0.4); border: 2px solid #fff; }
.wa-popup { position: absolute; right: 0; bottom: 76px; width: 310px; background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(11,37,69,0.15); overflow: hidden; transform-origin: bottom right; transform: scale(0.6) translateY(20px); opacity: 0; pointer-events: none; transition: transform 0.35s cubic-bezier(0.2,0.9,0.3,1.4), opacity 0.3s ease; }
.wa-widget.open .wa-popup { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }
.wa-widget.open .wa-badge { display: none; }
.wa-popup-header { display: flex; align-items: center; gap: 10px; padding: 12px; background: linear-gradient(135deg, #075e54, #128c7e); color: #fff; }
.wa-avatar { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: #fff; flex-shrink: 0; }
.wa-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wa-info { flex: 1; line-height: 1.3; }
.wa-info strong { display: block; font-size: 0.85rem; }
.wa-info span { font-size: 0.7rem; opacity: 0.85; display: inline-flex; align-items: center; gap: 4px; }
.wa-dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; }
.wa-close { background: transparent; border: none; color: #fff; font-size: 20px; cursor: pointer; padding: 4px 8px; border-radius: 6px; }
.wa-close:hover { background: rgba(255,255,255,0.15); }
.wa-popup-body { padding: 18px 14px; background: #efe7dd; }
.wa-bubble { background: #fff; color: #303030; padding: 10px 12px; border-radius: 4px 12px 12px 12px; font-size: 0.85rem; line-height: 1.5; max-width: 90%; box-shadow: 0 2px 5px rgba(0,0,0,0.08); }
.wa-start { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: linear-gradient(145deg, #25d366, #128c7e); color: #fff; text-decoration: none; font-weight: 700; font-size: 0.9rem; transition: filter 0.2s; }
.wa-start:hover { filter: brightness(1.08); }

/* ===== Responsive - Tablet ===== */
@media (max-width: 1024px) {
    .features-row { grid-template-columns: repeat(2, 1fr); }
    .services-main-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
    .trust-content { grid-template-columns: 1fr; gap: 40px; }
    .trust-visual { order: -1; }
}

/* ===== Responsive - Mobile ===== */
@media (max-width: 768px) {
    .nav-links { position: fixed; top: 0; right: -100%; width: 70%; max-width: 300px; height: 100vh; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 80px 30px 30px; gap: 4px; transition: right 0.4s ease; border-left: 1px solid rgba(11,37,69,0.06); box-shadow: -10px 0 40px rgba(0,0,0,0.08); }
    .nav-links.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .nav-brand { display: none; }

    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-illustration { max-width: 320px; margin: 0 auto; }
    .hero-float-card { display: none; }

    .features-row { grid-template-columns: 1fr; }
    .about-hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-hero-content .section-title { text-align: center; }
    .about-hero-visual { display: flex; justify-content: center; }
    .trust-features { grid-template-columns: 1fr; }

    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    .contact-main-grid { grid-template-columns: 1fr; }
    .contact-side-illust { width: 150px; }

    .cta-box { flex-direction: column; text-align: center; padding: 36px 24px; }
    .cta-illust { width: 150px; }
    .cta-btns { justify-content: center; }

    .footer-container { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-brand { max-width: 100%; margin: 0 auto; }
    .footer-logo { margin: 0 auto 14px; }

    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
    .stat-num { font-size: 1.4rem; }
    .btn { padding: 12px 20px; font-size: 0.85rem; }
    .btn-lg { padding: 14px 24px; }
    .wa-widget { right: 16px; bottom: 16px; }
    .wa-popup { width: calc(100vw - 32px); }
    .wa-fab { width: 52px; height: 52px; }
    .service-card-lg { flex-direction: column; }
    .contact-form-card { padding: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal-up { opacity: 1; transform: none; }
}

/* ============================================ */
/* PROFESSIONAL CONTACT FORM + GDPR ELEMENTS    */
/* ============================================ */

/* Trust badges on contact header */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(11, 37, 69, 0.1);
}
.tb-ico { font-size: 1.05rem; line-height: 1; }

/* Two-column form rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-row + .form-group,
.form-row + .form-row { margin-top: 16px; }

.req { color: #c9a14a; font-weight: 700; margin-left: 2px; }

/* GDPR consent box */
.gdpr-box {
    margin-top: 22px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.04), rgba(201, 161, 74, 0.06));
    border: 1px solid rgba(11, 37, 69, 0.12);
    border-radius: 14px;
}
.gdpr-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.gdpr-header svg { color: #c9a14a; flex-shrink: 0; }
.gdpr-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
    user-select: none;
}
.checkbox-row input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.check-box {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(11, 37, 69, 0.3);
    border-radius: 5px;
    background: #fff;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s ease;
}
.checkbox-row input[type="checkbox"]:checked + .check-box {
    background: #0b2545;
    border-color: #0b2545;
}
.checkbox-row input[type="checkbox"]:checked + .check-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #c9a14a;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}
.checkbox-row input[type="checkbox"]:focus + .check-box {
    box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.25);
}
.check-label {
    font-size: 0.82rem;
    color: var(--text);
    line-height: 1.55;
}
.check-label a {
    color: #0b2545;
    text-decoration: underline;
    font-weight: 600;
}
.check-label a:hover { color: #c9a14a; }

.form-foot-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 14px;
}

.form-success a {
    color: #c9a14a;
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================ */
/* COOKIE CONSENT BANNER                        */
/* ============================================ */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9998;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(11, 37, 69, 0.12);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(11, 37, 69, 0.18);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    max-width: 1100px;
    margin: 0 auto;
}
.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.cookie-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.cookie-text { flex: 1; min-width: 280px; }
.cookie-text strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 4px;
}
.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}
.cookie-text a {
    color: #0b2545;
    font-weight: 600;
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.btn-sm {
    padding: 10px 18px;
    font-size: 0.82rem;
}

/* ============================================ */
/* PRIVACY / LEGAL PAGE                         */
/* ============================================ */
.legal-section { padding: 40px 0 100px; }
.legal-container { max-width: 900px; }
.legal-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 36px 40px;
    margin-bottom: 24px;
    box-shadow: 0 8px 22px rgba(11, 37, 69, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(11, 37, 69, 0.1);
}
.legal-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--text);
    font-size: 1.55rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201, 161, 74, 0.3);
}
.legal-card p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.96rem;
}
.legal-card a {
    color: #0b2545;
    font-weight: 600;
    text-decoration: underline;
}
.legal-card a:hover { color: #c9a14a; }
.legal-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}
.legal-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.94rem;
    border-bottom: 1px solid rgba(11, 37, 69, 0.06);
}
.legal-list li:last-child { border-bottom: none; }
.legal-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a14a, #d4b860);
    box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.15);
}
.legal-list li strong { color: var(--text); }
.legal-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.06), rgba(201, 161, 74, 0.08));
}
.legal-contact {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; gap: 14px; }
    .form-row + .form-row { margin-top: 14px; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
    .cookie-content { flex-direction: column; align-items: stretch; gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; }
    .trust-badges { gap: 8px; }
    .trust-badge { padding: 6px 12px; font-size: 0.78rem; }
    .legal-card { padding: 24px 22px; }
    .legal-card h2 { font-size: 1.3rem; }
    .legal-contact .btn { width: 100%; }
}

