/* ==========================================================================
   Premium Design Tokens & Variables (Glassmorphism & Modern UI)
   ========================================================================== */
:root {
  /* Premium Colors */
  --color-brand-50: #fff5f6;
  --color-brand-100: #fee2e4;
  --color-brand-500: #fc5c6a;
  --color-brand-600: #f92134;
  /* Primary Red */
  --color-brand-700: #d61828;
  --color-brand-900: #333333;
  /* Dark Gray */

  --color-accent-500: #ff3a4c;
  --color-accent-grad: linear-gradient(135deg, #f92134 0%, #ff3a4c 100%);

  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #128C7E;

  --bg-main: #fefefe;
  /* Off White */
  --bg-surface: #ffffff;

  /* Text */
  --text-main: #333333;
  --text-muted: #73747b;
  /* Darkened from #cccdd3 for readability */
  --text-light: #fefefe;

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Premium Shadows & Glass */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.5);
  --glass-blur: blur(16px);

  /* Transitions */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s var(--ease-spring);
}

/* ==========================================================================
   Reset & Core
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--color-accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mt-xl {
  margin-top: var(--space-xl);
}

.hidden {
  display: none !important;
}

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

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

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.animate-up {
  animation: fadeInUp 0.8s var(--ease-spring) forwards;
  opacity: 0;
}

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

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

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

/* ==========================================================================
   Components
   ========================================================================== */

/* Navbar (Glassmorphism) */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  padding-block: var(--space-sm);
  transition: all var(--transition-smooth);
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-main);
  gap: 0.5rem;
}

.logo__img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo span {
  color: var(--color-brand-600);
}

/* Footer logo image */
.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* SVGs on dark bg may need a filter if they are dark-colored */
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-sm);
}

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--color-brand-600);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-brand-50) 0%, var(--bg-main) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: var(--space-md);
  color: var(--text-main);
}

.hero__content p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  max-width: 90%;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
}

/* Hero Slideshow — crossfade */
.hero__visual {
  position: relative;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.hero-slideshow__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.6s ease;
  will-change: opacity, transform;
}

.hero-slideshow__img.active {
  opacity: 1;
  transform: scale(1);
}


/* Informational Sections */
.section {
  padding-block: var(--space-2xl);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-inline: auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

/* Features/Services */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  background: var(--bg-surface);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-100);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--color-brand-50);
  color: var(--color-brand-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

/* Clients/Trust Section */
.clients-section {
  background: var(--color-brand-900);
  color: white;
  padding-block: var(--space-xl);
}

.clients-section h2 {
  color: white;
}

.clients-section p {
  color: rgba(255, 255, 255, 0.8);
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  align-items: center;
  opacity: 0.7;
}

.client-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Infinite Marquee Carousel */
.marquee {
  overflow: hidden;
  width: 100%;
  padding-block: var(--space-sm);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  width: max-content;
}

.marquee__track img {
  height: 150px;
  width: auto;
  object-fit: contain;

  opacity: 0.65;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.marquee__track img:hover {
  opacity: 1;
}

.marquee--left {
  animation: marquee-left 35s linear infinite;
}

.marquee--right {
  animation: marquee-right 35s linear infinite;
}

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

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

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

  100% {
    transform: translateX(0);
  }
}

/* Pause on hover */
.marquee:hover .marquee__track {
  animation-play-state: paused;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-accent-grad);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid #cccdd3;
}

.btn--outline:hover {
  border-color: var(--color-brand-600);
  color: var(--color-brand-600);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: white;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Virtual Catalog */
.catalog-section {
  background: var(--bg-surface);
  position: relative;
}

.catalog-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.categories-filter {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  background: var(--bg-main);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-smooth);
}

.filter-btn:hover {
  background: var(--color-brand-50);
  color: var(--color-brand-600);
}

.filter-btn.active {
  background: var(--color-brand-900);
  color: white;
  border-color: var(--color-brand-900);
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
}

