/* Premium CSS Design System for Habib Sofa Repair */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #f97316; /* High-converting Amber/Orange CTA */
  --primary-hover: #ea580c;
  --primary-light: #fff7ed; /* Very light orange tint */
  --dark-bg: #1e1b4b; /* Deep Premium Indigo/Navy (Trust & Authority) */
  --dark-surface: #312e81;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --white: #ffffff;
  --whatsapp-color: #25d366;
  --call-color: #0ea5e9; /* Sky Blue Call Button */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(30, 27, 75, 0.15), 0 10px 10px -5px rgba(30, 27, 75, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: #fcfcfd;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-bg);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* --- Navigation Bar --- */
.custom-navbar {
  background-color: var(--white);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: var(--transition-smooth);
  z-index: 1000;
}

.custom-navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  max-height: 48px;
  width: auto;
  transition: var(--transition-smooth);
}

.custom-navbar.scrolled .logo-img {
  max-height: 40px;
}

.navbar-nav .nav-link {
  color: var(--text-main) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
  background-color: var(--primary-light);
}

/* Contact Info in Nav */
.nav-contact-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: var(--white) !important;
  font-weight: 600;
  border-radius: 30px;
  padding: 8px 20px !important;
  box-shadow: 0 4px 10px rgba(191, 161, 95, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-contact-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(191, 161, 95, 0.4);
  color: var(--white) !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  padding: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-bg);
  position: relative;
  transition: var(--transition-smooth);
}

.toggler-icon::before,
.toggler-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--dark-bg);
  transition: var(--transition-smooth);
}

.toggler-icon::before {
  top: -6px;
}

.toggler-icon::after {
  top: 6px;
}

/* --- Hero Banner --- */
.hero-main {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.97) 40%, rgba(15, 23, 42, 0.8) 100%),
              url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
  padding: 180px 0 100px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(191, 161, 95, 0.15);
  border: 1px solid rgba(191, 161, 95, 0.3);
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-main h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-main h1 span {
  color: var(--primary-color);
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 30px;
  max-width: 90%;
}

.hero-points {
  list-style: none;
  margin-bottom: 35px;
}

.hero-points li {
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-points li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(191, 161, 95, 0.4);
  transition: var(--transition-smooth);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(191, 161, 95, 0.5);
}

