/* ============================================================
   PureComfort Home Care & Maintenance — style.css
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary: #2a7fc0;
  --primary-dark: #1a5f95;
  --primary-light: #e8f4fd;
  --accent: #7db83a;
  --accent-dark: #5c8f25;
  --dark: #1a1a2e;
  --dark-2: #2d3748;
  --gray: #6b7280;
  --gray-light: #f3f6fa;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark-2);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.section-padding-sm {
  padding: 60px 0;
}

.bg-light-custom {
  background-color: var(--gray-light);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-sub {
  color: var(--gray);
  font-size: 17px;
  max-width: 550px;
  margin: 0 auto;
}

.section-body {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 127, 192, 0.35);
}

.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.btn-outline-light-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-left a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar-left a:hover {
  color: var(--accent);
}

.topbar-left i {
  color: var(--accent);
}

.topbar-right {
  display: flex;
  gap: 14px;
}

.topbar-right a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.topbar-right a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}


.header-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.navbar-toggler {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  background: none;
  cursor: pointer;
  color: var(--dark);
  transition: var(--transition);
}

.navbar-toggler:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.toggler-icon {
  font-size: 22px;
  line-height: 1;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-2) !important;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

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

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

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
}

/* Slide */
.hero-slide {
  height: 92vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.664), rgba(0, 0, 0, 0.521));
  z-index: 1;
}

/* Container alignment fix */
.hero-slide .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1200px;
}

/* Content */
.hero-content {
  max-width: 650px;
  animation: fadeUp 0.8s ease;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: #7db83a;
  color: #fff;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* Title */
.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-title span {
  color: #7dd3fc;
}

/* Subtitle */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 30px;
  line-height: 1.6;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Carousel controls */
.carousel-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Indicators */
.carousel-indicators-custom {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.ci-dot {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.ci-dot.active {
  background: #fff;
  width: 25px;
  border-radius: 5px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .hero-slide {
    text-align: center;
  }

  .hero-slide .container {
    justify-content: center;
  }

  .hero-content {
    margin: auto;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 0 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.marquee-content span i {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-image-wrap {
  position: relative;
  padding-bottom: 80px;
  padding-right: 80px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-img-accent img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark-2);
}

.af-item i {
  color: var(--accent);
  font-size: 17px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-tabs {
  gap: 10px;
  border: none;
}

.service-tab-btn {
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service-tab-btn.active,
.service-tab-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sc-img {
  height: 210px;
  overflow: hidden;
}

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

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

.sc-body {
  padding: 24px;
  position: relative;
}

.sc-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.service-card:hover .sc-icon {
  background: var(--primary);
  color: var(--white);
}

.sc-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.sc-text {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.sc-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.sc-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

/* ============================================================
   COUNTER
   ============================================================ */
.counter-section {
  background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(42, 127, 192, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.counter-item {
  position: relative;
  z-index: 2;
  padding: 24px 16px;
}

.counter-icon {
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 12px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.counter-plus {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  display: inline;
}

.counter-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-item:hover .why-icon {
  background: var(--primary);
  color: var(--white);
}

.why-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 5px;
}

.why-content p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.why-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-md);
}

.why-badge i {
  font-size: 22px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gf-btn {
  padding: 10px 24px;
  border-radius: 8px;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.gf-btn.active,
.gf-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 127, 192, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
}

.gallery-item.hidden {
  display: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.faq-btn {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  padding: 20px 24px;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-btn:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
}

.faq-btn::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-btn:not(.collapsed)::after {
  transform: rotate(180deg);
  content: '\F286';
}

.accordion-button:focus {
  box-shadow: none;
}

.faq-body {
  padding: 18px 24px 22px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.75;
  background: var(--white);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ci-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.ci-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}

.ci-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ci-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.ci-content p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

.ci-content a {
  color: var(--primary);
}

.ci-content a:hover {
  color: var(--primary-dark);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.cs-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--border);
  color: var(--gray);
  font-size: 17px;
  transition: var(--transition);
}

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

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

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

.form-group-custom label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark-2);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(42, 127, 192, 0.12);
}

.form-control-custom::placeholder {
  color: #a0aec0;
}

.form-success {
  text-align: center;
  padding: 50px 30px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-success i {
  font-size: 56px;
  color: var(--accent);
  margin-bottom: 16px;
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray);
  font-size: 16px;
}

.spinning {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   MAP
   ============================================================ */
.map-header {
  background: var(--gray-light);
  border-top: 1px solid var(--border);
}

.map-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 4px;
}

.map-header p {
  color: var(--gray);
  font-size: 14px;
}

.map-embed {
  border-top: 3px solid var(--primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 18px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition);
}

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

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-contact i {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13.5px;
  margin: 0;
}

/* ============================================================
   FLOATING ICONS
   ============================================================ */
.float-whatsapp,
.float-call {
  position: fixed;
 right: 15px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.float-whatsapp {
  bottom: 130px;
  background: #25d366;
  animation: floatPulse 2.5s ease-in-out infinite;
}

.float-call {
  bottom: 236px;
  background: var(--primary);
}

.float-whatsapp:hover,
.float-call:hover {
  transform: scale(1.12);
  color: var(--white);
}

@keyframes floatPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

.float-tooltip {
  position: absolute;
  left: 62px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-whatsapp:hover .float-tooltip,
.float-call:hover .float-tooltip {
  opacity: 1;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 36px;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 992px) {

  .about-img-main img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .section-padding {
    padding: 70px 0;
  }

  .hero-slide {
    height: 80vh;
    min-height: 480px;
  }

  .about-image-wrap {
    padding-bottom: 60px;
    padding-right: 60px;
  }

  .about-img-accent {
    width: 160px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image-wrap img {
    height: 240px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 0;
    margin-top: 8px;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shadow-md);
  }

  .nav-link::after {
    display: none;
  }

  .navbar-nav {
    padding: 0 16px;
  }

  .navbar-nav .btn-primary-custom {
    margin: 10px 0 4px 0;
  }
}
@media(max-width:767px)
{
	.cu-ds-nn{
		display:none!important;
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}
/* Mobile */
@media (max-width: 576px) {
  .section-padding {
    padding: 56px 0;
  }

  .topbar-left {
    gap: 12px;
    font-size: 12px;
  }

  .topbar-right {
    gap: 8px;
  }

  .header-logo {
    height: 44px;
  }

  .hero-slide {
    height: 85vh;
    min-height: 420px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-light-custom {
    justify-content: center;
  }

  .marquee-content span {
    padding: 0 22px;
    font-size: 13px;
  }

  .about-image-wrap {
    padding-bottom: 0;
    padding-right: 0;
  }

  .about-img-accent {
    display: none;
  }

  .about-experience-badge {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-tab-btn {
    font-size: 13px;
    padding: 10px 18px;
  }

  .why-badge {
    left: 16px;
    right: 16px;
    bottom: -12px;
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-section {
    padding: 50px 0;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .footer-top {
    padding: 50px 0 36px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .float-whatsapp,
  .float-call {
    width: 46px;
    height: 46px;
    font-size: 20px;
    right: 16px;
  }

  .float-whatsapp {
    bottom: 100px;
  }

  .float-call {
    bottom: 168px;
  }

  .back-to-top {
    right: 16px;
    bottom: 28px;
  }

  .topbar-left {
    flex-direction: column;
    gap: 4px;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .hero-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}