/* ============================================
   JK Tax Services - Sitio Web
   Brand: Navy #0D2B4E / Orange #E87722
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy: #0D2B4E;
  --navy-deep: #08203D;
  --navy-light: #1a3d63;
  --orange: #E87722;
  --orange-dark: #d66a18;
  --orange-soft: #f4a460;
  --orange-light: #fef3e8;
  --green: #16a34a;
  --green-light: #dcfce7;
  --white: #ffffff;
  --cream: #fdfaf6;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(13, 43, 78, 0.06);
  --shadow-md: 0 8px 24px rgba(13, 43, 78, 0.1);
  --shadow-lg: 0 20px 50px rgba(13, 43, 78, 0.15);

  --radius: 8px;
  --radius-lg: 16px;
  --max-width: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Layout */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } .container { padding: 0 20px; } }

/* Top Bar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; gap: 24px; }
.topbar a:hover { color: var(--orange); transition: color 0.2s; }
.topbar .right { display: flex; gap: 24px; }
@media (max-width: 768px) {
  .topbar .left { display: none; }
  .topbar .right { width: 100%; justify-content: space-around; gap: 12px; font-size: 12px; }
}

/* Header */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 32px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 48px; height: 48px; }
.brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1;
}
.brand-text .jk { color: var(--orange); }
.brand-text .ent { color: var(--navy); }
.brand-sub {
  font-size: 10px;
  color: var(--gray-500);
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; color: var(--navy); }
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    gap: 18px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #20bd5a; transform: translateY(-2px); }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--orange); }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 640px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy .section-title { color: var(--white); }

/* Hero - Tax-themed */
.hero {
  position: relative;
  background: linear-gradient(135deg, #08203D 0%, #0D2B4E 60%, #1a3d63 100%);
  color: var(--white);
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(232, 119, 34, 0.04) 30px, rgba(232, 119, 34, 0.04) 31px);
}
.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--orange); }
.hero p.lead {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}
.trust-item svg { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; }

/* Hero Card / Calculator preview */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}
.hero-card-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.hero-card p { font-size: 14.5px; color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.deadline-list { list-style: none; }
.deadline-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.deadline-list li:last-child { border-bottom: none; }
.deadline-list .label { color: rgba(255,255,255,0.85); }
.deadline-list .date { color: var(--orange); font-weight: 600; font-family: var(--font-display); }

/* Page Hero (interior) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(60deg, transparent 48%, rgba(232,119,34,0.06) 49%, rgba(232,119,34,0.06) 51%, transparent 52%);
  background-size: 30px 30px;
}
.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--orange);
  transition: all 0.3s;
}
.service-card:hover .icon { background: var(--orange); color: var(--white); }
.service-card .icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* Pricing Table */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
.pricing-card.featured::before {
  content: 'MÁS POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 100px;
}
.pricing-card .plan-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-card .plan-price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-card .plan-price .from { font-size: 14px; color: var(--gray-500); display: block; margin-bottom: 4px; }
.pricing-card .plan-price .amount { font-size: 48px; line-height: 1; }
.pricing-card .plan-price .currency { font-size: 24px; vertical-align: top; margin-right: 4px; }
.pricing-card .plan-desc { font-size: 14.5px; color: var(--gray-600); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-200); }
.pricing-card ul { list-style: none; margin-bottom: 32px; }
.pricing-card ul li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--gray-700);
}
.pricing-card ul li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; } }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.stat-item .stat-label {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--gray-100);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; right: 28px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
}
.testimonial .stars { color: var(--orange); margin-bottom: 16px; font-size: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 15px; color: var(--gray-700); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.testimonial-author .info h5 {
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--navy);
  font-weight: 600;
}
.testimonial-author .info span { font-size: 12.5px; color: var(--gray-500); }

/* CTA Strip */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(40%, -40%);
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.15;
  max-width: 640px;
}
.cta-strip .btn-secondary { background: var(--white); color: var(--navy); }
.cta-strip .btn-secondary:hover { background: var(--navy); color: var(--white); }

/* Form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--white);
  color: var(--gray-900);
  transition: all 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============== CALCULATOR ============== */
.calculator {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.calculator-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 32px;
  position: relative;
}
.calculator-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
}
.calculator-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.calculator-header p { font-size: 14.5px; color: rgba(255,255,255,0.75); }

.calculator-body { padding: 36px; }
@media (max-width: 600px) { .calculator-body { padding: 24px; } }

.calc-tabs { display: flex; gap: 8px; margin-bottom: 32px; border-bottom: 2px solid var(--gray-100); }
.calc-tab {
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.calc-tab.active { color: var(--orange); }
.calc-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.calc-tab:hover { color: var(--navy); }

.calc-section { display: none; }
.calc-section.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.calc-result {
  margin-top: 32px;
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--orange);
}
.calc-result-label {
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-600);
  font-weight: 700;
  margin-bottom: 8px;
}
.calc-result-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.calc-result-amount .currency { font-size: 26px; vertical-align: top; margin-right: 6px; opacity: 0.7; }
.calc-result-note { font-size: 13.5px; color: var(--gray-600); }
.calc-result-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .process-grid { grid-template-columns: 1fr !important; } }

.process-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* FAQ */
.faq-wrap { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--orange);
  margin-bottom: 16px;
}
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.blog-card .img-area {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card .img-area.alt { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.blog-card .img-area.cream { background: linear-gradient(135deg, var(--orange-light) 0%, var(--cream) 100%); }
.blog-card .img-area svg { width: 64px; height: 64px; color: rgba(255,255,255,0.9); }
.blog-card .img-area.cream svg { color: var(--orange); }

.blog-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta {
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.blog-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card .read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s, color 0.2s;
}
.blog-card .read-more:hover { gap: 14px; color: var(--orange); }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
  margin-bottom: 16px;
}
.contact-info-item .icon {
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item .icon svg { width: 22px; height: 22px; }
.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }
.contact-info-item a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap > p { font-size: 14px; color: var(--gray-600); margin-bottom: 28px; }

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand img { width: 56px; height: 56px; }
.footer-brand .text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.footer-brand .text .jk { color: var(--orange); }
.footer p.about { font-size: 14px; line-height: 1.7; max-width: 360px; margin-bottom: 24px; }
.footer h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { font-size: 14px; line-height: 1.8; }
.footer-contact .item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact .item svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; margin-top: 4px; }
.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.social-row a:hover { background: var(--orange); transform: translateY(-2px); }
.social-row svg { width: 16px; height: 16px; color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.7s ease both; }
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.2s; }
