/* ==========================================================================
   J.K Aluminium & Glass — Global Styles
   Primary: #0876f8
   ========================================================================== */

:root {
  --color-primary: #00285b;
  --color-primary-dark: #0558c4;
  --color-primary-light: #3d94ff;
  --color-dark: #0a0e14;
  --color-dark-soft: #121820;
  --color-surface: #f4f7fb;
  --color-text: #1a2332;
  --color-muted: #5c6b7f;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 20px rgba(8, 118, 248, 0.08);
  --shadow-md: 0 12px 40px rgba(8, 118, 248, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: #fff;
  overflow-x: hidden;
}

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

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

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

/* —— Typography —— */
.display-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.lead-muted {
  color: var(--color-muted);
  max-width: 38rem;
}

/* —— Top bar —— */
.top-bar {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  padding: 0.4rem 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
  color: #fff;
}

.top-bar .social-mini a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background var(--transition), transform var(--transition);
  font-size: 23px;
}

.top-bar .social-mini a:hover {
  background: var(--color-primary);
  color: #fff !important;
  transform: translateY(-2px);
}

/* —— Navbar —— */
.navbar-main {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(8, 118, 248, 0.08);
  padding: 0;
  transition: box-shadow var(--transition);
}

.navbar-main.is-scrolled {
  box-shadow: 0 4px 24px rgba(10, 14, 20, 0.08);
}

.navbar-brand-text {
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.03em;
  color: #fff !important;
  line-height: 1.2;
}

.navbar-brand-text small {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #85a6d1;
}

.nav-link-main {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text) !important;
  padding: 0.5rem 0.85rem !important;
  position: relative;
}

.nav-link-main::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

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

.btn-cta-nav {
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: none;
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(8, 118, 248, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8, 118, 248, 0.45);
  color: #fff !important;
}

.navbar-social a {
  color: var(--color-muted);
  font-size: 1.1rem;
  padding: 0.35rem;
  transition: color var(--transition), transform var(--transition);
}

.navbar-social a:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

/* —— Hero —— */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hero .carousel,
.hero .carousel-inner,
.hero .carousel-item,
.hero .carousel-item .container.hero-content {
  min-height: min(88vh, 760px);
}

.hero .carousel-control-prev,
.hero .carousel-control-next,
.hero .carousel-indicators {
  z-index: 10;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroKen 22s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 14, 20, 0.88) 0%,
      rgba(10, 14, 20, 0.55) 45%,
      rgba(8, 118, 248, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.1s;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 18ch;
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.25s;
}

.hero .lead {
  font-size: 1.05rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.88);
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.45s;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 0.9s ease forwards 0.65s;
}

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

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

.btn-primary-lg {
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: var(--color-primary);
  border: none;
  color: #fff;
  box-shadow: 0 8px 28px rgba(8, 118, 248, 0.4);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary-lg:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(8, 118, 248, 0.5);
}

.btn-outline-light-custom {
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
  transition: background var(--transition), border-color var(--transition);
}

.btn-outline-light-custom:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* —— Cards —— */
.card-service {
  border: 1px solid rgba(8, 118, 248, 0.12);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card-service:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(8, 118, 248, 0.25);
}

.card-service .icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(8, 118, 248, 0.12), rgba(8, 118, 248, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* —— About preview —— */
.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.stat-pill {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.stat-pill strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-primary);
}

/* —— Product / category cards —— */
.card-product-cat {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.card-product-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-product-cat .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 20, 0.85), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #fff;
}

.card-product-cat h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

/* —— Why us —— */
.why-item {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
  height: 100%;
}

.why-item:hover {
  border-color: rgba(8, 118, 248, 0.2);
  background: #fff;
}

