/* Moni Safety Nets - Premium Theme */
:root {
  --orange: #F26522;
  --orange-light: #FBB040;
  --orange-gradient: linear-gradient(135deg, #F26522 0%, #FBB040 50%, #FFD166 100%);
  --blue-dark: #1B365D;
  --blue-mid: #2A4A7F;
  --blue-cyan: #00AEEF;
  --blue-gradient: linear-gradient(135deg, #1B365D 0%, #2A4A7F 50%, #00AEEF 100%);
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-600: #64748B;
  --gray-800: #1E293B;
  --shadow-sm: 0 2px 8px rgba(27, 54, 93, 0.08);
  --shadow-md: 0 8px 24px rgba(27, 54, 93, 0.12);
  --shadow-lg: 0 16px 48px rgba(27, 54, 93, 0.18);
  --shadow-gloss: 0 4px 20px rgba(242, 101, 34, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 80px;
  --topbar-height: 42px;
  --marquee-height: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; color: var(--blue-dark); }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 70px 0; }
.section-alt { background: var(--white); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--orange-gradient);
  border-radius: 2px;
}
.section-title p { color: var(--gray-600); max-width: 700px; margin: 15px auto 0; }
.text-gradient {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-primary {
  background: var(--orange-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gloss);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(242, 101, 34, 0.45); }
.btn-secondary {
  background: var(--blue-gradient);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover { transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* Top Bar */
.top-bar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.top-bar a:hover { color: var(--orange-light); }
.top-bar .top-links { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar .highlight-text { color: var(--orange-light); font-weight: 600; }

/* Marquee */
.marquee-wrap {
  background: var(--orange-gradient);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(242, 101, 34, 0.3);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  padding: 0 40px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.marquee-track span::before {
  content: '★';
  margin-right: 12px;
  color: var(--blue-dark);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}
.logo img { height: 55px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--blue-dark);
  border-radius: 8px;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { color: var(--orange); background: rgba(242, 101, 34, 0.08); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  max-height: 70vh;
  overflow-y: auto;
  z-index: 100;
}
.main-nav > li:hover .dropdown-menu,
.main-nav > li.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--gray-800);
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: rgba(0, 174, 239, 0.08);
  color: var(--blue-cyan);
  border-left-color: var(--orange);
}
.header-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--blue-dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,54,93,0.85) 0%, rgba(27,54,93,0.5) 50%, rgba(242,101,34,0.4) 100%);
  z-index: 1;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 40px 20px;
}
.hero-content {
  max-width: 700px;
  color: var(--white);
  animation: fadeUp 0.8s ease;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 25px;
  opacity: 0.95;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
.hero-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--orange); border-color: var(--orange); transform: scale(1.2); }
.hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}
.hero-arrows button:hover { background: var(--orange); }
.hero-arrows .prev { left: 20px; }
.hero-arrows .next { right: 20px; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Quick Contact Form */
.quick-contact {
  background: var(--white);
  margin-top: -40px;
  position: relative;
  z-index: 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 35px 40px;
  border: 1px solid var(--gray-200);
}
.quick-contact h3 { margin-bottom: 5px; }
.quick-contact .subtitle { color: var(--gray-600); margin-bottom: 20px; font-size: 0.95rem; }
.quick-form { display: flex; gap: 15px; flex-wrap: wrap; align-items: flex-end; }
.form-group { flex: 1; min-width: 200px; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--blue-dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-cyan);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
  background: var(--white);
}
.quick-form .btn { min-width: 160px; }

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(27,54,93,0.6));
}
.service-card-body { padding: 22px; }
.service-card-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.service-card-body p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 15px; }
.service-card-body .read-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-card-body .read-more:hover { gap: 10px; }

/* About / Content Blocks */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.content-img::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.feature-list { margin-top: 20px; }
.feature-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid var(--gray-200);
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--orange);
}
.stat-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-card .label { color: var(--gray-600); font-size: 0.9rem; margin-top: 5px; }

/* Why Special */
.special-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
.special-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}
.special-card:hover {
  border-color: var(--blue-cyan);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.special-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-gloss);
}
.special-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.special-card p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }

