/* =====================================================
   LaborLink Workforce Solutions Ltd — Stylesheet
   Colors: Navy #0d1b3e | Gold #c9a84c | Light Gold #e8c96a
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b3e;
  --navy-mid:   #12254f;
  --navy-light: #1a3366;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --gold-dim:   #a8883c;
  --white:      #ffffff;
  --off-white:  #f0e9d8;
  --text-muted: #8fa0c0;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     14px;
  --shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Ambient Orbs */
.ambient-orbs {
  position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: -1;
}
.orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
  animation: orb-float 25s infinite ease-in-out alternate;
}
.orb-1 {
  width: 50vw; height: 50vw; background: rgba(30, 60, 130, 0.45);
  top: -10%; left: -10%;
}
.orb-2 {
  width: 45vw; height: 45vw; background: rgba(201, 168, 76, 0.15);
  bottom: -10%; right: -5%; animation-delay: -7s;
}
.orb-3 {
  width: 40vw; height: 40vw; background: rgba(20, 100, 150, 0.3);
  top: 30%; left: 40%; animation-delay: -14s;
}
@keyframes orb-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8%, 5%) scale(1.15); }
}

body.jamaican-theme {
  background-color: #060c1c; /* Deep, rich premium black/navy base */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' width='300' height='300'%3E%3Cpath d='M180,180 C140,100 80,40 20,20 C60,40 80,80 80,120 C70,90 40,70 20,60 C40,90 50,130 30,160 C60,140 90,120 110,140 C110,110 130,80 150,60 C140,90 140,130 180,180 Z' fill='%23c9a84c' fill-opacity='0.02'/%3E%3Cpath d='M20,180 C60,100 120,40 180,20 C140,40 120,80 120,120 C130,90 160,70 180,60 C160,90 150,130 170,160 C140,140 110,120 90,140 C90,110 70,80 50,60 C60,90 60,130 20,180 Z' fill='%23c9a84c' fill-opacity='0.015'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.gold { color: var(--gold); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  text-decoration: none;
  display: flex; flex-direction: column; line-height: 1;
}
.logo-labor { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; color: var(--gold); letter-spacing: 2px; }
.logo-link  { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); letter-spacing: 2px; display: inline; }
.nav-logo .logo-labor, .nav-logo .logo-link { display: inline; }
.logo-sub { font-size: 0.55rem; letter-spacing: 2.5px; color: var(--text-muted); text-transform: uppercase; display: block; margin-top: 2px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a { text-decoration: none; color: var(--off-white); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; transition: color var(--transition); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim)) !important;
  color: var(--navy) !important; padding: 0.55rem 1.4rem; border-radius: 50px;
  font-weight: 700 !important; letter-spacing: 0.5px;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4) !important; }
.nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 2rem 4rem;
  position: relative; overflow: hidden;
  background: transparent;

}
.hero-bg-particles { position: absolute; inset: 0; pointer-events: none; }

.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.82rem; letter-spacing: 1px; font-weight: 500; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title { margin-bottom: 0.5rem; animation: fadeUp 0.7s 0.1s ease both; }
.hero-labor { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem,8vw,6rem); font-weight: 900; color: var(--gold); letter-spacing: 3px; line-height: 1; }
.hero-link  { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem,8vw,6rem); font-weight: 700; color: var(--white); letter-spacing: 3px; line-height: 1; }
.hero-sub-brand { font-size: clamp(0.75rem,2vw,1rem); letter-spacing: 4px; color: var(--text-muted); display: block; margin-top: 0.5rem; }
.hero-tagline { font-size: clamp(1rem,2.5vw,1.4rem); color: var(--gold-light); font-weight: 600; letter-spacing: 1px; margin: 1rem 0 0.75rem; animation: fadeUp 0.7s 0.2s ease both; }
.hero-desc { color: var(--text-muted); font-size: 1rem; line-height: 1.7; max-width: 520px; animation: fadeUp 0.7s 0.3s ease both; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; animation: fadeUp 0.7s 0.4s ease both; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 2rem; border-radius: 50px; font-size: 0.95rem;
  font-weight: 600; letter-spacing: 0.5px; text-decoration: none;
  cursor: pointer; border: none; transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: var(--gold); border: 2px solid rgba(201,168,76,0.5); }
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); transform: translateY(-3px); }
.btn-full { width: 100%; }