/* Catalog Controls & Search */
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  align-items: center;
}

.search-bar {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg-surface);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-brand-500);
  box-shadow: var(--shadow-md);
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-main);
  position: relative;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}

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

/* Image Gallery Controls */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-brand-600);
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

.product-card:hover .gallery-nav {
  opacity: 1;
}

.gallery-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.gallery-dot.active {
  background: white;
  transform: scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0; /* Starts hidden, animation makes it visible */
}

.product-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.product-card__desc {
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes skeletonLoading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ==========================================================================
   Footer — Premium 4-column layout
   ========================================================================== */
.footer {
  background: var(--color-brand-900);
  color: rgba(255, 255, 255, 0.75);
}

/* Main grid */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
}

.footer__col {}

/* Logo */
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.6);
}

/* Section headings */
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-md);
}

/* Social icons */
.footer__socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--color-brand-600);
  color: white;
  transform: translateY(-2px);
}

/* WhatsApp phone links */
.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer__phone-link i {
  font-size: 1.2rem;
  color: #25D366;
}

.footer__phone-link:hover {
  color: white;
}

/* Navigation links */
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* Schedule */
.footer__schedule {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__schedule-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__schedule-day {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  min-width: 70px;
}

/* Google Maps embed */
.footer__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.footer__map-wrap iframe {
  width: 100%;
  height: 200px;
  display: block;
  border: none;
  filter: grayscale(20%);
}

/* Copyright bar */
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: var(--space-sm);
}

.footer__bottom p {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Dashboard Forms */
.glass-panel {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
  background: var(--bg-main);
}

.sidebar {
  width: 280px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  background: var(--bg-surface);
  position: sticky;
  top: 0;
  height: 100vh;
}

.sidebar-header {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: var(--space-md);
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.sidebar-nav a i {
  font-size: 1.1rem;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--color-brand-50);
  color: var(--color-brand-600);
}

.dashboard-main {
  flex: 1;
  padding: var(--space-xl);
  overflow-y: auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: var(--bg-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-brand-500);
  background: var(--bg-surface);
}

.grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.full-width {
  grid-column: 1 / -1;
}

.flex-grow {
  flex-grow: 1;
}

.dashboard-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: flex-end;
}

.table-wrapper {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.table th {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.table tbody tr {
  transition: background var(--transition-fast);
}

.table tbody tr:hover {
  background: var(--color-brand-50);
}

/* Drag & Drop Table Sortable Styles */
.drag-handle {
  cursor: grab;
  color: var(--text-muted);
  font-size: 1.25rem;
  padding-right: 0.5rem;
  transition: color var(--transition-fast);
}

.drag-handle:hover {
  color: var(--color-brand-600);
}

.drag-handle:active {
  cursor: grabbing;
}

.sortable-ghost {
  opacity: 0.4;
  background-color: var(--color-brand-100) !important;
}

.sortable-drag {
  background-color: white !important;
  box-shadow: var(--shadow-lg) !important;
  cursor: grabbing !important;
}

/* Toggle Button */
.btn-toggle {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-toggle.active {
  color: var(--color-brand-500);
}
.btn-toggle.inactive {
  color: var(--text-muted);
}

/* Quill Editor Fixes */
.ql-toolbar.ql-snow {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-color: #e2e8f0;
  font-family: var(--font-body);
}
.ql-container.ql-snow {
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  border-color: #e2e8f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* Utilities */
.mt-xl {
  margin-top: var(--space-xl);
}

.hidden {
  display: none !important;
}

.text-danger {
  color: var(--color-brand-600);
}

.text-center {
  text-align: center;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero__content p {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

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

  .dashboard-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

  .marquee__track {
    gap: var(--space-xl);
  }

  .marquee__track img {
    height: 100px;
  }
}

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

  .footer__map-wrap iframe {
    height: 180px;
  }

  .marquee__track {
    gap: var(--space-lg);
  }

  .marquee__track img {
    height: 80px;
  }
}