/* ============================================
   YOEL CHRISTIAN — PREMIUM PERSONAL BRAND
   Style: Luxury Editorial · Clean Boldness
   ============================================ */

:root {
  --primary: #0071c2;
  --primary-dark: #005a9e;
  --primary-light: #e8f4fc;
  --primary-mid: #cce4f5;
  --accent: #00a8e8;
  --dark: #0a1628;
  --dark-2: #1a2840;
  --text: #2d3748;
  --text-muted: #6b7a99;
  --text-light: #94a3b8;
  --white: #ffffff;
  --surface: #f8faff;
  --surface-2: #f0f6ff;
  --border: #e2ecf8;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
  --success: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 12px rgba(0, 113, 194, 0.08);
  --shadow: 0 8px 32px rgba(0, 113, 194, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 113, 194, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

em {
  font-style: italic;
  color: var(--primary);
  font-family: var(--font-display);
}

.section-pad { padding: 100px 0; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1000;
}

#mainNav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 20px rgba(0,113,194,0.08);
  padding: 10px 0;
}

.brand-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  margin-right: 10px;
  flex-shrink: 0;
}

.brand-initials.sm { width: 32px; height: 32px; font-size: 12px; }

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  letter-spacing: -0.3px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-link {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text) !important;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.1px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}

.btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,113,194,0.3);
}

.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { color: var(--primary); font-size: 20px; }

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,113,194,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,168,232,0.1) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(0,113,194,0.08) 0%, transparent 40%);
  pointer-events: none;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230071c2' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-text-col { padding-top: 80px; padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,113,194,0.4);
}

.btn-ghost-custom {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-ghost-custom:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

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

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.quick-link.whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.quick-link.whatsapp:hover {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.quick-link.email {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

.quick-link.email:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* Hero Photo */
.hero-photo-col {
  display: flex;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-photo-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.photo-ring {
  position: absolute;
  border-radius: 50%;
  animation: rotate-ring 20s linear infinite;
}

.ring-1 {
  inset: -20px;
  border: 1.5px dashed rgba(0,113,194,0.3);
}

.ring-2 {
  inset: -45px;
  border: 1px dashed rgba(0,168,232,0.15);
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.photo-card {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(0,113,194,0.4);
  box-shadow:
    0 0 0 8px rgba(0,113,194,0.1),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(0,113,194,0.2);
  position: relative;
  z-index: 2;
}

.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  white-space: nowrap;
  z-index: 3;
  animation: float-badge 3s ease-in-out infinite;
}

.badge-company {
  bottom: 40px;
  left: -30px;
  color: var(--primary);
  animation-delay: 0s;
}

.badge-location {
  top: 40px;
  right: -30px;
  animation-delay: 1.5s;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

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

.section-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   VALUE SECTION
   ============================================ */
#value { background: var(--surface); }

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-mid);
}

.value-card-featured {
  background: var(--primary);
  border-color: var(--primary);
}

.value-card-featured h3,
.value-card-featured p { color: var(--white) !important; }

.value-card-featured .value-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.value-icon {
  width: 58px; height: 58px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.value-card:not(.value-card-featured):hover .value-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(-5deg) scale(1.05);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

.value-card-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  border-radius: 0 0 var(--radius) var(--radius);
}

.value-card:not(.value-card-featured):hover .value-card-accent { transform: scaleX(1); }

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.impact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(0,113,194,0.2) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(0,168,232,0.1) 0%, transparent 40%);
  pointer-events: none;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(0,113,194,0.12);
  border-color: rgba(0,113,194,0.3);
  transform: translateY(-4px);
}

.stat-card:hover::before { transform: scaleX(1); }

.stat-card-featured {
  background: rgba(0,113,194,0.15);
  border-color: rgba(0,113,194,0.4);
}

.stat-card-featured::before { transform: scaleX(1); }

.stat-currency {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-top: 8px;
  display: block;
}

.stat-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  display: block;
}

.proof-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: var(--transition);
}

.proof-card:hover {
  background: rgba(0,113,194,0.1);
  border-color: rgba(0,113,194,0.25);
}