/* Hero globe */
.hero-globe {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: clamp(300px,45vw,580px); height: clamp(300px,45vw,580px);
  z-index: 1; pointer-events: none;
}
.globe-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,0.15);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: pulse-ring 4s ease-in-out infinite;
}
.ring-1 { width: 60%; height: 60%; animation-delay: 0s; }
.ring-2 { width: 80%; height: 80%; animation-delay: 0.7s; border-color: rgba(201,168,76,0.1); }
.ring-3 { width: 100%; height: 100%; animation-delay: 1.4s; border-color: rgba(201,168,76,0.06); }
.globe-core { position: absolute; inset: 10%; }
.globe-core svg { width: 100%; height: 100%; animation: spin-slow 40s linear infinite; }

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: linear-gradient(90deg, rgba(201,168,76,0.08), rgba(201,168,76,0.15), rgba(201,168,76,0.08));
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1.2rem 2rem;
  overflow: hidden;
}
.trust-container {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; max-width: 1200px; margin: 0 auto;
}
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-light); }
.trust-icon { font-size: 0.9rem; }
.trust-sep { color: rgba(201,168,76,0.3); font-size: 1.2rem; }

/* ---- SECTION COMMONS ---- */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3rem); font-weight: 900; line-height: 1.15; color: var(--white); }
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 600px; margin: 1rem auto 0; line-height: 1.7; }

/* ---- SERVICES ---- */
.services { padding: 7rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: linear-gradient(145deg, rgba(26,51,102,0.6), rgba(13,27,62,0.8));
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: default;
  box-shadow: inset 0 0 20px rgba(201,168,76,0.02);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(201,168,76,0.45); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(201,168,76,0.4); background: linear-gradient(145deg, rgba(26,51,102,0.9), rgba(13,27,62,0.95)); grid-column: span 1; }
