/* ============================================
   JSR Balcony Safety Nets — Components
   EXACT Reference Site Match
   ============================================ */

/* ══════════════════════════════════════════════
   1. SECONDARY HEADER (Reference: #header-secondary-outer)
   Phone strip with icons
   ══════════════════════════════════════════════ */
.top-bar {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0;
  height: var(--header-secondary-height);
  display: flex;
  align-items: center;
  font-size: var(--fs-small);
  position: relative;
  z-index: var(--z-header);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.top-bar-left a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 14px;
  transition: color 0.2s ease;
}

.top-bar-left a:hover { color: var(--color-highlight); }

.top-bar-left a i {
  font-size: 14px;
  color: var(--color-highlight);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.top-bar-text {
  font-weight: var(--fw-bold);
  font-size: 13px;
  color: var(--color-highlight-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════════════════════════════════════════
   2. MAIN NAVBAR (Reference: header#top)
   Sticky, white bg, logo left, menu right
   ══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: var(--header-secondary-height);
  left: 0;
  right: 0;
  height: 100px;
  z-index: var(--z-header);
  background: var(--color-white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  height: 90px;
  width: 200px;
  object-fit: cover;
  object-position: center;
  transition: height 0.3s ease;
}

.navbar.scrolled {
  height: 70px;
  box-shadow: var(--shadow-lg);
  background: rgba(255,255,255,0.98);
}

.navbar.scrolled .navbar-brand img { height: 60px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu a {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  position: relative;
  transition: color 0.2s ease;
  text-transform: capitalize;
}

/* Reference: animated_underline hover effect */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.nav-menu a:hover,
.nav-menu a.active { color: var(--color-primary); }

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 13px;
  background: var(--color-red);
  color: white;
  border-radius: var(--radius-xl) 0 var(--radius-lg) 0;
  font-weight: var(--fw-bold);
  border: 3px solid #000;
  border-bottom: 4px solid #0e0d0d;
  transition: all 0.2s ease;
}

.nav-cta .btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: calc(var(--z-header) + 10);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--color-white);
  z-index: var(--z-modal);
  padding: 80px 25px 25px;
  transition: right 0.35s ease;
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}
.mobile-menu.active { right: 0; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-light-gray);
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--color-primary); }

.mobile-menu-contact {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 2px solid var(--color-light-gray);
}

.mobile-menu-contact a {
  border-bottom: none;
  color: var(--color-primary);
  font-size: 15px;
  padding: 8px 0;
}

/* ══════════════════════════════════════════════
   3. HERO SLIDER (Collage Layout)
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 65vh;
  min-height: 400px;
  max-height: 800px;
  overflow: hidden;
  margin-top: var(--header-total-height);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active { opacity: 1; z-index: 2; }

/* Image panel layout */
.hero-slide .hero-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide .hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Gradient overlay - left side darker for text */
.hero-slide .hero-text-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 var(--container-padding);
}

.hero-slide .hero-text-overlay h1 {
  color: var(--color-white);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  max-width: 50%;
  text-shadow: 2px 2px 5px #000;
  line-height: var(--lh-tight);
  animation: fadeInUp 0.6s ease both;
  margin: 0;
}

/* Legacy cleanup */
.hero-slide .overlay, .hero-slide .slide-content { display: none; }

/* Hero navigation dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.hero-dot.active {
  background: var(--color-white);
  border-color: var(--color-white);
  transform: scale(1.2);
}


/* ══════════════════════════════════════════════
   4. WELCOME / INTRO SECTION
   (Reference: centered text block after hero)
   ══════════════════════════════════════════════ */
.welcome-section {
  padding: 20px 0;
  text-align: center;
  background-image: url('');
  background-position: left top;
  background-repeat: no-repeat;
}

.welcome-section h2 {
  color: var(--color-primary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-5);
}

