@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --brand-primary: #0d6efd;
  --brand-secondary: #25d366;
  --brand-dark: #0a1f3f;
  --brand-muted: #6c757d;
  --brand-light: #f5f7fb;
  --brand-border: rgba(13, 110, 253, 0.15);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
  background: var(--brand-light);
  color: var(--brand-dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

section {
  padding: 4rem 0;
}

@media (max-width: 767.98px) {
  section {
    padding: 3rem 0;
  }
}

/* Navbar */
.navbar-custom {
  background: #fff;
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.08);
  padding-block: 0.75rem;
}

.navbar-custom .navbar-brand img {
  height: 80px;
  transition: height 0.2s ease;
}

.navbar-custom .nav-link {
  font-weight: 600;
  color: var(--brand-dark);
  margin-inline: 0.25rem;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:focus,
.navbar-custom .nav-link:hover {
  color: var(--brand-primary);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

@media (max-width: 991.98px) {
  .navbar-custom {
    padding-block: 0.5rem;
  }

  .navbar-custom .navbar-brand img {
    height: 60px;
  }

  .navbar-custom .nav-link {
    padding-block: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .navbar-custom .navbar-brand img {
    height: 48px;
  }
}

/* Hero */
.hero-media {
  position: relative;
  min-height: 65vh;
}

.hero-video {
  width: 100%;
  height: calc(100vh - 110px);
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10, 31, 63, 0.8), rgba(10, 31, 63, 0.1));
  z-index: 1;
}

.video-text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: #fff;
}

.video-text .hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.video-text .hero-title span {
  color: var(--brand-secondary);
}

.video-text .hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .hero-video {
    height: 70vh;
    min-height: 360px;
  }

  .video-text {
    padding: 1rem;
  }
}

/* Floating WhatsApp button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: var(--brand-secondary);
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-button:hover {
  background-color: #1ab358;
  color: #fff;
}

@media (max-width: 575.98px) {
  .whatsapp-button {
    width: 48px;
    height: 48px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }
}

/* About section */
#about .shadow {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid rgba(10, 31, 63, 0.05);
}

/* Cards / inventory */
.inventory-section {
  padding-top: 2rem;
}

.card-grid .card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 31, 63, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(10, 31, 63, 0.12);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.slide-in-left {
  transform: translateX(-100%);
}

.slide-in-right {
  transform: translateX(100%);
}

.slide-center {
  transform: translateX(0);
}

.card-body {
  padding: 1.25rem;
}

.card-body p {
  margin: 0.25rem 0;
}

.more-details {
  display: none;
  margin-top: 0.75rem;
}

.card button.position-absolute {
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  width: 38px;
  height: 38px;
}

.card:hover button.position-absolute {
  opacity: 1;
}

.btn-silent-blue {
  background-color: #6fa3ef !important;
  color: #fff !important;
  border: none !important;
}

.btn-pure-blue {
  background-color: #0056ff !important;
  color: #fff !important;
}

.btn-pure-blue:hover {
  background-color: #003fcc !important;
}

@media (max-width: 767.98px) {
  .carousel-wrapper {
    height: 200px;
  }
}

/* Brand collection */
.brand-collection .card {
  border-radius: 1.25rem;
  border: 1px solid var(--brand-border);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
}

.brands-grid .brand-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.brands-grid .brand-item:hover {
  transform: translateY(-6px);
}

.brand-circle {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  padding: 6px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #fff;
}

.brand-circle:hover {
  border-color: #6fa3ef;
  box-shadow: 0 0 25px rgba(111, 163, 239, 0.4);
}

.brand-circle .thumb {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
}

.brands-grid .brand-item p {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.brand-trigger {
  cursor: pointer;
}

/* Contact */
.contact-section {
  background: #fff;
}

.contact-section .contact-copy {
  color: var(--brand-muted);
}

.contact-form {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 25px 80px rgba(10, 31, 63, 0.08);
  border: 1px solid rgba(10, 31, 63, 0.05);
  padding: 1.5rem;
}

.contact-form .form-control,
.contact-form .input-group-text {
  border-color: rgba(10, 31, 63, 0.15);
  background: #fff;
  color: var(--brand-dark);
}

.contact-form .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: none;
}

.contact-illustration {
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 1.5rem;
  box-shadow: 0 25px 80px rgba(10, 31, 63, 0.08);
}

.send-btn {
  background: #0087d6;
  border: none;
}

.send-btn:hover {
  background: #003c97;
}

@media (max-width: 991.98px) {
  .contact-illustration {
    margin-top: 2rem;
  }
}

/* Footer */
.site-footer {
  background: #fff;
  color: var(--brand-dark);
  border-top: 1px solid rgba(10, 31, 63, 0.08);
}

.site-footer h6 {
  color: var(--brand-dark);
  font-weight: 700;
}

.site-footer a {
  color: var(--brand-dark);
}

.site-footer a:hover {
  color: var(--brand-primary);
}

.footer-meta {
  color: rgba(10, 31, 63, 0.6);
  font-size: 0.9rem;
}

/* Overlay */
#loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1050;
  display: none;
}

#loading-overlay .loading-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--brand-dark);
}

@media (prefers-reduced-motion: reduce) {
  .card,
  .brand-trigger,
  .hero-video,
  .carousel-img,
  .whatsapp-button {
    transition: none !important;
  }
}

