/* ============================================================
   MMSDAND CONSULTANTS — style.css
   Brand Colors:
     Navy Blue  : #1C3172
     Orange     : #F47920
     Steel Grey : #808285
     Light Grey : #F5F6FA
     White      : #FFFFFF
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --navy:       #1C3172;
  --navy-dark:  #141F4E;
  --navy-light: #243d8f;
  --orange:     #F47920;
  --orange-dark:#d4620f;
  --grey:       #808285;
  --light-grey: #F5F6FA;
  --white:      #FFFFFF;
  --text-dark:  #1a1a2e;
  --text-muted: #6c757d;
  --shadow-sm:  0 2px 15px rgba(28,49,114,0.08);
  --shadow-md:  0 8px 30px rgba(28,49,114,0.14);
  --shadow-lg:  0 20px 60px rgba(28,49,114,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

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

/* ===== UTILITIES ===== */
.text-orange  { color: var(--orange) !important; }
.text-navy    { color: var(--navy) !important; }
.bg-navy      { background-color: var(--navy) !important; }
.bg-light-grey{ background-color: var(--light-grey) !important; }
.fw-600       { font-weight: 600; }

.section-pad  { padding: 90px 0; }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.section-text {
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ===== BUTTONS ===== */
.btn-orange {
  background: var(--orange);
  color: var(--white) !important;
  border: 2px solid var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 12px 30px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(244,121,32,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,121,32,0.45);
}

.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
  border: 2px solid var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  padding: 12px 30px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(28,49,114,0.3);
}
.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(28,49,114,0.4);
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
.preloader-shield {
  font-size: 4rem;
  color: var(--orange);
  animation: shieldPulse 1.2s ease-in-out infinite;
  margin-bottom: 16px;
}
@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.8; }
}
.preloader-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.preloader-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--orange);
  margin-top: 4px;
}
.preloader-bar {
  width: 220px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  border-radius: 10px;
  animation: barFill 2s ease-in-out forwards;
}
@keyframes barFill {
  from { width: 0; }
  to   { width: 100%; }
}

/* ===== NAVBAR ===== */
#mainNav {
  background: var(--navy);
  padding: 12px 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(28,49,114,0.3);
}
#mainNav.scrolled {
  background: var(--navy-dark);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(28,49,114,0.5);
}
.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 4px 10px;
  transition: var(--transition);
}
#mainNav.scrolled .nav-logo { height: 44px; padding: 3px 8px; }

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
}
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a8f 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(244,121,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(244,121,32,0.15);
  border: 1px solid rgba(244,121,32,0.4);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-btns { margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
}
.hero-logo-img {
  width: 340px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: floatLogo 4s ease-in-out infinite;
  background: rgba(255,255,255,0.95);
  padding: 20px;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT SECTION ===== */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  padding: 24px;
  object-fit: contain;
}
.about-img-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 25px rgba(244,121,32,0.5);
  z-index: 2;
}
.badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
.badge-num sup { font-size: 0.9rem; }
.badge-txt { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px; line-height: 1.3; }

.about-accent-box {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  text-align: center;
}
.about-accent-box p { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); }

.about-features { margin: 24px 0; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}
.feature-item i { font-size: 1.1rem; flex-shrink: 0; }

/* ===== SERVICES SECTION ===== */
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(244,121,32,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 22px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(244,121,32,0.4);
}
.service-card:hover .service-icon-wrap {
  background: var(--white);
  color: var(--orange);
  transform: rotate(-5deg) scale(1.05);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.service-list li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li i { color: var(--orange); font-size: 0.7rem; }

.service-link {
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { color: #ffb347; gap: 10px; }

/* ===== WHY CHOOSE US ===== */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  border: 1px solid #e8eaf6;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(28,49,114,0.25);
}
.why-card:hover .why-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}
.why-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,49,114,0.85) 0%, rgba(244,121,32,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-content {
  text-align: center;
  color: var(--white);
  transform: translateY(20px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-content {
  transform: translateY(0);
}
.gallery-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.gallery-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.95;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 90px 0;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(244,121,32,0.12) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cta-btns { position: relative; z-index: 1; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid #e8eaf6;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.stars { color: var(--orange); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CONTACT SECTION ===== */
.contact-info-wrap {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  border: 1px solid #e8eaf6;
}
.contact-info-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-link {
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-link:hover { color: var(--orange); }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn.whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.social-btn.whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  color: var(--white);
}

/* Contact Form */
.contact-form .form-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e0e4f0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,121,32,0.12);
  outline: none;
}
.contact-form textarea.form-control { resize: vertical; min-height: 130px; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--navy);
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); }

.footer-top { padding: 70px 0 50px; }

.footer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 6px 14px;
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--white);
  padding-left: 8px;
}
.footer-links a:hover::before { opacity: 1; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-list li i { margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  background: #1ebe5a;
  transform: scale(1.1);
  color: var(--white);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy-dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy-dark);
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244,121,32,0.4);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
}

/* ===== FORM SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #28a745;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  color: #155724;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  z-index: 100000;
  transition: width 0.1s linear;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .section-pad { padding: 70px 0; }
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
  .about-img-badge { top: -10px; right: -10px; width: 80px; height: 80px; }
  .about-accent-box { bottom: -10px; left: -10px; padding: 14px 16px; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 55px 0; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }
  .contact-info-wrap { padding: 28px 20px; }
  .footer-top { padding: 50px 0 30px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .back-to-top { bottom: 82px; right: 20px; }
  .about-img-badge { display: none; }
  .about-accent-box { display: none; }
}

@media (max-width: 575.98px) {
  .hero-btns .btn { width: 100%; text-align: center; }
  .hero-badge { font-size: 0.68rem; }
  .service-card { padding: 28px 20px; }
  .why-card { padding: 28px 20px; }
  .testimonial-card { padding: 28px 20px; }
}
