/* ===========================
   ARRTAMONEY — MAIN STYLESHEET
   =========================== */

:root {
  --primary: #0a2463;
  --primary-light: #1a3c7a;
  --accent: #e63946;
  --accent-hover: #c1121f;
  --gold: #f4a261;
  --white: #ffffff;
  --light-bg: #f7f9fc;
  --text-dark: #1a1a2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(10,36,99,0.10);
  --shadow-lg: 0 12px 48px rgba(10,36,99,0.18);
  --radius: 14px;
  --transition: all 0.32s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

.text-accent { color: var(--accent); }
.section { padding: 90px 0; }

/* ====== TOPBAR ====== */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }
.topbar-right a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
}
.topbar-right a:hover { background: var(--accent); color: white; }

/* ====== NAVBAR ====== */
#mainNav {
  background: white;
  box-shadow: 0 2px 20px rgba(10,36,99,0.08);
  padding: 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  box-shadow: 0 4px 30px rgba(10,36,99,0.14);
}
.navbar-brand img {
    height: 44px;
    width: 290px;
}
.brand-text { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--primary); }
.brand-text span { color: var(--accent); }

.nav-link {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark) !important;
  padding: 22px 14px !important;
  letter-spacing: 0.3px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 14px; right: 14px; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 8px;
  margin-top: 0;
  min-width: 240px;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
.dropdown-item {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
}
.dropdown-item i { color: var(--primary); width: 20px; }
.dropdown-item:hover { background: var(--light-bg); color: var(--accent); }
.dropdown-item:hover i { color: var(--accent); }

.btn-primary-cta {
  background: var(--accent);
  color: white !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230,57,70,0.35);
}

/* ====== HERO SLIDER ====== */
.hero-slider { position: relative; }
.carousel-control-prev, .carousel-control-next {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  opacity: 1;
  font-size: 18px;
}
.carousel-control-prev { left: 20px; }
.carousel-control-next { right: 20px; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--accent); border-color: var(--accent); }
.carousel-indicators { bottom: 20px; }
.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  margin: 0 5px;
}
.carousel-indicators button.active { background: var(--accent); width: 28px; border-radius: 5px; }

.hero-slide {
  height: 88vh; min-height: 580px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2463 0%, #1a3c7a 100%);
  display: flex; align-items: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,36,99,0.88) 0%, rgba(10,36,99,0.60) 55%, rgba(0,0,0,0.25) 100%);
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  height: 88vh; min-height: 580px;
  display: flex; align-items: center;
}

.hero-content { color: white; }
.hero-badge {
  display: inline-block;
  background: rgba(244,162,97,0.25);
  border: 1px solid rgba(244,162,97,0.5);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  color: white;
}
.hero-content h1 .text-accent { color: var(--gold); }
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: 30px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-hero-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(230,57,70,0.45); color: white; }
.btn-hero-outline {
  background: transparent;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  display: inline-flex; align-items: center;
}
.btn-hero-outline:hover { background: white; color: var(--primary); border-color: white; transform: translateY(-3px); }

/* ====== STATS BAR ====== */
.stats-bar {
  background: var(--primary);
  padding: 0;
}
.stat-item {
  padding: 36px 20px;
  text-align: center;
  color: white;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ====== SECTION HEADER ====== */
.section-tag {
  display: inline-block;
  background: rgba(230,57,70,0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

/* ====== SERVICES ====== */
.services-section { background: var(--light-bg); }
.service-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
}
.service-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.card-arrow {
  display: inline-flex;
  width: 32px; height: 32px;
  background: var(--light-bg);
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--primary);
  margin-top: 16px;
  transition: var(--transition);
}
.service-card:hover .card-arrow { background: var(--accent); color: white; transform: translateX(4px); }

/* ====== ABOUT SNIPPET ====== */
.about-snippet { background: white; }
.about-image-block { position: relative; display: inline-block; width: 100%; }
.about-image-block .main-img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  height: 440px;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--primary);
  color: white;
  padding: 16px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold); }
.about-badge span { font-size: 12px; color: rgba(255,255,255,0.75); }
.about-snippet h2 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 16px; }
.lead-text { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dark);
  border-bottom: 1px dashed var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: #22c55e; margin-top: 3px; flex-shrink: 0; }

/* ====== WHY SECTION ====== */
.why-section { background: var(--light-bg); }
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 64px; height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--accent); transform: rotateY(180deg); }
.why-card h5 { font-size: 16px; margin-bottom: 8px; color: var(--text-dark); }
.why-card p { font-size: 14px; color: var(--text-muted); }