/* Highlights */
.highlights-bar {
  background: var(--blue-gradient);
  padding: 50px 0;
  color: var(--white);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
}
.highlight-item { text-align: center; }
.highlight-item .icon { font-size: 2.5rem; margin-bottom: 12px; }
.highlight-item h4 { color: var(--white); margin-bottom: 8px; }
.highlight-item p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}
.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  border-left: 4px solid var(--orange);
}
.review-stars { color: #FFB800; font-size: 1.1rem; margin-bottom: 12px; }
.review-text { color: var(--gray-600); font-style: italic; margin-bottom: 15px; font-size: 0.95rem; }
.review-author { font-weight: 600; color: var(--blue-dark); }
.review-location { font-size: 0.85rem; color: var(--gray-600); }

/* FAQ */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question .icon {
  width: 30px;
  height: 30px;
  background: var(--orange-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  background: var(--orange-gradient);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-section h2 { color: var(--white); margin-bottom: 15px; }
.cta-section p { color: rgba(255,255,255,0.95); max-width: 600px; margin: 0 auto 25px; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-secondary { background: var(--blue-dark); }
.cta-section .btn-outline { border-color: var(--white); color: var(--white); }
.cta-section .btn-outline:hover { background: var(--white); color: var(--orange); }

/* Page Hero (inner pages) */
.page-hero {
  background: var(--blue-gradient);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange-gradient);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { opacity: 0.9; max-width: 700px; margin: 0 auto; }
.breadcrumb {
  margin-top: 15px;
  font-size: 0.9rem;
  opacity: 0.85;
}
.breadcrumb a:hover { color: var(--orange-light); }

/* Service Page Content */
.service-content { padding: 60px 0; }
.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.service-main img {
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  box-shadow: var(--shadow-md);
}
.service-main h2 { margin: 30px 0 15px; }
.service-main h3 { margin: 25px 0 12px; color: var(--blue-mid); }
.service-sidebar .sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-md);
  margin-bottom: 25px;
  border-top: 4px solid var(--orange);
}
.service-sidebar h4 { margin-bottom: 15px; }
.sidebar-links a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-800);
}
.sidebar-links a:hover { color: var(--orange); padding-left: 8px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.area-tag {
  background: rgba(0, 174, 239, 0.1);
  color: var(--blue-dark);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(27,54,93,0.9));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span { color: var(--white); font-weight: 600; }

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 4px solid var(--orange);
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo img { height: 60px; margin-bottom: 15px; }
.footer-about p { font-size: 0.9rem; line-height: 1.8; }
.footer-col h4 { color: var(--white); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; opacity: 0.85; }
.footer-col ul a:hover { color: var(--orange-light); opacity: 1; }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.88rem;
}
.footer-bottom a.brand-link {
  font-weight: 700;
  color: var(--orange-light);
}
.footer-bottom a.brand-link:hover { color: var(--white); }

/* Floating Contact */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.phone { background: var(--blue-gradient); color: var(--white); }
.float-btn.whatsapp { background: #25D366; }
.float-btn svg { width: 28px; height: 28px; fill: currentColor; }
.float-btn.whatsapp svg { fill: var(--white); }

/* Toast */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 400px;
  animation: slideIn 0.4s ease;
  border-left: 4px solid var(--orange);
}
.toast.success { border-left-color: #22C55E; }
.toast.error { border-left-color: #EF4444; }
.toast-icon { font-size: 1.3rem; }
.toast-message { font-size: 0.9rem; font-weight: 500; }
@keyframes slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
  to { transform: translateX(120%); opacity: 0; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Timeline (Success Story) */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 30px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange-gradient);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 35px;
  padding-left: 30px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.timeline-year { font-weight: 700; color: var(--orange); margin-bottom: 5px; }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27,54,93,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.hero-content .btn + .btn { margin-left: 10px; }
.hero-content .btn-outline { border-color: var(--white); color: var(--white); }
.hero-content .btn-outline:hover { background: var(--white); color: var(--orange); }
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .hero-slider { aspect-ratio: 1 / 1; }
  .hero-content .btn + .btn { margin-left: 0; margin-top: 10px; }
  .hero-content .btn { display: inline-flex; }
  .header-cta { display: none; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 30px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1001;
    gap: 0;
  }
  .main-nav.active { right: 0; }
  .main-nav > li > a { padding: 14px 16px; border-bottom: 1px solid var(--gray-200); }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease;
  }
  .main-nav > li.open .dropdown-menu { max-height: 600px; padding: 5px 0; }
  .dropdown-menu a { padding: 10px 16px 10px 30px; font-size: 0.85rem; }
  .hero-slide-inner { aspect-ratio: 1 / 1; }
  .content-grid { grid-template-columns: 1fr; }
  .content-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .quick-contact { margin: -20px 15px 0; padding: 25px 20px; }
  .quick-form { flex-direction: column; }
  .quick-form .btn { width: 100%; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .hero-arrows button { width: 40px; height: 40px; font-size: 1rem; }
  .section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 0.8rem; padding: 0 25px; }
  .floating-contact { right: 15px; bottom: 15px; }
  .float-btn { width: 50px; height: 50px; }
}
