/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #0a2342;
  --navy-light: #123264;
  --red: #e63946;
  --red-light: #ff6b75;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1a1a2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 10px 40px rgba(10,35,66,0.12);
  --shadow-lg: 0 25px 60px rgba(10,35,66,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.pulse-ring {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(230,57,70,0.5);
  animation: pulse-ring 1.5s ease-out infinite;
}
.pulse-ring.delay { animation-delay: 0.75s; }
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.heart-icon { width: 40px; height: 40px; position: relative; z-index: 1; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10,35,66,0.97);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.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: 12px;
}
.nav-logo svg { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); color: var(--white); font-size: 1rem; font-weight: 700; line-height: 1.2; }
.logo-title { color: rgba(255,255,255,0.65); font-size: 0.72rem; font-weight: 400; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--red-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #0d2d50 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 100px 0 60px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
}
.shape1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: float1 10s ease-in-out infinite reverse;
}
@keyframes float1 {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.4} }
.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.title-small {
  display: block; font-size: 1.2rem; font-weight: 400;
  color: rgba(255,255,255,0.7); letter-spacing: 0.15em;
  text-transform: uppercase; font-style: normal;
}
.title-main {
  display: block; font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 900;
}
.title-main em { color: var(--red-light); font-style: italic; }
.hero-designation {
  color: var(--gold);
  font-size: 1rem; font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  border: 2px solid var(--red);
  cursor: pointer; font-family: var(--font-body);
}
.btn-primary:hover { background: var(--red-light); border-color: var(--red-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(230,57,70,0.4); }
.btn-primary.large { padding: 16px 34px; font-size: 1rem; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-white.large { padding: 16px 34px; font-size: 1rem; }
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeInUp 0.8s 0.5s ease both;
}
.stat { text-align: left; }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800; color: var(--white);
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  animation: fadeInRight 0.9s 0.3s ease both;
}
.hero-img-ring {
  position: absolute; border-radius: 50%;
}
.ring1 {
  width: 360px; height: 360px;
  border: 2px solid rgba(230,57,70,0.3);
  animation: spin-slow 20s linear infinite;
}
.ring2 {
  width: 420px; height: 420px;
  border: 1px dashed rgba(201,168,76,0.25);
  animation: spin-slow 30s linear infinite reverse;
}
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hero-img-card {
  position: relative;
  width: 300px; height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  border: 3px solid rgba(255,255,255,0.15);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.img-badge-float {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(10,35,66,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem;
  white-space: nowrap;
}
.img-badge-float i { color: var(--red-light); }
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeIn 1s 1s ease both;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(5px)} }

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--navy);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-container {
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.trust-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.trust-item i { color: var(--gold); }
.trust-divider { color: rgba(255,255,255,0.3); font-size: 1.2rem; }

/* ===== SECTION COMMONS ===== */
.section-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.section-label {
  display: inline-block;
  color: var(--red);
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  background: rgba(230,57,70,0.1);
  padding: 6px 14px; border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.2;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title em { color: var(--red); font-style: italic; }
.section-sub { color: var(--gray); font-size: 1rem; max-width: 520px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about .section-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img-frame img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; object-fit: cover; object-position: top;
}
.about-exp-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  min-width: 220px;
}
.about-exp-badge i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.about-exp-badge strong { display: block; font-size: 0.9rem; }
.about-exp-badge span { font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.about-text { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.highlight-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(10,35,66,0.07);
  border-left: 3px solid var(--red);
}
.highlight-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(230,57,70,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.1rem; flex-shrink: 0;
}
.highlight-item strong { display: block; font-size: 0.9rem; color: var(--navy); }
.highlight-item span { font-size: 0.8rem; color: var(--gray); }
.mt-20 { margin-top: 20px; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  opacity: 0; transition: var(--transition);
  border-radius: var(--radius);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.service-card:hover h3, .service-card:hover p { color: var(--white); position: relative; z-index: 1; }
.service-card:hover .service-icon { background: rgba(230,57,70,0.2); color: var(--red-light); position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(10,35,66,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.4rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--navy);
  margin-bottom: 10px; transition: var(--transition);
}
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; transition: var(--transition); }
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.service-card.featured::before { display: none; }
.service-card.featured .service-icon { background: rgba(230,57,70,0.2); color: var(--red-light); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-card.featured:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(10,35,66,0.35); }
.featured-tag {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
  margin-top: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  position: relative; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
}
.cta-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white); font-weight: 800; margin-bottom: 16px;
}
.cta-content h2 em { color: var(--red-light); font-style: italic; }
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.cta-info-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.cta-info-item i {
  font-size: 1.2rem; color: var(--gold);
  margin-top: 2px; flex-shrink: 0;
}
.cta-info-item strong { display: block; color: var(--white); font-size: 0.88rem; margin-bottom: 2px; }
.cta-info-item span { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--off-white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(10,35,66,0.07);
  border: 2px solid transparent;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.testi-card.featured p, .testi-card.featured .testi-author strong { color: var(--white); }
.testi-card.featured .testi-author span { color: rgba(255,255,255,0.6); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--gray); line-height: 1.75; font-size: 0.93rem; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
  color: var(--white); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testi-author span { font-size: 0.78rem; color: var(--gray); }

/* ===== CONTACT SECTION ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; border-radius: var(--radius);
  background: var(--off-white);
  border: 2px solid transparent;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.contact-card > i {
  font-size: 1.3rem; color: var(--red);
  margin-top: 2px; flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(230,57,70,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 4px; }
.contact-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }
.contact-card a { color: var(--red); }
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 100px; }
.full-width { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 40px 0 0; }
.footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px 36px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong { display: block; color: var(--white); font-size: 0.95rem; }
.footer-brand span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; }
.social-wa {
  width: 42px; height: 42px; border-radius: 50%;
  background: #25d366;
  color: var(--white); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-wa:hover { transform: scale(1.15); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.footer-bottom {
  text-align: center;
  padding: 18px 24px;
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  background: #25d366;
  color: var(--white);
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
  overflow: visible;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa-label {
  position: absolute; right: 68px;
  background: var(--white);
  color: #333; font-size: 0.78rem; font-weight: 600;
  padding: 6px 12px; border-radius: 50px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.float-wa:hover .float-wa-label { opacity: 1; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { align-items: center; display: flex; flex-direction: column; }
  .hero-desc { text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-img-card { width: 240px; height: 300px; }
  .ring1 { width: 280px; height: 280px; }
  .ring2 { width: 330px; height: 330px; }
  .about .section-container { grid-template-columns: 1fr; gap: 40px; }
  .about-exp-badge { right: 0; bottom: -16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-container { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--navy); padding: 80px 24px 40px; gap: 4px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 14px 16px; border-radius: 12px; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-container { gap: 12px; }
  .hero-stats { gap: 16px; }
  .footer-container { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; justify-content: center; }
  .contact-form { padding: 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { justify-content: center; }
}