.welcome-section p {
  max-width: 900px;
  margin: 0 auto var(--space-4);
  font-size: var(--fs-body);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════════════
   5. TRUST + PROGRESS BARS SECTION
   (Reference: 6-col left image + 6-col right cards/bars)
   ══════════════════════════════════════════════ */
.trust-section {
  padding: 20px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.trust-image img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.trust-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* Reference: 2px solid #155a7e, border-radius 10-15px, small shadow, white bg */
.trust-card {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.trust-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.trust-card i {
  font-size: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-card h3 {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin: 0;
  line-height: 1.3;
}

/* Progress Bars (Reference: nectar-progress-bar) */
.progress-bar-wrap {
  margin-bottom: var(--space-5);
}

.progress-bar-wrap p {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.progress-bar-track {
  width: 100%;
  height: 22px;
  background: var(--color-light-gray);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: var(--gradient-bar);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s ease-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

.progress-bar-fill strong {
  font-size: 12px;
  color: var(--color-white);
  font-weight: var(--fw-bold);
}

/* ══════════════════════════════════════════════
   6. CTA STRIP (Reference: teal bg + bg image + yellow heading + marquee)
   ══════════════════════════════════════════════ */
.cta-strip {
  background-color: var(--color-primary);
  background-image: url('');
  background-size: cover;
  background-position: center;
  padding: 25px 0 45px;
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}

.cta-strip .cta-strip-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  color: var(--color-yellow);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-3);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.cta-strip h3 {
  color: var(--color-white);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-6);
}

/* Scrolling marquee CTA */
.cta-marquee {
  overflow: hidden;
  padding: var(--space-3) 0;
}

.cta-marquee-track {
  display: flex;
  animation: marqueeScroll 20s linear infinite;
  white-space: nowrap;
}

.cta-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 30px;
  background: var(--color-red);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: 16px;
  border: 3px solid #000;
  border-radius: var(--radius-xl) 0 var(--radius-lg) 0;
  border-bottom: 4px solid #0e0d0d;
  margin: 0 10px;
  flex-shrink: 0;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-marquee-item:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.cta-marquee-item i { font-size: 18px; }

/* ══════════════════════════════════════════════
   7. SERVICE CARDS (Reference: bordered cards)
   5px solid #155a7e, 15px radius, image+title+desc+buttons
   ══════════════════════════════════════════════ */
.services-section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-header h2 {
  color: var(--color-primary);
  font-size: var(--fs-h2);
  margin-bottom: var(--space-3);
}

.section-header p {
  color: var(--color-gray-400);
  font-size: var(--fs-body);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: var(--color-white);
  border: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

/* Gradient overlay on image */
.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21,90,126,0.15) 100%);
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-image::after { opacity: 0; }

.service-card-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  text-align: center;
}

.service-card-body h3 {
  font-size: var(--fs-h4);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  font-weight: var(--fw-bold);
}

.service-card-body p {
  font-size: var(--fs-small);
  color: var(--color-gray-500);
  margin-bottom: var(--space-5);
  line-height: var(--lh-relaxed);
}

/* Highlighted text in description */
.service-card-body .hl {
  background-image: linear-gradient(to right, var(--color-highlight) 0, var(--color-highlight) 100%);
  background-repeat: no-repeat;
  background-position: 0 88%;
  background-size: 100% 35%;
  padding: 0 2px;
  font-weight: var(--fw-bold);
}

.service-card-buttons {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}

/* Reference-style buttons: red bg, border-radius 20px 0 15px 0 */
.btn-read-more {
  padding: 8px 18px;
  background: var(--color-red);
  color: white;
  border-radius: var(--radius-xl) 0 var(--radius-lg) 0;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: 3px solid #000;
  border-bottom: 4px solid #0e0d0d;
}

.btn-read-more:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.btn-call-card {
  padding: 8px 18px;
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-xl) 0 var(--radius-lg) 0;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  border: 3px solid #000;
  border-bottom: 4px solid #0e0d0d;
}

.btn-call-card:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   8. EXCLUSIVE PRODUCTS (Same card style)
   ══════════════════════════════════════════════ */
.exclusive-section {
  padding: var(--section-padding) 0;
  background: var(--color-off-white);
}

/* ══════════════════════════════════════════════
   9. GALLERY
   ══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card-hover);
}

.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 .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21,90,126,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  font-size: 28px;
  color: var(--color-white);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

/* ══════════════════════════════════════════════
   10. TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section {
  background: var(--color-primary);
  color: #fff;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.testimonials-section .section-header h2 { color: #fff; }

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  margin: 0 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 2px solid rgba(255,255,255,0.15);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--color-highlight);
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.testimonial-card .stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.testimonial-card .stars i { font-size: 14px; }

.testimonial-card .review-text {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-5);
  font-style: italic;
}

.testimonial-author h5 { font-size: 15px; color: #fff; font-weight: var(--fw-bold); }
.testimonial-author p { font-size: var(--fs-xs); color: var(--color-highlight); margin: 0; }

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.testimonials-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
}

.testimonials-controls button:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* ══════════════════════════════════════════════
   11. TICKER / RECENT WORKS CAROUSEL
   ══════════════════════════════════════════════ */
.ticker-section {
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: var(--color-off-white);
}

.ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  gap: var(--space-4);
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  flex-shrink: 0;
  width: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}

