/* =========================================
   Sakshi Invisible Grill - Custom CSS
   Author: Sakshi Invisible Grill
   ========================================= */

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

/* ---- CSS Variables ---- */
:root {
  --blue-dark: #0a2d6e;
  --blue-main: #1355c7;
  --blue-mid: #1a6bda;
  --blue-light: #3b87f5;
  --blue-pale: #e8f0fd;
  --blue-palest: #f0f5ff;
  --accent: #f0a500;
  --accent-hover: #e09500;
  --white: #ffffff;
  --off-white: #f7f9ff;
  --text-dark: #0e1f3f;
  --text-mid: #334155;
  --text-light: #64748b;
  --border: #dce8ff;
  --shadow-sm: 0 2px 12px rgba(19, 85, 199, 0.10);
  --shadow-md: 0 8px 32px rgba(19, 85, 199, 0.15);
  --shadow-lg: 0 16px 48px rgba(19, 85, 199, 0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-display: 'Playfair Display', 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;
  font-size: 16px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.25;
}

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

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

/* ---- Utility ---- */
.text-blue {
  color: var(--blue-main);
}

.text-accent {
  color: var(--accent);
}

.bg-section {
  background: var(--blue-palest);
}

.section-pad {
  padding: 90px 0;
}

.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-main);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 700;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--blue-dark);
  color: var(--white);
  padding: 9px 0;
  font-size: 0.82rem;
  border-bottom: 2px solid var(--blue-main);
}

.topbar-info {
  gap: 18px !important;
  flex-wrap: wrap;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

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

.topbar-link i {
  color: var(--accent);
  font-size: 0.85rem;
}

.topbar-social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.82rem;
  transition: var(--transition);
}

.topbar-social:hover {
  background: var(--blue-light);
  color: white;
  border-color: var(--blue-light);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10, 45, 110, 0.10);
  z-index: 1050;
  border-bottom: 3px solid var(--blue-main);
}

.navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
}

.brand-accent {
  color: var(--blue-main);
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

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

.navbar-nav .nav-link:hover {
  color: var(--blue-main);
}

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

.navbar-toggler {
  border: 2px solid var(--blue-main);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(19, 85, 199, 0.2);
}

.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='%231355c7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: var(--white) !important;
  border: none;
  border-radius: 50px;
  padding: 11px 28px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 18px rgba(19, 85, 199, 0.35);
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(19, 85, 199, 0.45);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-main));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 11px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

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

/* Hero Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--text-dark) !important;
  border: none;
  border-radius: 50px;
  padding: 14px 34px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(240, 165, 0, 0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(240, 165, 0, 0.55);
}

.btn-hero-outline {
  background: transparent;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-img {
  height: 92vh;
  min-height: 540px;
  max-height: 820px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, 0) 100%);
}

.carousel-caption {
  bottom: 50%;
  transform: translateY(50%);
  left: 5%;
  right: 5%;
  text-align: center;
  padding: 0;
}

.caption-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 18px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s 0.2s ease both;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin: 0 auto 30px;
  animation: fadeInUp 0.8s 0.4s ease both;
  line-height: 1.75;
}

.carousel-caption .d-flex {
  animation: fadeInUp 0.8s 0.6s ease both;
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  margin: 0 16px;
}

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

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

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

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.marquee-track span i {
  color: var(--accent);
  font-size: 1rem;
}

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

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

/* ============================================================
   ABOUT US
   ============================================================ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  outline: 2px solid var(--border);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: white;
  text-align: center;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 120px;
}

.badge-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
  color: var(--accent);
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
  margin-top: 4px;
  display: block;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-palest);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.about-feat:hover {
  background: var(--blue-pale);
  border-color: var(--blue-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.about-feat i {
  color: var(--blue-main);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICE - Single About-Style Layout
   ============================================================ */
.service-single-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  outline: 2px solid var(--border);
}

