/* ============================================================
   Taurus Hardwood Floors — Frontend Stylesheet
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --primary:    #8B6914;
  --secondary:  #1a1a1a;
  --accent:     #C9A84C;
  --light-bg:   #f9f6f0;
  --dark-bg:    #111111;
  --text-dark:  #1a1a1a;
  --text-muted: #6c757d;
  --white:      #ffffff;
  --border:     #e0d6c2;
  --shadow:     0 8px 30px rgba(0,0,0,.12);
  --radius:     8px;
  --transition: all .3s ease;
  --font-main:  'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-head:  Georgia, 'Times New Roman', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
p { margin-bottom: 1rem; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Utility ---- */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }
.bg-light-warm { background: var(--light-bg); }
.bg-dark-wood { background: var(--dark-bg); }
.text-primary-custom { color: var(--primary) !important; }
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  padding: .6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,105,20,.35); }
.btn-outline-light:hover { background: var(--primary); border-color: var(--primary); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--secondary);
  margin-bottom: .5rem;
}
.section-subtitle {
  color: var(--primary);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 1rem auto 2rem;
  border-radius: 3px;
}
.section-divider.left { margin-left: 0; }

/* ---- Sticky Navbar ---- */
#mainNav {
  background: transparent;
  padding: 1.2rem 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
  z-index: 1050;
}
#mainNav.scrolled {
  background: rgba(17,17,17,.97);
  padding: .6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.navbar-brand .brand-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,.9);
  font-weight: 500;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active { color: var(--accent); }
.nav-cta { font-weight: 600 !important; }

/* ---- Hero Slider ---- */
.hero-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 560px;
}
.hero-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.hero-slide-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide-content {
  max-width: 860px;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: .4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-slide-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Swiper nav buttons — custom gold style */
.hero-prev, .hero-next {
  color: var(--white) !important;
  background: rgba(139,105,20,.65);
  width: 52px !important;
  height: 52px !important;
  border-radius: 50%;
  transition: background .3s;
}
.hero-prev:hover, .hero-next:hover { background: var(--primary) !important; }
.hero-prev::after, .hero-next::after { font-size: 1.1rem !important; font-weight: 900; }

/* Swiper pagination dots */
.hero-pagination { bottom: 60px !important; }
.hero-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,.55);
  opacity: 1;
  width: 10px; height: 10px;
  transition: background .3s, transform .3s;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.4);
}

/* Scroll arrow */
.hero-scroll-arrow {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
.hero-scroll-arrow a, .scroll-down-link { color: rgba(255,255,255,.7); }
.hero-scroll-arrow a:hover { color: var(--primary); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ---- Legacy hero classes kept for other pages ---- */
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px; padding: 0 1rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-content p { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.88); margin-bottom: 2rem; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--secondary);
  padding: 40px 0;
}
.stat-item {
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-top: .5rem;
  letter-spacing: 1px;
}

/* ---- Feature Cards (Why Choose Us) ---- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}
.feature-icon {
  width: 70px; height: 70px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}
.feature-card h4 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; color: var(--text-muted); margin: 0; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-img { height: 200px; overflow: hidden; background: var(--light-bg); }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-icon {
  width: 50px; height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.service-card h4 { font-size: 1.15rem; margin-bottom: .6rem; }
.service-card p { font-size: .9rem; color: var(--text-muted); flex: 1; }
.service-card .btn { align-self: flex-start; }

/* ---- Before / After Comparison ---- */
.before-after-section { background: var(--light-bg); }
.comparison-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  user-select: none;
}
.comparison-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.comparison-before { position: absolute; top:0; left:0; width:100%; height:100%; }
.comparison-after  { position: relative; z-index:1; }
.comparison-before img { width: 50%; height: 100%; object-fit: cover; position: absolute; top:0; left:0; clip-path: inset(0 50% 0 0); }
.comparison-slider-track {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 380px;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  touch-action: none;
}
.comparison-img-after,
.comparison-img-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.comparison-img-before { clip-path: inset(0 0 0 50%); z-index: 1; }
.comparison-divider {
  position: absolute;
  top: 0; left: 50%;
  width: 3px;
  height: 100%;
  background: var(--white);
  z-index: 2;
  transform: translateX(-50%);
}
.comparison-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  z-index: 3;
  color: var(--primary);
  font-size: 1rem;
}
.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0,0,0,.55);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 3px;
  z-index: 4;
}
.ba-label.before { left: 12px; }
.ba-label.after  { right: 12px; }