.ticker-item:hover {
  border-color: var(--color-accent);
  transform: scale(1.03);
}

.ticker-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ══════════════════════════════════════════════
   12. AREAS / LOCATIONS
   ══════════════════════════════════════════════ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: var(--space-3);
}

.location-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--color-dark);
  transition: all 0.2s ease;
  cursor: pointer;
}

.location-card:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.location-card i { color: var(--color-accent); font-size: 14px; }

/* ══════════════════════════════════════════════
   13. FAQ ACCORDION
   ══════════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover { border-color: var(--color-primary); }
.faq-item.active { border-color: var(--color-primary); box-shadow: var(--shadow-card); }

.faq-question {
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
  font-weight: var(--fw-bold);
  font-size: var(--fs-body);
  color: var(--color-dark);
  background: none;
  width: 100%;
  text-align: left;
}

.faq-item.active .faq-question { color: var(--color-primary); }

.faq-question .faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--color-gray-400);
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 400px; }

.faq-answer-content {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--fs-body);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

/* ══════════════════════════════════════════════
   14. CONTACT
   ══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 { color: var(--color-primary); margin-bottom: var(--space-2); }
.contact-form-wrapper > p { color: var(--color-gray-400); margin-bottom: var(--space-6); }

.form-group { margin-bottom: var(--space-4); }

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-sm);
  background: var(--color-off-white);
  color: var(--color-dark);
  font-size: var(--fs-body);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  background: var(--color-white);
  outline: none;
}

.form-group textarea { min-height: 90px; resize: vertical; }

.contact-info-card {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  color: #fff;
}

.contact-info-list { display: flex; flex-direction: column; gap: var(--space-5); margin-bottom: var(--space-6); }

.contact-info-item { display: flex; gap: var(--space-3); }

.contact-info-item .info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-info-item .info-label {
  font-size: var(--fs-xs);
  color: var(--color-highlight);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
}

.contact-info-item .info-value { font-size: var(--fs-body); font-weight: var(--fw-semibold); }
.contact-info-item .info-value a { color: #fff; }

.contact-map { margin-top: var(--space-6); border-radius: var(--radius-md); overflow: hidden; }
.contact-map iframe { width: 100%; height: 180px; border: none; }

/* ══════════════════════════════════════════════
   15. PAGE BANNER (Inner pages)
   ══════════════════════════════════════════════ */
.page-banner {
  position: relative;
  padding: calc(var(--header-total-height) + var(--space-12)) 0 var(--space-12);
  background: var(--color-primary);
  text-align: center;
  overflow: hidden;
}

.page-banner h1 {
  color: #fff;
  font-size: var(--fs-display);
  margin-bottom: var(--space-3);
  text-shadow: 2px 2px 5px #000;
}