.service-single-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
  display: block;
}

.service-single-img-wrap:hover .service-single-img {
  transform: scale(1.03);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(145deg, var(--blue-palest) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(19, 85, 199, 0.07) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-main), var(--blue-light));
  transform: scaleX(0);
  transition: var(--transition);
}

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

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

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-palest));
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-main);
  font-size: 1.5rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
  color: white;
  border-color: var(--blue-main);
  transform: rotateY(360deg);
  transition: transform 0.6s ease, background 0.35s, color 0.35s;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

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

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-box {
  position: relative;
  padding: 20px;
}

.counter-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 45, 110, 0.75) 0%, rgba(10, 45, 110, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
  transform: scale(0.6);
  transition: var(--transition);
}

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

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

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

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

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

.faq-item .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  padding: 18px 22px;
  border: none;
  box-shadow: none !important;
}

.faq-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231355c7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  flex-shrink: 0;
}

.faq-item .accordion-button:not(.collapsed) {
  background: var(--blue-palest);
  color: var(--blue-main);
}

.faq-item .accordion-body {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  padding: 16px 22px 20px;
  background: var(--blue-palest);
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-box {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue-main));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 50px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-info-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}

.contact-info-item p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.55;
}

.contact-info-item a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.contact-info-item a:hover {
  color: var(--accent);
}

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

.contact-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--blue-palest);
  transition: var(--transition);
  font-family: var(--font-body);
}

.custom-input:focus {
  border-color: var(--blue-main);
  box-shadow: 0 0 0 3px rgba(19, 85, 199, 0.12);
  background: var(--white);
  outline: none;
}

.btn-submit {
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}

.footer-about {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 320px;
}

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

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

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

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-links a::before {
  content: '›';
  color: var(--blue-light);
  font-size: 1rem;
  font-weight: 700;
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.footer-contact li i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

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

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn {
  position: fixed;
  bottom: 85px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 1rem;
  font-weight: 700;
  color: white !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  z-index: 9999;
  text-decoration: none;
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.float-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.float-wa {
  left: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.float-call {
  right: 20px;
  background: linear-gradient(135deg, var(--blue-main), var(--blue-dark));
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-main);
  color: white;
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

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

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* AOS-like classes driven by JS */
[data-aos] {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.88);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 65px 0;
  }

  .hero-img {
    height: 70vh;
    min-height: 420px;
  }

  .about-main-img {
    height: 360px;
  }

  .about-badge {
    right: 10px;
    bottom: -16px;
  }

  .navbar-collapse {
    background: white;
    border-radius: var(--radius-md);
    margin-top: 12px;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
  }
}
@media(max-width:768px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}
@media (max-width: 767.98px) {
  .section-pad {
    padding: 50px 0;
  }

  .hero-img {
    height: 85vh;
    min-height: 380px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

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

  .float-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
    bottom: 78px;
  }

  .float-label {
    display: none;
  }

  .float-wa {
    border-radius: 50%;
    padding: 13px;
  }

  .float-call {
    border-radius: 50%;
    padding: 13px;
  }

  .contact-form-box,
  .contact-info-box {
    padding: 28px 22px;
  }

  .service-single-img {
    height: 260px;
  }

  .about-main-img {
    height: 280px;
  }

  .topbar .col-12 {
    font-size: 0.76rem;
  }

  .topbar-info {
    gap: 8px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-img {
    height: 90vh;
  }

  .carousel-caption {
    left: 3%;
    right: 3%;
  }

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

  .marquee-track span {
    font-size: 0.75rem;
    padding: 0 18px;
  }

  .counter-num {
    font-size: 2rem;
  }

  .gallery-item {
    aspect-ratio: 1/1;
  }

  .faq-item .accordion-button {
    font-size: 0.88rem;
    padding: 14px 16px;
  }
}
@media(max-width:374px)
{
	.brand-text{
		font-size:1.1rem
	}
}