.btn-whatsapp-custom {
  background-color: var(--whatsapp-color);
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-whatsapp-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.hero-trust {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- Hero Inquiry Form Card --- */
.hero-form-card {
  background-color: var(--white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(191, 161, 95, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
}

.hero-form-card h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
  font-weight: 700;
}

.form-subtext {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 25px;
}

.form-group-custom {
  margin-bottom: 18px;
}

.form-group-custom label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--dark-bg);
  background-color: #f8fafc;
  transition: var(--transition-smooth);
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(191, 161, 95, 0.15);
}

.btn-submit-custom {
  background: var(--dark-bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

.btn-submit-custom:hover {
  background: var(--primary-color);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(191, 161, 95, 0.3);
}

.offer-badge-pill {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ef4444;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  animation: pulse-red 2s infinite;
}

/* --- Section Layouts --- */
.section-padding {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header span {
  color: var(--primary-color);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* --- Services Grid --- */
.service-card-premium {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}

.service-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-card-body {
  padding: 24px;
  flex-grow: 1;
}

.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 700;
  color: #1e1b4b; /* Indigo/navy */
}

.service-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.service-card-actions {
  display: flex;
  width: 100%;
  border-top: 1px solid #f1f5f9;
  overflow: hidden;
}

.service-card-actions a {
  flex: 1;
  text-align: center;
  padding: 14px 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.btn-card-whatsapp {
  background-color: var(--whatsapp-color);
}

.btn-card-whatsapp:hover {
  background-color: #20ba5a;
  color: var(--white);
}

.btn-card-enquiry {
  background-color: var(--primary-color);
}

.btn-card-enquiry:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

.btn-card-call {
  background-color: var(--dark-bg);
}

.btn-card-call:hover {
  background-color: #12102f;
  color: var(--white);
}

/* --- How It Works Section --- */
.process-card-premium {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
}

.process-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}

.process-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(30, 27, 75, 0.08);
  transition: var(--transition-smooth);
}

.process-card-premium:hover .process-number {
  color: rgba(249, 115, 22, 0.15);
}

.process-icon-box {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.8rem;
  transition: var(--transition-smooth);
  border: 1px dashed rgba(249, 115, 22, 0.3);
}

.process-card-premium:hover .process-icon-box {
  background-color: var(--primary-color);
  color: var(--white);
  border-style: solid;
  transform: rotateY(180deg);
}

.process-card-premium h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-bg);
}

.process-card-premium p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* --- Why Choose Us Section --- */
.why-section {
  background-color: var(--primary-light);
}

.why-card {
  display: flex;
  gap: 20px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

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

.why-icon-box {
  background: var(--dark-bg);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.why-info h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.why-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* --- Gallery & Creatives --- */
.gallery-filters {
  background-color: var(--primary-light);
  border: 1px solid rgba(249, 115, 22, 0.1);
  padding: 8px;
  border-radius: 50px;
}

.btn-filter {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  padding: 10px 24px;
  border-radius: 40px;
  border: none;
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-filter:hover,
.btn-filter.active {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-card-premium {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #f1f5f9;
  transition: var(--transition-smooth);
  height: 100%;
}

.gallery-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.2);
}

.gallery-image-box {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.gallery-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-card-premium:hover .gallery-image-box img {
  transform: scale(1.08);
}

.gallery-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--dark-bg);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.gallery-meta-box {
  padding: 20px;
}

.gallery-meta-box p {
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.gallery-meta-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 12px;
}

.location-tag {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-tag i {
  color: var(--primary-color);
}

.gallery-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.8);
}

/* --- Floating Sticky Actions (Mobile Friendly) --- */
.sticky-actions-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  display: flex;
  gap: 10px;
  z-index: 999;
}

.sticky-actions-bar a {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
}

.sticky-btn-call {
  background-color: var(--call-color);
}

.sticky-btn-whatsapp {
  background-color: var(--whatsapp-color);
}

/* --- Footer --- */
.footer-main {
  background-color: var(--dark-bg);
  color: rgba(248, 250, 252, 0.7);
  padding: 80px 0 100px; /* Space for sticky actions on mobile */
  border-top: 2px solid var(--primary-color);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.footer-brand h3 span {
  color: var(--primary-color);
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-contact-list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-contact-list a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  margin-top: 50px;
  text-align: center;
  font-size: 0.88rem;
}

.text-muted-light {
  color: rgba(248, 250, 252, 0.6) !important;
}

.bg-secondary-dark {
  background-color: rgba(255, 255, 255, 0.04) !important;
}

.text-orange {
  color: var(--primary-color) !important;
}

/* --- FAQ Section --- */
.custom-accordion .accordion-item {
  border: 1px solid #f1f5f9 !important;
  background-color: var(--white);
  transition: var(--transition-smooth);
}

.custom-accordion .accordion-button {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-bg);
  background-color: var(--white);
  box-shadow: none;
  padding: 20px 24px;
  transition: var(--transition-smooth);
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--primary-light);
  border-bottom: 1px solid rgba(249, 115, 22, 0.1);
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  background-size: 1.15rem;
  transition: var(--transition-smooth);
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(249, 115, 22, 0.2);
}

.custom-accordion .accordion-body {
  padding: 24px;
  font-size: 0.95rem;
  line-height: 1.6;
  background-color: var(--white);
}

/* FAQ Image & Badge Layout */
.faq-image-wrapper {
  position: relative;
  padding-bottom: 15px;
}