.page-banner p { color: rgba(255,255,255,0.85); font-size: var(--fs-body-lg); max-width: 600px; margin: 0 auto; }

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-size: var(--fs-small);
}

.breadcrumbs a { color: var(--color-highlight); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .separator { color: rgba(255,255,255,0.4); }
.breadcrumbs .current { color: #fff; font-weight: var(--fw-bold); }

/* ══════════════════════════════════════════════
   16. ABOUT SECTION
   ══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.about-content h2 { color: var(--color-primary); margin-bottom: var(--space-5); }
.about-content p { margin-bottom: var(--space-3); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-3);
  border: 2px solid var(--color-gray-100);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.about-feature:hover { border-color: var(--color-primary); }

.about-feature i { color: var(--color-accent); font-size: 18px; }
.about-feature span { font-weight: var(--fw-semibold); font-size: var(--fs-small); }

/* ══════════════════════════════════════════════
   17. FEATURES / WHY CHOOSE US
   ══════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.feature-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-accent);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(21,90,126,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon { background: var(--color-primary); }
.feature-card .feature-icon i { font-size: 24px; color: var(--color-primary); transition: color 0.3s ease; }
.feature-card:hover .feature-icon i { color: #fff; }

.feature-card h4 { font-size: 15px; color: var(--color-primary); margin-bottom: var(--space-2); }
.feature-card p { font-size: var(--fs-small); color: var(--color-gray-400); margin: 0; }

/* ══════════════════════════════════════════════
   18. FOOTER (Reference: dark bg, BIG owner photo, all service links)
   ══════════════════════════════════════════════ */
.footer {
  background: #0a1628;
  color: var(--color-gray-300);
  padding-top: var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 3px;
}

/* Column 1: About Company with BIG owner photo */
.footer-about h4 { margin-bottom: var(--space-5); }

.footer-owner-photo {
  width: 100%;
  max-width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-5);
  border: 4px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.footer-owner-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top;
}

.footer-owner-info {
  margin-top: var(--space-3);
}

.footer-owner-info .owner-label {
  font-size: var(--fs-small);
  color: var(--color-highlight);
  font-weight: var(--fw-bold);
  margin-bottom: 2px;
}

.footer-owner-info .owner-name {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: #fff;
  font-style: italic;
}

.footer-contact-title {
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: #fff;
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-contact-links a {
  color: var(--color-gray-300);
  font-size: var(--fs-small);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-contact-links a i {
  color: var(--color-highlight);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.footer-contact-links a:hover {
  color: var(--color-highlight);
  transform: translateX(3px);
}

/* Column 2: Useful Links (all services) */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  color: var(--color-gray-300);
  font-size: 13px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
}

.footer-links a::before {
  content: '▸';
  color: var(--color-accent);
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--color-highlight);
  transform: translateX(3px);
}

/* Column 3: Office Address */
.footer-address h5 {
  font-size: 15px;
  color: #fff;
  margin-bottom: var(--space-2);
  font-weight: var(--fw-bold);
}

.footer-address p {
  font-size: var(--fs-small);
  color: var(--color-gray-300);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-5);
}

.footer-address strong {
  color: var(--color-highlight);
}

/* Column 4: Quick Links + Map */
.footer-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-4);
  border: 2px solid rgba(255,255,255,0.1);
}

.footer-map iframe {
  width: 100%;
  height: 150px;
  border: none;
}

/* Copyright */
.footer-bottom {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  background: rgba(0,0,0,0.3);
  margin-top: 0;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.footer-bottom p { font-size: var(--fs-xs); color: var(--color-gray-400); margin: 0; }
.footer-bottom-links { display: flex; gap: var(--space-5); }
.footer-bottom-links a { font-size: var(--fs-xs); color: var(--color-gray-400); }
.footer-bottom-links a:hover { color: var(--color-highlight); }

/* ══════════════════════════════════════════════
   19. FLOATING CALL + WHATSAPP (Reference: right-side animated)
   Like reference screenshot: icons fixed on right, slide in/out
   ══════════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Call button - red with ring animation */
.float-btn-call {
  background: #E54F3E;
  animation: floatBtnRing 1.5s ease-in-out infinite;
}

.float-btn-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #E54F3E;
  animation: ringPulse 1.5s ease-out infinite;
}

