/* ============================================================
   Print Plus - style.css
   Color Palette:
   --primary:    #C0392B  (deep red - brand)
   --dark:       #1E293B  (slate dark - section bg)
   --accent:     #F39C12  (warm gold/amber accent)
   --light-bg:   #F8F9FA
   --text-dark:  #1a1a2e
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #C0392B;
  --primary-dk: #962d22;
  --dark: #1E293B;
  --dark-2: #263347;
  --accent: #F39C12;
  --accent-lt: #F5A623;
  --white: #ffffff;
  --light-bg: #F8F9FA;
  --border: #e2e8f0;
  --text: #334155;
  --text-lt: #64748b;
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.25;
}

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

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

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

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

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

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-lt);
  max-width: 560px;
}

.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.label-tag.red {
  background: rgba(192, 57, 43, 0.1);
  color: var(--primary);
}

.label-tag.gold {
  background: rgba(243, 156, 18, 0.15);
  color: var(--accent);
}

.label-tag.white {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-primary-pp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-pp:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 57, 43, 0.35);
}

.btn-outline-pp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-pp:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ── TOP BAR ── */
#top-bar {
  background: var(--dark);
  padding: 9px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

#top-bar a {
  color: rgba(255, 255, 255, 0.75);
}

#top-bar a:hover {
  color: var(--accent);
}

#top-bar .top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

#top-bar .top-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  transition: var(--transition);
  margin-left: 5px;
}

.top-social a:hover {
  background: var(--primary);
  color: #fff;
}

/* ── NAVBAR ── */
#main-nav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

#main-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
  padding: 10px 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark) !important;
  padding: 28px 14px !important;
  position: relative;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

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

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

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

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  margin-left: 8px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dk) !important;
  color: #fff !important;
}

.navbar-toggler {
  border: 2px solid var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(192,57,43,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── MARQUEE ── */
#marquee-bar {
  background: var(--primary);
  padding: 11px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 100s linear infinite;
}

.marquee-track span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 28px;
  text-transform: uppercase;
}

.marquee-track span::before {
  content: '✦';
  margin-right: 28px;
  opacity: 0.6;
  font-size: 0.65rem;
}

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

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

/* ── HERO CAROUSEL ── */
#hero-carousel {
  position: relative;
  overflow: hidden;
}

/* ── HERO SLIDE: bg image set via inline style in HTML ── */
.hero-slide {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback dark bg if image not found */
  background-color: #1E293B;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.836) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(243, 156, 18, 0.2);
  border: 1px solid rgba(243, 156, 18, 0.4);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 380px;
}

.hero-mini-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  transition: var(--transition);
}

.hero-mini-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.hero-mini-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.hero-mini-card span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero-mini-card.big {
  grid-column: span 2;
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
}

.carousel-control-prev {
  left: 24px;
}

.carousel-control-next {
  right: 24px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators .active {
  background: var(--accent);
  width: 30px;
  border-radius: 5px;
}

/* ── ABOUT ── */
#about {
  background: var(--light-bg);
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge .big {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  display: block;
  line-height: 1;
}

.about-badge .small {
  font-size: 0.75rem;
  letter-spacing: 1px;
  opacity: 0.85;
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.1);
  transform: translateX(4px);
}

.about-feat-icon {
  width: 46px;
  height: 46px;
  background: rgba(192, 57, 43, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feat-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: 'DM Sans', sans-serif;
}

.about-feat-desc {
  font-size: 0.82rem;
  color: var(--text-lt);
}

/* ── SERVICES ── */
#services {
  background: #fff;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

/* ── Service card image (replaces icon) ── */
.svc-img-wrap {
  width: 100%;
  height: 210px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--light-bg);
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .svc-img-wrap img {
  transform: scale(1.06);
}

/* ── Service group label (heading between groups) ── */
.svc-group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-lt);
  padding: 10px 0 6px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
  position: relative;
}

.svc-group-label::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--primary);
}

.svc-group-label i {
  color: var(--primary);
  font-size: 1rem;
}

.svc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--text-lt);
  line-height: 1.6;
}

.svc-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  user-select: none;
}

/* ── CATEGORY MARQUEE (auto-scroll, hover pause) ── */
#category-carousel {
  background: #1E293B;
}

.cat-marquee-outer {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px 0 20px;
}

/* fade edges */
.cat-marquee-outer::before,
.cat-marquee-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.cat-marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg), transparent);
}

.cat-marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg), transparent);
}

.cat-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: catScroll 32s linear infinite;
}

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

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

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

.cat-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  width: 160px;
  flex-shrink: 0;
}

.cat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(192, 57, 43, 0.3);
}

.cat-img-wrap {
  width: 100%;
  height: 130px;
  overflow: hidden;
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.cat-card:hover .cat-img-wrap img {
  transform: scale(1.07);
}

.cat-name {
  padding: 12px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── WHY CHOOSE US ── */
#why-us {
  background: var(--dark);
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(243, 156, 18, 0.3);
  transform: translateY(-5px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(243, 156, 18, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: 'DM Sans', sans-serif;
}

.why-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ── COUNTER ── */
#counter {
  background: var(--primary);
}

.counter-box {
  text-align: center;
  padding: 20px;
}

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}

.counter-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counter-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  margin: auto;
}

/* ── GALLERY ── */
#gallery {
  background: #fff;
}

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  justify-content: center;
}

.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Gallery item — works inside Bootstrap col-6 col-lg-3 */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: block;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: #fff;
  font-size: 1.8rem;
}

/* Hidden items after filter */
.gallery-item-new.hidden {
  display: none;
}

/* ── FAQs ── */
#faqs {
  background: var(--dark);
}

.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius) !important;
  padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  filter: invert(1) brightness(2);
}

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

.accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-body {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  padding: 16px 22px;
}

/* ── CONTACT ── */
#contact {
  background: var(--light-bg);
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark);
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item:hover {
  background: var(--dark-2);
  transform: translateX(4px);
}

.c-icon {
  width: 46px;
  height: 46px;
  background: rgba(243, 156, 18, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.c-value {
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}

.c-value a {
  color: #fff;
}

.c-value a:hover {
  color: var(--accent);
}

.form-control,
.form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  background: #fff;
  color: var(--dark);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
  outline: none;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

/* ── FOOTER ── */
#footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 16px 0 22px;
}

.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 18px;
  font-weight: 700;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.65rem;
  color: var(--primary);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-right: 8px;
  transition: var(--transition);
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 32px 0;
}

.footer-bottom {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ── FLOATING BUTTONS ── */
.float-btn {
  position: fixed;
  bottom: 30px;
  z-index: 9999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  animation: pulse-float 2.5s infinite;
}

.float-btn:hover {
  transform: scale(1.12) translateY(-3px);
}

.float-whatsapp {
  left: 24px;
  background: #25D366;
  color: #fff;
}

.float-call {
  right: 24px;
  background: var(--primary);
  color: #fff;
}

@keyframes pulse-float {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.45);
  }
}

.float-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  font-size: 0.72rem;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 95px;
  right: 24px;
  z-index: 9998;
  width: 42px;
  height: 42px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--primary);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ── MAP EMBED ── */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  display: block;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-slide {
    min-height: 70vh;
  }

  .hero-visual {
    display: none;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .nav-link {
    padding: 12px 14px !important;
  }

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

  .counter-divider {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 60px 0;
  }

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

  .hero-stats {
    gap: 20px;
  }

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

  .about-img-wrap img {
    height: 300px;
  }

  #top-bar .d-none-sm {
    display: none;
  }

  .contact-card {
    padding: 28px 20px;
  }
}

@media (max-width: 575px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2rem;
  }

  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}