/* ===== DENNY CORPORATE SERVICES — MASTER STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy:   #0a2540;
  --blue:   #0077cc;
  --teal:   #00c4b4;
  --light:  #f4f8fd;
  --white:  #ffffff;
  --text:   #2d3748;
  --muted:  #64748b;
  --border: #e2e8f0;
  --shadow: 0 20px 60px rgba(10,37,64,0.10);
  --shadow-sm: 0 4px 20px rgba(10,37,64,0.07);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 10px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 0%, #013a6e 100%);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 0;
}
.top-bar a { color: rgba(255,255,255,0.9); text-decoration: none; }
.top-bar a:hover { color: var(--teal); }
.top-bar i { color: var(--teal); margin-right: 6px; }
.top-bar .separator { opacity: 0.3; margin: 0 12px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white) !important;
  padding: 0;
  box-shadow: 0 2px 20px rgba(10,37,64,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(10,37,64,0.15); }
.navbar-brand img { height: 52px; width: auto; }
.navbar-nav { gap: 4px; }
.nav-link {
  font-weight: 500;
  color: var(--navy) !important;
  padding: 28px 16px !important;
  font-size: 0.95rem;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 3px 3px 0 0;
  transform: translateX(-50%);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--blue) !important; }
.nav-link:hover::after, .nav-link.active::after { width: 80%; }
.navbar-toggler { border: none; outline: none !important; box-shadow: none !important; }
.dropdown-menu {
  border: none;
  box-shadow: 0 20px 50px rgba(10,37,64,0.12);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 220px;
}
.dropdown-item {
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(0,119,204,0.08), rgba(0,196,180,0.08));
  color: var(--blue);
  transform: translateX(4px);
}

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 0.93rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border: none;
  color: white;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,196,180,0.40);
  color: white;
}
.btn-outline-primary {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,119,204,0.30);
}
.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
  background: transparent;
}
.btn-outline-white:hover {
  background: white;
  color: var(--navy);
  border-color: white;
  transform: translateY(-3px);
}
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ===== SECTION UTILITIES ===== */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,119,204,0.1), rgba(0,196,180,0.1));
  color: var(--blue);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,119,204,0.2);
}
.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.section-title span { color: var(--teal); }
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.text-justify { text-align: justify; }
.bg-light-custom { background: var(--light); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/1.jpg') center/cover no-repeat;
  opacity: 0.15;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0,196,180,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,119,204,0.15) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,196,180,0.15);
  border: 1px solid rgba(0,196,180,0.3);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--teal); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-float {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
  padding: 28px;
  color: white;
  width: 100%;
  max-width: 400px;
}
.floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 3s ease-in-out infinite;
}
.floating-badge i { color: var(--teal); }
.floating-badge:nth-child(2) { animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== SERVICES GRID ===== */
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,119,204,0.15);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(0,119,204,0.1), rgba(0,196,180,0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  transform: rotate(-5deg) scale(1.05);
}
.service-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.92rem; color: var(--muted); text-align: justify; flex-grow: 1; }
.service-card .btn { margin-top: 20px; align-self: flex-start; }

/* ===== ABOUT FEATURES ===== */
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}
.feature-text h6 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.feature-text p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #013a6e 50%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 50%, rgba(0,196,180,0.15) 0%, transparent 40%),
                    radial-gradient(circle at 90% 50%, rgba(0,119,204,0.2) 0%, transparent 40%);
}
.stat-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-card:last-child::after { display: none; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ===== PRICING ===== */
.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.pricing-card.featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, white 0%, rgba(0,196,180,0.03) 100%);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-plan { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--blue); }
.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-price sup { font-size: 1.4rem; font-weight: 700; vertical-align: top; margin-top: 8px; }
.pricing-period { font-size: 0.82rem; color: var(--muted); }
.pricing-divider { height: 1px; background: var(--border); margin: 24px 0; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.pricing-feature i { color: var(--teal); font-size: 0.85rem; flex-shrink: 0; }
.pricing-card .btn { margin-top: auto; padding-top: 28px; }

/* ===== CONTACT ===== */
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}
.contact-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(0,119,204,0.1), rgba(0,196,180,0.1));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin: 0 auto 20px;
  transition: all var(--transition);
}
.contact-info-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
}
.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 8px; }
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  padding: 12px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all 0.25s;
  background: #fafbfc;
}
.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,119,204,0.1);
  background: white;
  outline: none;
}
textarea.form-control { resize: none; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #013a6e 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0,196,180,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 30%, rgba(0,119,204,0.2) 0%, transparent 50%);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  position: relative;
}
.page-hero p { color: rgba(255,255,255,0.7); position: relative; }
.breadcrumb { background: transparent; padding: 0; position: relative; }
.breadcrumb-item { font-size: 0.88rem; font-weight: 500; }
.breadcrumb-item a { color: var(--teal); text-decoration: none; }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== TEAM / ABOUT CARDS ===== */
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  height: 100%;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card .icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  margin: 0 auto 20px;
}
.value-card h5 { font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--muted); text-align: justify; }

/* ===== AREAS SERVED ===== */
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--navy);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
}
.area-pill:hover {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
}
.area-pill i { color: var(--teal); font-size: 0.75rem; }
.area-pill:hover i { color: white; }

/* ===== FAQ ===== */
.accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  background: white;
  padding: 20px 24px;
}
.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(0,119,204,0.05), rgba(0,196,180,0.05));
  color: var(--blue);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: var(--muted); font-size: 0.92rem; padding: 16px 24px 20px; text-align: justify; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
}
.footer-top { padding: 70px 0 50px; }
.footer-brand img { height: 48px; margin-bottom: 20px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; text-align: justify; }
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s;
}
.footer-links a:hover { color: var(--teal); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-item i { color: var(--teal); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact-item a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.25s;
  margin-right: 8px;
}
.social-link:hover {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(37,211,102,0.5);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37,211,102,0.7);
  color: white;
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-item i { color: var(--teal); font-size: 1.1rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
}
.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.93rem; color: var(--muted); font-style: italic; text-align: justify; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-role { font-size: 0.78rem; color: var(--muted); }

/* ===== ABOUT PAGE ===== */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); }
.exp-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow);
}
.exp-badge .num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.exp-badge .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #013a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 50%, rgba(0,196,180,0.15) 0%, transparent 50%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .nav-link { padding: 12px 16px !important; }
  .nav-link::after { display: none; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-8px); }
  .stat-card::after { display: none; }
  .contact-form-wrap { padding: 32px 24px; }
  .exp-badge { bottom: -10px; right: -10px; }
}
@media (max-width: 767.98px) {
  .section-title { font-size: 1.8rem; }
  .hero-stats { gap: 20px; }
  .top-bar .d-md-flex { display: none !important; }
  .about-img-wrap { margin-bottom: 60px; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-top { padding: 50px 0 30px; }
}

/* ===== AOS OVERRIDE ===== */
[data-aos] { will-change: transform, opacity; }