/* ---- Gallery Grid ---- */
.gallery-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--light-bg);
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  text-align: center;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h5 { font-size: 1rem; margin-bottom: .3rem; }
.gallery-item-overlay p { font-size: .8rem; opacity: .85; margin: 0; }
.gallery-item-overlay .gallery-zoom {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: .8rem;
  transition: var(--transition);
}
.gallery-item-overlay .gallery-zoom:hover { background: var(--accent); }

/* Gallery Filter Buttons */
.gallery-filter .btn { margin: .25rem; border-radius: 50px; }
.gallery-filter .btn-primary { background: var(--primary); border-color: var(--primary); }
.gallery-filter .btn-outline-secondary:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-item.hidden { display: none; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--light-bg); }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--primary);
  opacity: .15;
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 20px;
}
.testimonial-text { font-style: italic; color: var(--text-muted); margin-bottom: 1.2rem; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  background: var(--light-bg);
  flex-shrink: 0;
}
.testimonial-photo-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .95rem; margin-bottom: .1rem; }
.testimonial-role { font-size: .82rem; color: var(--text-muted); }
.stars .fa-star, .stars .far.fa-star { font-size: .85rem; }

/* Swiper Testimonials */
.swiper-testimonials { padding-bottom: 50px !important; }
.swiper-testimonials .swiper-pagination-bullet-active { background: var(--primary); }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card-img { height: 210px; overflow: hidden; background: var(--light-bg); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: .6rem; }
.blog-card-meta span { margin-right: .8rem; }
.blog-card h4 { font-size: 1.05rem; margin-bottom: .6rem; line-height: 1.3; }
.blog-card h4 a { color: var(--text-dark); }
.blog-card h4 a:hover { color: var(--primary); }
.blog-card p { font-size: .88rem; color: var(--text-muted); flex: 1; }
.blog-card .read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: .5rem;
}
.blog-card .read-more:hover { color: var(--accent); }

/* ---- Page Hero Banner ---- */
.page-hero {
  background: linear-gradient(135deg, rgba(17,17,17,.85) 0%, rgba(26,26,26,.75) 100%),
              var(--light-bg);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: .5rem; }
.page-hero .breadcrumb { justify-content: center; background: transparent; padding: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item.active { color: var(--accent); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ---- Contact Form ---- */
.contact-section .form-control, .contact-section .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  transition: var(--transition);
}
.contact-section .form-control:focus, .contact-section .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,105,20,.15);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h6 { font-weight: 700; margin-bottom: .2rem; }
.contact-info-text p { margin: 0; color: var(--text-muted); font-size: .9rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #2d2208 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.5rem, 3vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }

/* ---- Process Steps ---- */
.process-step { text-align: center; position: relative; }
.process-number {
  width: 70px; height: 70px;
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 1.2rem;
  background: var(--white);
  font-family: var(--font-head);
  transition: var(--transition);
}
.process-step:hover .process-number {
  background: var(--primary);
  color: var(--white);
}
.process-connector {
  position: absolute;
  top: 35px;
  left: calc(50% + 35px);
  right: calc(-50% + 35px);
  height: 3px;
  background: var(--border);
  z-index: 0;
}

/* ---- FAQ Accordion ---- */
.accordion-item { border: 1px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: .5rem; overflow: hidden; }
.accordion-button { font-weight: 600; }
.accordion-button:not(.collapsed) { background: var(--light-bg); color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(139,105,20,.15); }

/* ---- About / Team ---- */
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary);
  margin: 0 auto 1rem;
  background: var(--light-bg);
}
.team-photo-placeholder {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin: 0 auto 1rem;
}
.team-card h5 { margin-bottom: .2rem; }
.team-card .team-role { color: var(--primary); font-size: .88rem; font-weight: 600; }