.float-btn-call::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(229,79,62,0.4);
  animation: ringPulse 1.5s ease-out infinite 0.3s;
}

/* WhatsApp button - green with pulse */
.float-btn-whatsapp {
  background: #25d366;
  animation: floatBtnPulse 2s ease-in-out infinite;
}

.float-btn-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid #25d366;
  animation: ringPulse 2s ease-out infinite;
}

.float-btn-whatsapp::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: ringPulse 2s ease-out infinite 0.4s;
}

.float-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.float-btn i {
  position: relative;
  z-index: 2;
}

/* Tooltip on hover */
.float-btn .float-tooltip {
  position: absolute;
  right: 65px;
  background: #333;
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: var(--fw-bold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  transform: translateX(10px);
}

.float-btn .float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile bottom CTA bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-float);
  background: #fff;
  padding: 8px 12px;
  box-shadow: 0 -3px 15px rgba(0,0,0,0.15);
  border-top: 3px solid var(--color-primary);
}

.mobile-cta-inner { display: flex; gap: 8px; }

.mobile-cta-inner a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  transition: all 0.2s ease;
}

.mobile-cta-inner .cta-call {
  background: var(--color-red);
  color: #fff;
  animation: mobileCtaPulse 2s ease-in-out infinite;
}

.mobile-cta-inner .cta-whatsapp {
  background: #25d366;
  color: #fff;
}

/* ══════════════════════════════════════════════
   20. CTA GREEN SECTION
   ══════════════════════════════════════════════ */
.cta-green-section {
  background: var(--color-accent);
  padding: var(--section-padding) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-green-section h2 { color: #fff; margin-bottom: var(--space-3); }
.cta-green-section p { color: rgba(255,255,255,0.9); font-size: var(--fs-body-lg); max-width: 550px; margin: 0 auto var(--space-6); }

.cta-buttons { display: flex; justify-content: center; gap: var(--space-3); flex-wrap: wrap; }

/* General button styles */
.btn-primary-solid {
  padding: 12px 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-xl) 0 var(--radius-lg) 0;
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  border: 3px solid #000;
  border-bottom: 4px solid #0e0d0d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-primary-solid:hover { background: var(--color-primary-dark); transform: translateY(-2px); }

.btn-whatsapp-solid {
  padding: 12px 28px;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-xl) 0 var(--radius-lg) 0;
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  border: 3px solid #000;
  border-bottom: 4px solid #0e0d0d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-whatsapp-solid:hover { background: #1ebf5a; transform: translateY(-2px); }

.btn-call-solid {
  padding: 12px 28px;
  background: var(--color-red);
  color: #fff;
  border-radius: var(--radius-xl) 0 var(--radius-lg) 0;
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  border: 3px solid #000;
  border-bottom: 4px solid #0e0d0d;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-call-solid:hover { background: #c13a2d; transform: translateY(-2px); }

.btn-outline-white {
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-bold);
  font-size: var(--fs-small);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-outline-white:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* ══════════════════════════════════════════════
   21. COLORFUL ACCENTS & EXTRAS
   ══════════════════════════════════════════════ */

/* Colorful top border on sections */
.services-section { border-top: 4px solid var(--color-accent); }
.exclusive-section { border-top: 4px solid var(--color-primary); }
.testimonials-section { border-top: 4px solid var(--color-yellow); }

/* Colorful section headers with underline */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-bar);
  margin: var(--space-3) auto 0;
  border-radius: 4px;
}

/* Service card colorful top border */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-bar);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Rainbow border on hover for service cards */
.service-card:hover {
  border-image: linear-gradient(135deg, var(--color-primary), var(--color-accent), var(--color-highlight)) 1;
  border-image-slice: 1;
}