/* ====== CTA BANNER ====== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: white; font-size: clamp(24px, 3vw, 38px); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 16px; }
.btn-cta-white {
  background: white;
  color: var(--primary);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  display: inline-flex; align-items: center;
  transition: var(--transition);
}
.btn-cta-white:hover { background: var(--gold); color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* ====== TESTIMONIALS ====== */
.testimonials-section { background: white; }
.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.testimonial-card.featured {
  background: var(--primary);
  border-color: transparent;
  color: white;
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-card.featured:hover { transform: translateY(-14px); }
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-card.featured p { color: rgba(255,255,255,0.85); }
.client-info { display: flex; align-items: center; gap: 12px; }
.client-avatar {
  width: 42px; height: 42px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}
.client-info strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-card.featured .client-info strong { color: white; }
.client-info span { font-size: 12px; color: var(--text-muted); }
.testimonial-card.featured .client-info span { color: rgba(255,255,255,0.65); }

/* ====== PAGE HERO (inner pages) ====== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0d3b72 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -30%; right: -5%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 300px; height: 300px;
  background: rgba(244,162,97,0.08);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: white; font-size: clamp(28px, 4vw, 48px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 560px; }
.breadcrumb-nav { margin-top: 20px; }
.breadcrumb-nav a { color: var(--gold); font-size: 14px; font-weight: 500; }
.breadcrumb-nav span { color: rgba(255,255,255,0.5); font-size: 14px; padding: 0 8px; }

/* ====== SERVICE DETAIL PAGE ====== */
.service-detail { background: white; }
.service-detail-img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.service-detail h3 { font-size: 22px; color: var(--primary); margin: 28px 0 14px; }
.service-detail p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.process-steps { counter-reset: step; margin: 24px 0; }
.process-step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 36px; height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.step-content strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--text-dark); }
.step-content p { font-size: 14px; margin: 0; }
.key-services-list { list-style: none; padding: 0; margin: 16px 0; }
.key-services-list li {
  padding: 8px 0;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px;
  border-bottom: 1px dashed var(--border);
}
.key-services-list li:last-child { border: none; }
.key-services-list li::before {
  content: '✓';
  display: inline-flex;
  width: 22px; height: 22px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ====== CONTACT FORM ====== */
.contact-section { background: white; }
.contact-card {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  border: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px;
  flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.ci-text a, .ci-text p { font-size: 14px; color: var(--text-muted); margin: 0; }
.ci-text a:hover { color: var(--accent); }

.form-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-label { font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--text-dark); }
.form-control, .form-select {
  border-radius: 10px;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,36,99,0.08);
}
.btn-submit {
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
}
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,0.35); }

/* ====== ABOUT PAGE ====== */
.mission-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid var(--primary);
}
.mission-card:nth-child(2) { border-top-color: var(--accent); }
.mission-card:nth-child(3) { border-top-color: var(--gold); }
.mission-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mission-card h4 { font-size: 20px; margin-bottom: 12px; color: var(--primary); }
.mission-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.mission-card p + p { margin-top: 8px; }

/* ====== FOOTER ====== */
.site-footer { margin-top: 0; }
.footer-top {
  background: #0a1628;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 50px;
}
.footer-logo { height: 48px; }
.brand-text-footer { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: white; }
.brand-text-footer span { color: var(--accent); }
.footer-top p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-top: 14px; }
.footer-top h5 {
  font-size: 15px;
  color: white;
  margin-bottom: 18px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 18px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 14px; }
.footer-contact li i { color: var(--gold); width: 20px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 14px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: white; transform: translateY(-3px); }
.newsletter-form { display: flex; border-radius: 50px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 10px 16px;
  color: white;
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
  background: var(--accent);
  border: none;
  width: 42px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-hover); }

.footer-bottom {
  background: #060e1c;
  padding: 18px 0;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}
.footer-bottom p { margin: 0; }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: white;
  z-index: 9999;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12) translateY(-4px); color: white; box-shadow: 0 12px 36px rgba(37,211,102,0.6); }
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #25d366;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  font-family: 'DM Sans', sans-serif;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ====== SCROLL TOP ====== */
.scroll-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent); transform: translateY(-4px); }

/* ====== SIDEBAR (service pages) ====== */
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-card .card-header {
  background: var(--primary);
  color: white;
  padding: 16px 20px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.sidebar-nav { list-style: none; padding: 12px 0; margin: 0; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav li a:hover, .sidebar-nav li a.active {
  background: var(--light-bg);
  color: var(--accent);
  border-left-color: var(--accent);
  padding-left: 24px;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.sidebar-cta h5 { color: white; font-size: 17px; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.75); font-size: 13px; margin-bottom: 16px; }
.sidebar-cta a {
  background: var(--accent);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  display: inline-block;
  transition: var(--transition);
}
.sidebar-cta a:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ====== APPLY FORM (in-page form) ====== */
.apply-form-section {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  margin-top: 30px;
}
.apply-form-section h4 { font-size: 20px; margin-bottom: 20px; color: var(--primary); }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .hero-slide { height: 70vh; min-height: 450px; }
  .hero-container { height: 70vh; min-height: 450px; }
  .about-badge { right: 0; bottom: -15px; }
  .nav-link::after { display: none; }
  .nav-link { padding: 12px 16px !important; }
  .navbar-nav .btn-primary-cta { margin: 10px 16px; display: inline-block; }
}
@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .hero-slide { height: 75vw; min-height: 380px; }
  .hero-container { height: 75vw; min-height: 380px; }
  .hero-content h1 { font-size: 28px; }
  .stat-number { font-size: 30px; }
  .about-image-block .main-img { height: 280px; }
  .form-card, .contact-card { padding: 24px; }
}

/* ====== ANIMATIONS ====== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  /* Safety fallback: if JS never fires, reveal content after 1.5s */
  animation: fadeUpFallback 0s 1.5s forwards;
}
@keyframes fadeUpFallback {
  to { opacity: 1; transform: translateY(0); }
}
.fade-up.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none;
}

/* ====== NAVBAR TOGGLER ====== */
.navbar-toggler {
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a2463' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Map embed */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; }