.why-item .bi {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

/* —— Gallery thumb —— */
.gallery-thumb {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

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

.gallery-thumb:hover img {
  transform: scale(1.06);
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 118, 248, 0);
  transition: background var(--transition);
}

.gallery-thumb:hover::after {
  background: rgba(8, 118, 248, 0.25);
}

.gallery-thumb .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-thumb:hover .zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* —— CTA banner —— */
.cta-banner {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a2433 100%);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(circle, rgba(8, 118, 248, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

/* —— Enhanced Footer —— */
.site-footer {
  position: relative;
  background: radial-gradient(circle at 100% 0%, #0d1627 0%, var(--color-dark) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 0;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8, 118, 248, 0.4), transparent);
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

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

.footer-links {
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.85rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: "\f285";
  font-family: bootstrap-icons !important;
  font-size: 0.75rem;
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.6);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  color: var(--color-primary-light);
}

.social-links-glowing .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
}

.social-links-glowing .social-icon:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(8, 118, 248, 0.4);
  border-color: var(--color-primary);
}

.footer-contact-info .icon-box {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(8, 118, 248, 0.1);
  color: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-contact-info .hover-primary {
  transition: color 0.3s ease;
}

.footer-contact-info .hover-primary:hover {
  color: var(--color-primary-light) !important;
}

.site-footer .footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom-links a:hover {
  color: #fff !important;
}

/* —— Page header (inner pages) —— */
.page-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #152030 50%, var(--color-dark-soft) 100%);
  color: #fff;
  padding: clamp(4rem, 12vw, 7rem) 0 3rem;
  position: relative;
}

.page-hero::after {
  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='%230876f8' fill-opacity='0.06'%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");
  opacity: 0.5;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb-custom {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-custom a:hover {
  color: #fff;
}

/* —— Timeline —— */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(8, 118, 248, 0.2));
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 4px rgba(8, 118, 248, 0.25);
}

/* —— Products filter —— */
.filter-btn {
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 118, 248, 0.25);
  background: #fff;
  color: var(--color-text);
  transition: all var(--transition);
}

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

.product-card-page {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(8, 118, 248, 0.1);
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
}

.product-card-page:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-page .img-wrap {
  aspect-ratio: 16/11;
  overflow: hidden;
}

.product-card-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card-page:hover img {
  transform: scale(1.05);
}

.product-card-page .body {
  padding: 1.25rem 1.35rem 1.5rem;
}

/* —— Gallery masonry —— */
.gallery-masonry {
  column-count: 1;
  column-gap: 1rem;
}

.gallery-masonry .g-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .gallery-masonry {
    column-count: 3;
  }
}

.gallery-masonry .gallery-thumb {
  aspect-ratio: auto;
  min-height: 200px;
}

.gallery-masonry .gallery-thumb img {
  min-height: 200px;
}

/* —— Lightbox —— */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(10, 14, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

.lightbox-backdrop.is-open .lightbox-inner {
  transform: scale(1);
}

.lightbox-inner img {
  max-height: 85vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* —— Contact form —— */
.form-floating>.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(8, 118, 248, 0.15);
}

.btn-submit-contact {
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  border: none;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-submit-contact:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 118, 248, 0.35);
}

.map-embed-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(8, 118, 248, 0.15);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

/* —— Utilities —— */
.bg-surface {
  background: var(--color-surface) !important;
}

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

.section-py {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

/* AOS fallback */
[data-aos] {
  pointer-events: auto;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
  }
}

/* —— Dropdown Hover Navbar —— */
@media (min-width: 992px) {
  .dropdown-hover:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.product-card-page:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.product-card-page .img-wrap {
  aspect-ratio: 16/11;
  overflow: hidden;
}

.product-card-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card-page:hover img {
  transform: scale(1.05);
}

.product-card-page .body {
  padding: 1.25rem 1.35rem 1.5rem;
}

/* —— Gallery masonry —— */
.gallery-masonry {
  column-count: 1;
  column-gap: 1rem;
}

.gallery-masonry .g-item {
  break-inside: avoid;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (min-width: 992px) {
  .gallery-masonry {
    column-count: 3;
  }
}

.gallery-masonry .gallery-thumb {
  aspect-ratio: auto;
  min-height: 200px;
}

.gallery-masonry .gallery-thumb img {
  min-height: 200px;
}

/* —— Lightbox —— */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(10, 14, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  position: relative;
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

.lightbox-backdrop.is-open .lightbox-inner {
  transform: scale(1);
}

.lightbox-inner img {
  max-height: 85vh;
  width: auto;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 1;
}

/* —— Contact form —— */
.form-floating>.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(8, 118, 248, 0.15);
}

.btn-submit-contact {
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  border: none;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-submit-contact:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 118, 248, 0.35);
}

.map-embed-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 290px;
  border: 1px solid rgba(8, 118, 248, 0.15);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 286px;
  border: 0;
}