/* Colorful CTA strip background pattern */
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.03) 30px,
    rgba(255,255,255,0.03) 60px
  );
  z-index: 1;
}

/* Colorful page banner gradient */
.page-banner {
  background: linear-gradient(135deg, #0e4562 0%, #155a7e 40%, #1a7aa8 100%) !important;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
}

/* ══════════════════════════════════════════════
   22. UTILITY
   ══════════════════════════════════════════════ */
.section { padding: var(--section-padding) 0; }
.section-gray { background: var(--color-off-white); }
.w-full { width: 100%; }
.text-center { text-align: center; }
.card {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.card:hover { transform: translateY(-4px); border-color: var(--color-accent); box-shadow: var(--shadow-card-hover); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.45s; }

/* ══════════════════════════════════════════════
   CHATBOT WIDGET (Reference: "We are here! Let's Chat...")
   ══════════════════════════════════════════════ */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: var(--z-float);
}

/* Toggle button */
.chatbot-toggle {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: chatBounce 2s ease infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.chatbot-icon-close { display: none; font-size: 24px; }

/* When popup is active, swap icons */
.chatbot-popup.active ~ .chatbot-toggle .chatbot-icon-open { display: none; }
.chatbot-popup.active ~ .chatbot-toggle .chatbot-icon-close { display: block; }
.chatbot-popup.active ~ .chatbot-toggle { animation: none; }

/* Chat label bubble */
.chatbot-label {
  position: absolute;
  right: 70px;
  bottom: 5px;
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px 20px 5px 20px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  animation: chatLabelBounce 3s ease infinite;
  pointer-events: none;
  line-height: 1.3;
}

/* Badge */
.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: #E54F3E;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  animation: badgePulse 2s ease infinite;
}

/* Chat Popup */
.chatbot-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 340px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s ease;
}

.chatbot-popup.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header */
.chatbot-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}

.chatbot-name {
  font-weight: 700;
  font-size: 14px;
}

.chatbot-status {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  display: inline-block;
  animation: statusPulse 1.5s ease infinite;
}

.chatbot-close-btn {
  margin-left: auto;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}

.chatbot-close-btn:hover { background: rgba(255,255,255,0.35); }

/* Body */
.chatbot-body {
  padding: 18px;
  background: #e5ddd5 url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 240 240"><path d="M-10 230 L230 -10" stroke="%23d4ccbc" stroke-width="0.5"/></svg>') repeat;
  background-size: 50px;
}

.chatbot-msg {
  background: white;
  padding: 14px 16px;
  border-radius: 0 16px 16px 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  font-size: 14px;
  line-height: 1.5;
}

.chatbot-msg p { margin: 0 0 6px; }
.chatbot-msg p:last-child { margin-bottom: 0; }

/* Quick replies */
.chatbot-quick-replies {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.chatbot-quick-replies a {
  display: block;
  padding: 10px 14px;
  background: white;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: all 0.2s ease;
}

.chatbot-quick-replies a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-1px);
}

/* Footer */
.chatbot-footer {
  padding: 14px 18px;
  background: #f0f0f0;
}

.chatbot-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #25d366;
  color: white;
  font-weight: 700;
  font-size: 14px;
  border-radius: 30px;
  width: 100%;
  transition: all 0.2s ease;
}

.chatbot-start-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* Chatbot animations */
@keyframes chatBounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-3px); }
}

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

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Mobile chatbot adjustments */
@media (max-width: 768px) {
  .chatbot-widget { bottom: 75px; right: 10px; }
  .chatbot-toggle { width: 52px; height: 52px; font-size: 26px; }
  .chatbot-label { font-size: 11px; right: 62px; padding: 6px 12px; }
  .chatbot-badge { width: 18px; height: 18px; font-size: 10px; }
  .chatbot-popup { width: calc(100vw - 30px); right: -5px; }
}