.service-featured-badge { position: absolute; top: 1rem; right: 1rem; background: linear-gradient(135deg,var(--gold-light),var(--gold)); color: var(--navy); font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 50px; letter-spacing: 0.5px; }
.service-icon-wrap { width: 64px; height: 64px; margin-bottom: 1.5rem; }
.service-icon-wrap svg { width: 100%; height: 100%; filter: drop-shadow(0 0 8px rgba(201,168,76,0.3)); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.service-link { color: var(--gold); font-size: 0.9rem; font-weight: 600; text-decoration: none; letter-spacing: 0.5px; transition: color var(--transition), gap var(--transition); display: inline-flex; align-items: center; gap: 0.3rem; }
.service-link:hover { color: var(--gold-light); gap: 0.6rem; }

/* ---- ABOUT ---- */
.about {
  padding: 7rem 0;
  background: linear-gradient(180deg, rgba(13,27,62,0.4) 0%, rgba(18,37,79,0.7) 50%, rgba(13,27,62,0.4) 100%);
  backdrop-filter: blur(5px);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; min-height: 450px; }
.about-orb {
  position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: pulse-ring 5s ease-in-out infinite;
}
.about-globe-svg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.about-globe-svg svg { width: 80%; opacity: 0.7; animation: spin-slow 60s linear infinite; }
.about-card-float {
  position: absolute; z-index: 3;
  background: rgba(13,27,62,0.9); border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(10px); border-radius: 12px; padding: 1rem 1.5rem;
  text-align: center; animation: float 6s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.about-card-float .float-num { display: block; font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 900; color: var(--gold); }
.about-card-float .float-label { display: block; font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.card-1 { top: 5%; left: 0%; animation-delay: 0s; }
.card-2 { bottom: 10%; right: 0%; animation-delay: 2s; }
.card-3 { bottom: 35%; left: 5%; animation-delay: 4s; }

.about-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.75; }
.about-text .section-title { margin-bottom: 1.5rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.value-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; color: var(--off-white); }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 8px rgba(201,168,76,0.6); }

/* ---- LOCATIONS ---- */
.locations {
  padding: 7rem 0;
  background: linear-gradient(135deg, rgba(26,51,102,0.2) 0%, transparent 50%, rgba(26,51,102,0.2) 100%);
}
.locations-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; }
.location-card {
  background: linear-gradient(145deg, rgba(26,51,102,0.5), rgba(13,27,62,0.7));
  border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius); padding: 3rem 2.5rem;
  transition: transform var(--transition), border-color var(--transition);
}
.location-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.5); }
.location-flag { font-size: 3.5rem; margin-bottom: 1rem; line-height: 1; }
.location-card h3 { font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 700; color: var(--gold-light); margin-bottom: 1rem; }
.location-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.5rem; }
.location-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.location-card ul li { font-size: 0.9rem; color: var(--off-white); padding-left: 1.2rem; position: relative; }
.location-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }
.location-divider { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.divider-line { width: 1px; height: 80px; background: linear-gradient(180deg,transparent,rgba(201,168,76,0.4),transparent); }
.divider-plane { font-size: 2rem; animation: float 4s ease-in-out infinite; }

/* ---- CONTACT ---- */
.contact { padding: 7rem 0; background: rgba(18,37,79,0.6); backdrop-filter: blur(8px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-form {
  background: linear-gradient(145deg, rgba(26,51,102,0.4), rgba(13,27,62,0.6));
  border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius);
  padding: 3rem 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; color: var(--gold-light); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(13,27,62,0.8); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px; padding: 0.85rem 1rem; color: var(--white);
  font-family: 'Inter',sans-serif; font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(143,160,192,0.5); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; margin-top: 1rem; text-align: center; color: var(--gold-light); font-weight: 600; font-size: 0.95rem; padding: 0.75rem; background: rgba(201,168,76,0.1); border-radius: 8px; border: 1px solid rgba(201,168,76,0.25); }

.contact-tagline { margin-bottom: 3rem; }
.contact-tagline h3 { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 900; line-height: 1.25; color: var(--white); margin-bottom: 1rem; }
.contact-tagline p { color: var(--text-muted); line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.cd-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail-item strong { display: block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; color: var(--gold-light); text-transform: uppercase; margin-bottom: 2px; }
.contact-detail-item span { color: var(--text-muted); font-size: 0.95rem; }

/* ---- FOOTER ---- */
.footer { background: #080f22; border-top: 1px solid rgba(201,168,76,0.15); padding-top: 5rem; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-size: 2rem; font-family: 'Playfair Display',serif; font-weight: 900; letter-spacing: 2px; }
.footer-brand-sub { font-size: 0.6rem; letter-spacing: 3px; color: var(--text-muted); text-transform: uppercase; margin: 4px 0 1rem; }
.footer-motto { color: var(--gold); font-style: italic; font-size: 0.9rem; margin-bottom: 1rem; }
.footer-flags { color: var(--text-muted); font-size: 0.85rem; }
.footer-links-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links-col ul li { font-size: 0.875rem; color: var(--text-muted); }
.footer-links-col ul li a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-links-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0;
  font-size: 0.8rem; color: rgba(143,160,192,0.5);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.04); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes particle-drift {
  0%   { transform: translateY(0)   rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 300px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-globe { display: none; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: rgba(8,15,34,0.98); backdrop-filter: blur(20px); padding: 6rem 2rem 2rem; gap: 1.5rem; border-left: 1px solid rgba(201,168,76,0.15); transition: transform var(--transition); transform: translateX(100%); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .hamburger { display: flex; }
  .trust-container { gap: 0.8rem; }
  .trust-sep { display: none; }
  .trust-item { font-size: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-divider { flex-direction: row; }
  .divider-line { width: 80px; height: 1px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .about-card-float { display: none; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .contact-form { padding: 2rem 1.5rem; }
}
