/* =========================================================
   Twin Auto Garage - Custom Styles
   Theme: Dark Professional with Blue Primary & Yellow Accent
   ========================================================= */

:root {
  --primary: #0B5FB8;
  --primary-dark: #08488C;
  --primary-light: #3A82D6;
  --accent: #FFC107;
  /* yellow highlight (sparingly used) */
  --accent-dark: #E0A800;
  --dark: #0F1218;
  --dark-2: #161A22;
  --dark-3: #1F242E;
  --gray-1: #2A2F3A;
  --gray-2: #3A4050;
  --text-light: #E8EAEE;
  --text-mute: #A0A6B2;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
  --shadow-orange: 0 10px 25px rgba(11, 95, 184, 0.35);
  /* now blue glow (variable name kept for compatibility) */
  --shadow-yellow: 0 10px 25px rgba(255, 193, 7, 0.35);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #2C313B;
  background: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--dark);
}

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

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

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

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--dark);
  color: var(--text-mute);
  font-size: 13.5px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.top-info-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info-list li i {
  color: var(--primary);
  font-size: 14px;
}

.top-info-list a {
  color: var(--text-mute);
}

.top-info-list a:hover {
  color: var(--primary);
}

.top-social {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}

.top-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-mute);
  font-size: 13px;
}

.top-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .top-bar {
    padding: 8px 0;
    font-size: 12.5px;
  }

  .top-info-list {
    justify-content: center;
    gap: 14px;
  }

  .top-social {
    justify-content: center;
    margin-top: 6px;
  }

  .top-info-list li:nth-child(2) {
    display: none;
  }
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: var(--transition);
}

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

.site-header .navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-orange);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  border-radius: 8px;
}

.brand-mark-inner {
  color: var(--white);
  font-size: 24px;
  z-index: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
}

.dot {
  color: var(--accent);
  margin: 0 4px;
}

.navbar-nav .nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--dark) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 24px;
}

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

.btn-book {
  background: var(--primary);
  color: var(--white) !important;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  border: none;
  box-shadow: var(--shadow-orange);
}

.btn-book:hover {
  background: var(--dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.btn-book i {
  font-size: 16px;
}

.navbar-toggler {
  border: 1px solid var(--gray-2);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: transparent;
}

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

.toggler-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 4px 0;
  transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 14px;
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid #ECEFF3;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }

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

  .btn-book {
    display: inline-flex;
    margin-top: 10px;
  }
}

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero-section {
  position: relative;
}

.hero-slide {
  height: 92vh;
  min-height: 580px;
  max-height: 820px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.856) 60%, rgba(0, 0, 0, 0.356) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 720px;
  padding: 30px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-eyebrow .line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.005em;
}

.hero-title .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero-title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 4px;
  background: var(--accent);
  opacity: 0.35;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-orange);
}

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

.btn-ghost-custom {
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.custom-arrow {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: var(--transition);
  backdrop-filter: blur(6px);
}

.custom-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.custom-arrow i {
  font-size: 20px;
  color: var(--white);
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-indicators {
  margin-bottom: 26px;
}

.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 5px;
}

.carousel-indicators .active {
  background: var(--primary);
}

@media (max-width: 767px) {
  .hero-slide {
    height: auto;
    min-height: 540px;
    padding: 80px 0 90px;
  }

  .hero-content {
    text-align: left;
    padding: 20px 0;
  }

  .hero-actions .btn-ghost-custom,
  .hero-actions .btn-primary-custom {
    padding: 14px 22px;
    font-size: 14px;
  }

  .custom-arrow {
    width: 42px;
    height: 42px;
  }

  .custom-arrow i {
    font-size: 16px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 12%;
  }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee-section {
  background: var(--primary);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-content i {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 10px;
  font-size: 22px;
}

.dot-sep {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
}

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

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

/* =========================================================
   ABOUT SECTION
   ========================================================= */
/* ============ ABOUT SECTION ============ */

.about-section {
  padding: 100px 0;
  background: #FAFBFC;
}

/* IMAGE WRAP */
.about-image-wrap {
  position: relative;
  padding-right: 20px;
}

/* MAIN IMAGE BOX */
.about-img-main {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: #ddd;
}

/* MAIN IMAGE */
.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* EXPERIENCE BADGE */
.about-experience-badge {
  position: absolute;
  top: 25px;
  left: -20px;
  background: #0B5FB8;
  color: #fff;
  padding: 22px 24px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(11, 95, 184, 0.25);
}

.exp-num {
  display: block;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.6;
}

/* TAG */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0B5FB8;
  margin-bottom: 18px;
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #0B5FB8;
  display: inline-block;
}

/* TITLE */
.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 22px;
}

.section-title .accent {
  color: #F4B400;
}

/* PARAGRAPH */
.section-lead {
  font-size: 16px;
  line-height: 1.9;
  color: #5F6B7A;
  margin-bottom: 28px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FEATURE BOX */
.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #E8EDF3;
  transition: 0.3s ease;
}

.about-feature:hover {
  transform: translateX(5px);
  border-color: #0B5FB8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ICON */
.af-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: rgba(11, 95, 184, 0.1);
  color: #0B5FB8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* FEATURE TEXT */
.about-feature h5 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: #111827;
}

.about-feature p {
  margin: 0;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
}

/* BUTTON */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  background: #0B5FB8;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary-custom:hover {
  background: #094b91;
  color: #fff;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {

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

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

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

  .about-experience-badge {
    left: 10px;
    top: 15px;
    padding: 18px 20px;
  }

  .exp-num {
    font-size: 34px;
  }

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

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.services-section {
  padding: 100px 0;
  background: var(--white);
}

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

.section-head .section-tag {
  justify-content: center;
}

.section-head .section-tag::before {
  margin-right: 0;
}

.section-head .section-tag::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.services-grid {
  margin-top: 0;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #ECEFF3;
  transition: var(--transition);
  height: 100%;
  position: relative;
}

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

.service-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

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

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

.service-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}