.faq-experience-badge {
  position: absolute;
  bottom: 25px;
  right: -10px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: var(--white);
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--white);
  z-index: 2;
}

.faq-badge-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .faq-experience-badge {
    right: 20px;
    bottom: -15px;
  }
}

/* Offcanvas custom style */
.mobile-menu-offcanvas {
  background-color: var(--dark-bg);
  color: var(--white);
  border-right: 1px solid rgba(191, 161, 95, 0.2);
}

.mobile-menu-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-offcanvas .offcanvas-title {
  color: var(--white);
  font-weight: 700;
}

.mobile-menu-offcanvas .offcanvas-title span {
  color: var(--primary-color);
}

.mobile-menu-offcanvas .btn-close {
  background-color: var(--white);
  opacity: 0.8;
  border-radius: 50%;
  padding: 8px;
}

.mobile-menu-offcanvas .nav-link {
  color: rgba(248, 250, 252, 0.8) !important;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-menu-offcanvas .nav-link:hover,
.mobile-menu-offcanvas .nav-link.active {
  color: var(--primary-color) !important;
  background-color: rgba(255, 255, 255, 0.02);
}

/* Animations */
@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}
/* --- About Us Section --- */
.about-image-wrapper {
  position: relative;
  padding-right: 15px;
  padding-bottom: 15px;
}

.experience-badge {
  position: absolute;
  bottom: 25px;
  right: -10px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
  color: var(--white);
  padding: 18px 28px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--white);
  z-index: 2;
}

.experience-badge .exp-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .exp-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.about-content-box .lead-text {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark-bg);
}

.about-content-box .body-text {
  color: var(--text-muted);
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f1f5f9;
  transition: var(--transition-smooth);
}

.about-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.2);
}

.about-feature-item i {
  color: var(--primary-color);
  font-size: 1.4rem;
  background-color: var(--primary-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--dark-bg);
}

@media (max-width: 991.98px) {
  .experience-badge {
    right: 20px;
    bottom: -15px;
  }
}
/* --- Floating Sidebar --- */
.floating-sidebar {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}

.sidebar-btn {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.sidebar-btn:hover {
  transform: scale(1.08);
  color: var(--white);
}

.sidebar-top {
  background-color: var(--white);
  color: var(--dark-bg);
  border: 1px solid #e2e8f0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.sidebar-top:hover {
  background-color: var(--dark-bg);
  color: var(--white) !important;
}

.sidebar-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sidebar-whatsapp {
  background-color: var(--whatsapp-color);
}

.sidebar-call {
  background-color: var(--call-color);
}

.sidebar-book {
  background-color: var(--primary-color);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

@media (max-width: 991.98px) {
  .floating-sidebar {
    bottom: 80px;
    right: 12px;
    gap: 6px;
  }
  .sidebar-btn {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
    border-radius: 6px;
  }
}

/* --- Media Queries --- */
@media (min-width: 992px) {
  .sticky-actions-bar {
    display: none; /* Hide floating footer on desktop */
  }
  .footer-main {
    padding: 80px 0 40px; /* Reset bottom padding */
  }
}

@media (max-width: 991.98px) {
  .hero-main {
    padding: 130px 0 60px;
    text-align: center;
  }
  .hero-main h1 {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    margin: 0 auto 25px;
    max-width: 100%;
  }
  .hero-points {
    display: inline-block;
    text-align: left;
    margin-bottom: 25px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-form-card {
    margin-top: 40px;
  }
  .section-header h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-main h1 {
    font-size: 2.1rem;
  }
  .hero-cta a {
    width: 100%;
    justify-content: center;
  }
  .hero-form-card {
    padding: 24px 20px;
  }
  .section-padding {
    padding: 60px 0;
  }
}

.card-hover-effect {
  transition: var(--transition-smooth);
}

.card-hover-effect:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md) !important;
  border-color: rgba(249, 115, 22, 0.25) !important;
}