.proof-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: rgba(0,113,194,0.2);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.proof-content h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.proof-content p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SKILLS
   ============================================ */
#skills { background: var(--white); }

.skills-list { display: flex; flex-direction: column; gap: 28px; }

.skill-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  transition: var(--transition);
}

.skill-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-mid);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.skill-icon-wrap {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.skill-item:hover .skill-icon-wrap {
  background: var(--primary);
  color: var(--white);
}

.skill-info { flex: 1; }

.skill-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 3px;
}

.skill-info p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.skill-pct {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  min-width: 42px;
  text-align: right;
}

.skill-bar-wrap {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.skill-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Languages */
.lang-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lang-badges { display: flex; flex-wrap: wrap; gap: 12px; }

.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.lang-badge:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.lang-flag { font-size: 18px; }

.lang-level {
  font-size: 11.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
}

.lang-level.fluent { background: var(--primary-light); color: var(--primary); }
.lang-level.professional { background: #fef3c7; color: #d97706; }

/* ============================================
   EXPERIENCE TIMELINE
   ============================================ */
.experience-section { background: var(--surface); }

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 48px;
  position: relative;
}

.timeline-item.timeline-right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  width: 44px; height: 44px;
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  z-index: 2;
  transition: var(--transition);
}

.timeline-marker.current {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(0,113,194,0.15);
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  max-width: 380px;
  width: 100%;
  transition: var(--transition);
}

.timeline-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-mid);
  transform: translateY(-3px);
}

.timeline-card.current-role {
  border-color: var(--primary);
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
}

.timeline-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-date {
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.timeline-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

.current-badge {
  background: var(--primary);
  color: var(--white);
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,113,194,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0,113,194,0); }
}

.timeline-company {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.timeline-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 14px;
}

.timeline-duties {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-duties li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.timeline-duties li i {
  color: var(--primary);
  font-size: 11px;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0a1f3c 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,113,194,0.2) 0%, transparent 70%);
  top: -150px; left: -100px;
}

.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,168,232,0.15) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}

.cta-icon-wrap {
  width: 72px; height: 72px;
  background: rgba(0,113,194,0.2);
  border: 1px solid rgba(0,113,194,0.3);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 28px;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-whatsapp-main {
  background: var(--whatsapp);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 17px 40px;
  font-size: 17px;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.2px;
}

.btn-whatsapp-main:hover {
  background: #1ab351;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}

.btn-email-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-email-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 20px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { background: var(--white); }

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.contact-item-full { grid-column: 1 / -1; }

.contact-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--primary);
  color: var(--white);
}

.contact-icon.whatsapp-icon {
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp);
}

.contact-item:hover .contact-icon.whatsapp-icon {
  background: var(--whatsapp);
  color: var(--white);
}

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

.contact-label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.contact-link {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 13.5px;
  color: rgba(255,255,255,0.35);
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}

.social-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 9999;
  text-decoration: none;
  transition: var(--transition);
  animation: float-wa 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(37,211,102,0.5);
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .float-tooltip { opacity: 1; }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .hero-text-col, .hero-photo-col { padding-top: 30px; padding-bottom: 30px; }
  .hero-photo-wrap { width: 280px; height: 280px; }
  .photo-card { width: 280px; height: 280px; }
  .badge-company { left: 0; }
  .badge-location { right: 0; }

  .timeline::before { left: 22px; }
  .timeline-item, .timeline-item.timeline-right {
    padding: 0 0 0 70px;
    justify-content: flex-start;
  }
  .timeline-marker { left: 0; transform: none; }
  .timeline-card { max-width: 100%; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-item-full { grid-column: auto; }

  .footer-inner { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 575px) {
  .section-pad { padding: 70px 0; }
  .hero-actions { flex-direction: column; }
  .btn-primary-custom, .btn-ghost-custom { width: 100%; justify-content: center; }
  .hero-photo-wrap { width: 220px; height: 220px; }
  .photo-card { width: 220px; height: 220px; }
  .stat-card { padding: 22px 16px; }
  .stat-num { font-size: 40px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .btn-whatsapp-main, .btn-email-ghost { width: 100%; justify-content: center; }
}