.service-body {
  padding: 28px 26px;
}

.service-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-body p {
  color: #6B7383;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary);
}

.service-link:hover i {
  transform: translateX(6px);
}

/* =========================================================
   COUNTER SECTION
   ========================================================= */
.counter-section {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.counter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 18, 24, 0.92), rgba(31, 36, 46, 0.88));
}

.counter-section .container {
  position: relative;
  z-index: 2;
}

.counter-card {
  text-align: center;
  color: var(--white);
  padding: 20px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-card:last-child {
  border-right: none;
}

.counter-icon {
  width: 64px;
  height: 64px;
  background: rgba(11, 95, 184, 0.15);
  border: 1px solid rgba(11, 95, 184, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary);
  font-size: 26px;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.counter-number .plus {
  color: var(--accent);
}

.counter-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
}

@media (max-width: 767px) {
  .counter-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 10px;
  }

  .counter-card:last-child {
    border-bottom: none;
  }

  .counter-section {
    background-attachment: scroll;
  }
}

/* =========================================================
   WHY CHOOSE US SECTION
   ========================================================= */
.why-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 18, 24, 0.96), rgba(15, 18, 24, 0.86));
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  height: 100%;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(11, 95, 184, 0.08);
  border-color: rgba(11, 95, 184, 0.4);
  transform: translateY(-8px);
}

.why-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.486);
  line-height: 1;
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-orange);
}

.why-card h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.788);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   BRANDS MARQUEE
   ========================================================= */
.brands-section {
  padding: 70px 0;
  background: #F4F6F9;
}

.brands-eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #6B7383;
  margin-bottom: 36px;
}

.brand-marquee {
  overflow: hidden;
}

.brand-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.brand-item {
  flex-shrink: 0;
  margin: 0 24px;
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid #E5E8EE;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-item img {
  height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.brand-item:hover {
  border-color: var(--primary);
}

.brand-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 18, 24, 0) 30%, rgba(11, 95, 184, 0.85) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  color: var(--white);
}

.gallery-overlay i {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

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

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

@media (max-width: 767px) {
  .gallery-item img {
    height: 180px;
  }
}

/* =========================================================
   FAQ + TESTIMONIAL
   ========================================================= */
.faq-section {
  padding: 100px 0;
  background: #FAFBFC;
}

.custom-accordion .accordion-item {
  background: var(--white);
  border: 1px solid #ECEFF3;
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.custom-accordion .accordion-button {
  background: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: rgba(11, 95, 184, 0.06);
  color: var(--primary);
}

.custom-accordion .accordion-button::after {
  background-image: none;
  content: "\F4FE";
  font-family: 'bootstrap-icons';
  width: auto;
  height: auto;
  background: none;
  font-size: 18px;
  color: var(--primary);
  transition: var(--transition);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.custom-accordion .accordion-body {
  padding: 8px 24px 22px;
  font-size: 15px;
  color: #5A6373;
  line-height: 1.8;
}

.testimonial-card {
  background: var(--dark);
  color: var(--white);
  padding: 40px 36px;
  border-radius: var(--radius-md);
  position: relative;
  height: 100%;
  background-image: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(11, 95, 184, 0.18), transparent 70%);
  pointer-events: none;
}

.quote-mark {
  font-size: 56px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.testimonial-heading {
  font-size: 13px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 16.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
}

.t-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.t-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  display: block;
}

.t-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.t-stars {
  margin-left: auto;
  display: flex;
  gap: 3px;
  color: var(--primary);
}

.info-strip {
  background: var(--primary);
  color: var(--white);
  padding: 26px 30px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-orange);
}

.info-strip-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.info-strip-text {
  flex: 1;
}

.info-strip-text h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin: 0 0 4px;
}

