@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #0a5eb0;
  --primary-dark: #073d7a;
  --primary-light: #e8f1fb;
  --accent: #22c5c5;
  --accent-warm: #f4a720;
  --text-dark: #0f1d2e;
  --text-muted: #5a6a7a;
  --bg-light: #f7fafd;
  --white: #ffffff;
  --border: #dde8f5;
  --shadow: 0 8px 32px rgba(10,94,176,0.10);
  --shadow-lg: 0 20px 60px rgba(10,94,176,0.16);
  --radius: 16px;
  --radius-sm: 10px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

/* ==================== NAVBAR ==================== */
.navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  transition: all 0.3s;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}
.brand-text { line-height: 1.2; }
.brand-text span:first-child {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}
.brand-text span:last-child {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.9rem !important;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { left: 10%; right: 10%; }

.btn-appointment {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white !important;
  border-radius: 50px;
  padding: 0.5rem 1.4rem !important;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(10,94,176,0.3);
  transition: all 0.3s;
  border: none;
}
.btn-appointment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,94,176,0.4);
  color: white !important;
}

/* ==================== FLOATING BUTTON ==================== */
.floating-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 28px rgba(10,94,176,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
  transition: all 0.3s;
}
.floating-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 36px rgba(10,94,176,0.5);
}
.whatsapp-fab {
  position: fixed;
  bottom: 88px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.1); color: white; }

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

/* ==================== HERO ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0a5eb0 50%, #0f9b9b 100%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1579684453423-f84349ef60b0?w=1400&q=80') center/cover;
  opacity: 0.12;
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-shapes .s1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-shapes .s2 { width: 300px; height: 300px; bottom: -50px; left: 10%; background: rgba(34,197,197,0.08); }
.hero-shapes .s3 { width: 150px; height: 150px; top: 30%; left: 5%; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-warm);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  color: var(--accent-warm);
  display: block;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-weight: 300;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 3rem; }
.btn-hero-primary {
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.3);
  color: var(--primary-dark);
}
.btn-hero-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 13px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  display: block;
}
.hero-stat .lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-image-wrap {
  position: relative;
  padding: 20px;
}
.hero-img-main {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero-card-floating {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-floating.c1 { bottom: 30px; left: -20px; }
.hero-card-floating.c2 { top: 30px; right: -20px; }
.hero-card-floating .icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-card-floating .icon.blue { background: var(--primary-light); color: var(--primary); }
.hero-card-floating .icon.teal { background: #e0f7f7; color: var(--accent); }
.hero-card-floating p { margin: 0; }
.hero-card-floating p:first-of-type { font-weight: 700; font-size: 1rem; }
.hero-card-floating p:last-of-type { font-size: 0.72rem; color: var(--text-muted); }

/* ==================== SECTIONS ==================== */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 60px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  font-weight: 300;
}

/* ==================== ABOUT ==================== */
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.about-img-badge .lbl {
  font-size: 0.72rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.about-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.about-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.about-checklist li i {
  width: 28px; height: 28px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ==================== SERVICE CARDS ==================== */
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 1.2rem;
  background: var(--primary-light);
  color: var(--primary);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: white;
}
.service-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ==================== WHY CHOOSE US ==================== */
.why-section { background: var(--bg-light); }
.why-card {
  text-align: center;
  padding: 32px 20px;
}
.why-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 1.2rem;
}
.why-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.why-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ==================== EYEWEAR CARDS ==================== */
.eyewear-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s;
}
.eyewear-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.eyewear-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.eyewear-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.eyewear-card:hover .eyewear-card-img img { transform: scale(1.07); }
.eyewear-card-body { padding: 18px; }
.eyewear-card-body h5 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.eyewear-card-body p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.eyewear-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  padding: 3px 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==================== TESTIMONIALS ==================== */
.reviews-section { background: var(--bg-light); }
.review-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.stars { color: #fbbf24; font-size: 0.95rem; margin-bottom: 0.75rem; }
.review-text {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong { font-size: 0.9rem; font-weight: 600; display: block; }
.reviewer-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ==================== GALLERY ==================== */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,94,176,0.7), transparent);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-tall { aspect-ratio: 2/3; }
.gallery-wide { aspect-ratio: 3/2; }
.gallery-sq { aspect-ratio: 1; }

/* ==================== BLOG ==================== */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.35s;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 20px; }
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  align-items: center;
}
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  padding: 2px 10px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-card-body h5 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-card-body a { font-size: 0.85rem; font-weight: 600; color: var(--primary); text-decoration: none; }
.blog-card-body a:hover { text-decoration: underline; }

/* ==================== CTA ==================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; right: -100px;
}
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; }
.cta-section p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 2rem; font-weight: 300; }
.btn-cta-white {
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  color: var(--primary-dark);
}
.btn-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 13px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
  color: white;
}

/* ==================== CONTACT ==================== */
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 50px; height: 50px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-item h6 { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-item p { margin: 0; font-size: 0.95rem; font-weight: 500; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,94,176,0.1);
}
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,94,176,0.35);
  color: white;
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ==================== FOOTER ==================== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 20px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 1rem; }
.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.2rem;
}
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
footer ul li a:hover { color: var(--accent); }
.footer-contact p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.87rem; margin-bottom: 0.7rem;
}
.footer-contact p i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s;
  font-size: 16px;
  text-decoration: none;
}
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 30px 0 20px; }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 0 50px;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1200&q=60') center/cover;
  opacity: 0.07;
}
.page-header .breadcrumb-item { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.7); text-decoration: none; }
.page-header .breadcrumb-item.active { color: white; }
.page-header .breadcrumb-divider { color: rgba(255,255,255,0.4); }
.page-header h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-top: 0.5rem; }

/* ==================== MODAL ==================== */
.modal-content {
  border-radius: var(--radius);
  border: none;
  overflow: hidden;
}
.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  padding: 20px 24px;
}
.modal-header .modal-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; }
.modal-header .btn-close { filter: invert(1); }
.modal-body { padding: 28px 24px; }

/* ==================== MISC ==================== */
.bg-light-custom { background: var(--bg-light); }
.text-primary-custom { color: var(--primary) !important; }
.badge-new {
  background: var(--accent-warm);
  color: white;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 100px 0 60px; }
  .hero-stats { gap: 1.5rem; }
  .hero-card-floating.c1 { left: 0; bottom: 10px; }
  .hero-card-floating.c2 { right: 0; top: 10px; }
  .about-img-badge { right: 0; bottom: -10px; }
  .floating-btn span { display: none; }
  .floating-btn { border-radius: 50%; width: 56px; height: 56px; padding: 0; justify-content: center; }
}