/* ---- Blog Single ---- */
.blog-single-header { padding: 120px 0 50px; background: var(--light-bg); }
.blog-content { font-size: 1.05rem; line-height: 1.85; }
.blog-content h2 { font-size: 1.5rem; color: var(--secondary); margin: 2rem 0 .8rem; }
.blog-content h3 { font-size: 1.25rem; color: var(--secondary); margin: 1.5rem 0 .6rem; }
.blog-content ul, .blog-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-content ul li, .blog-content ol li { margin-bottom: .4rem; }
.blog-content p { margin-bottom: 1.2rem; }
.blog-content strong { color: var(--secondary); }
.blog-sidebar .card { border: 1px solid var(--border); border-radius: var(--radius); }
.blog-sidebar .card-title { font-size: 1rem; font-weight: 700; border-bottom: 2px solid var(--primary); padding-bottom: .5rem; margin-bottom: 1rem; }
.share-buttons .btn { margin-right: .4rem; margin-bottom: .4rem; border-radius: 50px; font-size: .85rem; }

/* ---- Map Embed ---- */
.map-container iframe { border-radius: var(--radius); }

/* ---- Footer ---- */
.site-footer { background: var(--dark-bg); color: rgba(255,255,255,.8); }
.footer-top { padding: 60px 0 40px; }
.footer-logo-text { font-family: var(--font-head); color: var(--white); font-size: 1.3rem; margin-bottom: .6rem; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-heading {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: .6rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px; height: 2px;
  background: var(--primary);
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .8rem; font-size: .88rem; }
.footer-contact li i { color: var(--primary); margin-top: .25rem; width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--accent); }
.footer-social { display: flex; gap: .5rem; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-newsletter .form-control { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--white); font-size: .88rem; }
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter .form-control:focus { background: rgba(255,255,255,.15); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  font-size: .84rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--accent); }

/* ---- Cookie Bar ---- */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--secondary);
  color: rgba(255,255,255,.9);
  padding: 1rem 0;
  z-index: 9999;
  border-top: 3px solid var(--primary);
  font-size: .88rem;
}

/* ---- Floating Buttons ---- */
.float-whatsapp, .float-quote {
  position: fixed;
  right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(0,0,0,.3);
  z-index: 999;
  transition: var(--transition);
}
.float-whatsapp {
  bottom: 20px;
  background: #25D366;
  color: var(--white);
}
.float-whatsapp:hover { background: #1ebe57; transform: scale(1.1); color: var(--white); }
.float-quote {
  bottom: 82px;
  background: var(--primary);
  color: var(--white);
}
.float-quote:hover { background: var(--accent); transform: scale(1.1); color: var(--white); }

/* ---- Scroll Top Button ---- */
.scroll-top-btn {
  position: fixed;
  bottom: 150px;
  right: 22px;
  width: 44px; height: 44px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,.25);
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--primary); transform: translateY(-2px); }

/* ---- Alert / Flash ---- */
.alert-flash { position: fixed; top: 80px; right: 20px; z-index: 9999; min-width: 280px; animation: slideIn .3s ease; }
@keyframes slideIn { from { opacity:0; transform: translateX(40px); } to { opacity:1; transform: translateX(0); } }

/* ---- AOS Overrides ---- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .section-padding { padding: 65px 0; }
}

@media (max-width: 991px) {
  .section-padding { padding: 55px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 1.5rem; }
  .stat-item:last-child { border-bottom: none; }
  .process-connector { display: none; }
  .gallery-item img { height: 180px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 45px 0; }
  .hero-section { min-height: 100svh; }
  .hero-btns { flex-direction: column; align-items: center; }
  .page-hero { padding: 100px 0 40px; }
  .footer-heading::after { display: none; }
  .float-whatsapp { bottom: 16px; right: 16px; }
  .float-quote { bottom: 76px; right: 16px; }
  .scroll-top-btn { bottom: 140px; right: 18px; }
  .comparison-slider-track { height: 240px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .stats-bar .row > div:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 1.2rem; }
}