.info-strip-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.92;
}

.info-strip-text a {
  color: var(--white);
  font-weight: 600;
}

.info-strip-text a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .testimonial-card {
    margin-top: 30px;
  }
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-info-card {
  background: #FAFBFC;
  border: 1px solid #ECEFF3;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--white);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.ci-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin: 0 auto 18px;
  box-shadow: var(--shadow-orange);
}

.contact-info-card h4 {
  font-size: 14px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-info-card p,
.contact-info-card a {
  color: #2C313B;
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

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

.contact-form {
  background: #FAFBFC;
  padding: 38px 32px;
  border-radius: var(--radius-md);
  border: 1px solid #ECEFF3;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--white);
  border: 1px solid #DDE2EA;
  padding: 14px 18px;
  font-size: 15px;
  border-radius: var(--radius-sm);
  color: var(--dark);
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 95, 184, 0.12);
  outline: none;
}

.contact-form label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  display: none;
}

.form-status.success {
  background: rgba(40, 167, 69, 0.1);
  color: #28A745;
  border: 1px solid rgba(40, 167, 69, 0.3);
  display: block;
}

.form-status.error {
  background: rgba(220, 53, 69, 0.1);
  color: #DC3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
  display: block;
}

.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #ECEFF3;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .map-wrap iframe {
    height: 320px;
  }

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

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 80px 0 0;
  position: relative;
  overflow-x: hidden;
}

.footer-brand .navbar-brand {
  margin-bottom: 22px;
}

.footer-brand .brand-name {
  color: var(--white);
}

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

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

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

.footer-heading {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "\F285";
  font-family: 'bootstrap-icons';
  font-size: 14px;
  color: var(--primary);
}

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

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-contact li i {
  color: var(--primary);
  font-size: 17px;
  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 {
  margin-top: 60px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom a:hover {
  text-decoration: underline;
}

/* =========================================================
   FLOATING ICONS - LEFT SIDE
   ========================================================= */
.floating-icons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
}

.float-btn:hover {
  color: var(--white);
  transform: scale(1.1);
}

.float-btn.whatsapp {
  background: #25D366;
}

.float-btn.phone {
  background: var(--primary);
  animation: phone-ring 2.4s infinite;
}

.float-btn.mail {
  background: var(--dark);
}

.float-btn.map {
  background: #4285F4;
}

.float-tip {
  position: absolute;
  left: 64px;
  background: var(--dark);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-tip::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid var(--dark);
}

.float-btn:hover .float-tip {
  opacity: 1;
  left: 70px;
}

@keyframes phone-ring {

  0%,
  100% {
    transform: rotate(0);
  }

  10%,
  30% {
    transform: rotate(-12deg);
  }

  20%,
  40% {
    transform: rotate(12deg);
  }

  50% {
    transform: rotate(0);
  }
}

@media(max-width:768px)
{
	section{
		overflow-x:hidden;
	}
}

@media (max-width: 575px) {
  .floating-icons {
    left: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .float-tip {
    display: none;
  }
}

/* =========================================================
   SCROLL TOP BUTTON
   ========================================================= */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-orange);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

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

.scroll-top:hover {
  background: var(--dark);
}

@media (max-width: 575px) {
  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   UTILITY
   ========================================================= */
.bg-light-gray {
  background: #F4F6F9;
}

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

@media (max-width: 991px) {

  .section-padding,
  .about-section,
  .services-section,
  .why-section,
  .gallery-section,
  .faq-section,
  .contact-section {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {

  .section-padding,
  .about-section,
  .services-section,
  .why-section,
  .gallery-section,
  .faq-section,
  .contact-section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 40px;
  }
}