/* —— Utilities —— */
.bg-surface {
  background: var(--color-surface) !important;
}

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

.section-py {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

/* AOS fallback */
[data-aos] {
  pointer-events: auto;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-bg {
    animation: none;
  }
}

/* —— Dropdown Hover Navbar —— */
@media (min-width: 992px) {
  .dropdown-hover:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-hover .nav-link-main .bi-chevron-down {
  display: inline-block;
  transition: transform 0.3s ease;
}

@media (min-width: 992px) {
  .dropdown-hover:hover .nav-link-main .bi-chevron-down {
    transform: rotate(180deg);
  }
}

/* —— Back to Top —— */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  cursor: pointer;
}

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

.back-to-top:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.small.text-white-50.mb-4.pe-lg-4.lh-lg {
  color: #fff !important;
}

.text-white-50 a {
  color: #fff !important;
}

.text-white-50 a:hover {
  color: rgb(61, 148, 255);
}

video {
  border: 2px solid #2e2e2e;
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------------------------
   11. Whatsapp And Call Button Design
   ------------------------------------------------------------------------- */

.whatsapp-btn {
  position: fixed;
  bottom: 6em;
  left: 1%;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.whatsapp-btn .icon_logo>a>img {
  width: 100%;
  padding: unset;
  border: none;
}

.whatsapp-btn .circle_waves {
  border-radius: 50%;
  background-color: #3cc04e;
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  bottom: 1px;
  left: 0px;
  z-index: 99;
  animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.whatsapp-btn .icon_logo {
  position: relative;
  z-index: 100;
  padding: 5px;
}

.flot-call-btn {
  position: fixed;
  bottom: 1em;
  left: 1%;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.flot-call-btn .icon_logo>a>img {
  width: 100%;
  padding: unset;
  border: none;
}

.flot-call-btn .circle_waves {
  border-radius: 50%;
  background-color: #3399ff;
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  bottom: 1px;
  left: 0px;
  z-index: 99;
  animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.flot-call-btn .icon_logo {
  position: relative;
  z-index: 100;
  padding: 5px;
}

@keyframes waves {
  from {
    transform: scale(0.55, 0.55);
    opacity: 0.6;
  }

  to {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}


.whatsappr-btn {
  position: fixed;
  bottom: 9em;
  right: 1%;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.whatsappr-btn .icon_logo>a>img {
  width: 100%;
  padding: unset;
  border: none;
}

.whatsappr-btn .circle_waves {
  border-radius: 50%;
  background-color: #3cc04e;
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  bottom: 1px;
  left: 0px;
  z-index: 99;
  animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.whatsappr-btn .icon_logo {
  position: relative;
  z-index: 100;
  padding: 5px;
}

.flot-callr-btn {
  position: fixed;
  bottom: 5em;
  right: 1%;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.flot-callr-btn .icon_logo>a>img {
  width: 100%;
  padding: unset;
  border: none;
}

.flot-callr-btn .circle_waves {
  border-radius: 50%;
  background-color: #3399ff;
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  bottom: 1px;
  left: 0px;
  z-index: 99;
  animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.flot-callr-btn .icon_logo {
  position: relative;
  z-index: 100;
  padding: 5px;
}

@keyframes waves {
  from {
    transform: scale(0.55, 0.55);
    opacity: 0.6;
  }

  to {
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}