/* Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Exot350b';
  src: url('./Exot350b.TTF') format('truetype'),
       url('./Exot350b.ttf') format('truetype'),
       url('Exot350b.TTF') format('truetype'),
       url('Exot350b.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Prevents invisible text while font loads */
}

html {
  scroll-behavior: smooth;
}

/* Smooth scroll with offset for fixed header */
@media (min-width: 769px) {
  html {
    scroll-padding-top: 80px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2733;
  background: #f8fafc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Top Bar */
.top-bar {
  background: #111827;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 0;
}

.top-bar-contact a {
  margin-left: 16px;
  color: #fbbf24;
  font-weight: 500;
}

/* WhatsApp icon helpers */
.whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.icon-whatsapp {
  width: 18px;
  height: 18px;
  color: #25d366;
  flex-shrink: 0;
}

.whatsapp-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Phone and Email contact helpers */
.phone-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.icon-phone {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  flex-shrink: 0;
}

.email-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.icon-mail {
  width: 18px;
  height: 18px;
  color: #6b7280;
  flex-shrink: 0;
}

/* Navbar */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  transform: scale(1.35);
  transform-origin: left center;
  margin-left: -14px;
  margin-right: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #111827;
  font-size: 0.9rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: 'Exot350b', 'MyCustomFont', Georgia, 'Times New Roman', serif;
}

.logo-text small {
  font-weight: 400;
  font-size: 0.7rem;
  color: #6b7280;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #f59e0b;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 26px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  position: relative;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 4px;
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    width: 100%;
    max-width: 260px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 100;
  }

  .nav-links li {
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-inner {
    padding: 8px 0;
  }
}

/* Banner placeholder */
.banner-placeholder {
  background: #fffaf0;
  border-bottom: 1px solid #f3e8d5;
}

.banner-placeholder-inner {
  padding: 0;
  text-align: center;
}

/* Make banner span full viewport width, ignoring container max-width */
.banner-placeholder .banner-placeholder-inner {
  width: 100vw;
  max-width: 100vw;
  padding-left: 0;
  padding-right: 0;
}

.banner-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a6716;
  margin-bottom: 12px;
}

.banner-frame {
  width: 100vw;
  margin: 0;
  height: 320px;
  border: none;
  border-radius: 0;
  background: none;
  overflow: hidden;
  color: #b45309;
}

.banner-frame img {
  width: 100vw;
  height: 100%;
  border-radius: 0;
  object-fit: cover; /* fill entire width, crop if needed */
  object-position: center;
  background: #fffaf0;
}

/* Show full banner image on mobile */
@media (max-width: 768px) {
  .banner-frame {
    height: auto;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .banner-frame img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain; /* Show full image without cropping */
    object-position: center;
  }
}

@media (max-width: 480px) {
  .banner-frame {
    min-height: 180px;
  }
}

/* Collections carousel */
.collections-carousel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 clamp(16px, 5vw, 60px);
}

.carousel-window {
  overflow: hidden;
  flex: 1;
  border-radius: 24px;
  background: ;
  box-shadow: inset 0 0 0 1px rgba(250, 204, 21, 0.25),
    0 25px 60px rgba(15, 23, 42, 0.15);
  min-height: 360px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.collection-slide {
  flex: 0 0 100%;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.collection-slide img{ 
  max-width: 100%;
  display: flex;
  height: 360px;
  
}

.collection-slide p {
  color: #4b5563;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.collection-slide.is-active {
  opacity: 1;
}

.carousel-control {
  border: none;
  background: #111827;
  color: #f9fafb;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

.collection-info-panel {
  max-width: 900px;
  margin: 32px auto 0;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 18px;
  background: linear-gradient(135deg, #fffefb, #fff6e3);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.collection-info-panel h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin-bottom: 10px;
  color: #92400e;
}

.collection-info-panel p {
  color: #374151;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(180, 83, 9, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.indicator.is-active {
  background: #b45309;
  transform: scale(1.1);
}

.indicator:focus-visible {
  outline: 2px solid #fbbf24;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .collections-carousel {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .carousel-control {
    width: 100%;
    border-radius: 12px;
    height: 50px;
    font-size: 1.2rem;
  }

  .carousel-control.prev {
    order: 1;
  }

  .carousel-window {
    order: 2;
  }

  .carousel-control.next {
    order: 3;
  }

  .carousel-track {
    min-height: 240px;
  }

  .collection-slide {
    padding: 20px;
  }

  .carousel-indicators {
    order: 4;
    margin-top: 16px;
  }
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #fef3c7, #f9fafb);
  padding: 60px 0 50px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #111827;
}

.hero-text p {
  font-size: 1rem;
  max-width: 32rem;
  color: #4b5563;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-meta span {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Hero card */
.hero-image-card {
  background: #111827;
  color: #f9fafb;
  border-radius: 20px;
  padding: 16px;
  position: relative;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
}

.hero-image-card iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: none;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(248, 250, 252, 0.08);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo {
  height: 260px;
  border-radius: 14px;
  border: 2px dashed rgba(249, 250, 251, 0.8);
  background: radial-gradient(circle at top, #fbbf24, #f97316);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  color: #f9fafb;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-photo::after {
  content: "PLACE YOUR BANNER PHOTO HERE (RECOMMENDED 1600 x 600 px)";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px dashed rgba(249, 250, 251, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
}

.hero-caption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #d1d5db;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.1s ease, box-shadow 0.1s ease;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(135deg, #fbbf24, #d97706);
  color: #111827;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(251, 191, 36, 0.55);
}

.btn.ghost {
  background: transparent;
  color: #111827;
  border-color: #d1d5db;
}

.btn.ghost:hover {
  background: #111827;
  color: #f9fafb;
  border-color: #111827;
}

.btn.full-width {
  width: 100%;
}

/* Sections */
.section {
  padding: 50px 0;
  background: #f9fafb;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #111827;
  color: #e5e7eb;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 14px;
  color: #111827;
}

.section.accent h2,
.section.accent h3 {
  color: #f9fafb;
}

.section-subtitle {
  margin-top: -6px;
  margin-bottom: 24px;
  color: #6b7280;
}

.center {
  text-align: center;
}

/* Layout helpers */
.two-column {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.cards-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-box {
  background: linear-gradient(145deg, #111827, #020617);
  color: #e5e7eb;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.55);
}

.highlight-box h3 {
  margin-bottom: 8px;
}

.highlight-box ul {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.95rem;
}

/* Cards */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

.card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
  color: #111827;
}

.card p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Consultation section */
.consultation-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: start;
}

.consult-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.consult-card {
  background: #f9fafb;
  color: #111827;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.4);
}

.consult-form {
  margin-top: 8px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: #374151;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.25);
}

.form-note {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #6b7280;
}

/* Contact section */
.contact-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.contact-details h3 {
  margin-top: 10px;
  font-size: 1rem;
  color: #111827;
}

.contact-details p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 4px;
}

.contact-details a {
  color: #f59e0b;
}

.map-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.map-placeholder {
  margin-top: 10px;
  border-radius: 12px;
  background: repeating-linear-gradient(
      45deg,
      #e5e7eb,
      #e5e7eb 10px,
      #f3f4f6 10px,
      #f3f4f6 20px
    );
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #4b5563;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Legal Content Sections */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin-bottom: 12px;
  color: #111827;
  line-height: 1.4;
}

.legal-section p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 12px;
}

.legal-section ul {
  margin: 12px 0;
  padding-left: 24px;
  list-style-type: disc;
}

.legal-section li {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 8px;
}

.legal-section a {
  color: #f59e0b;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #d97706;
}

.section.accent .legal-section {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section.accent .legal-section h3 {
  color: #f9fafb;
}

.section.accent .legal-section p,
.section.accent .legal-section li {
  color: #e5e7eb;
}

.section.accent .legal-section a {
  color: #fbbf24;
}

.section.accent .legal-section a:hover {
  color: #f59e0b;
}

/* Footer */
.footer {
  background: radial-gradient(circle at top, rgba(8, 47, 73, 0.45), transparent), #020617;
  color: #c0c7d3;
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 24px;
}

.footer-brand,
.footer-info,
.footer-links {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h4 {
  color: #f9fafb;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 8px;
}

.footer-link-list a {
  color: #c0c7d3;
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 0.92rem;
  color: #e5e7eb;
  text-align: left;
}

.footer-brand .phone-contact,
.footer-brand .email-contact,
.footer-brand .whatsapp-contact {
  margin-top: 10px;
  font-size: 0.84rem;
  color: #c0c7d3;
}

.footer-brand .phone-contact a,
.footer-brand .email-contact a,
.footer-brand .whatsapp-contact a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-brand .phone-contact a:hover,
.footer-brand .email-contact a:hover,
.footer-brand .whatsapp-contact a:hover {
  color: #fbbf24;
  text-decoration: underline;
}

.footer-brand .email-contact .icon-mail {
  color: #6b7280;
}

.footer-brand .phone-contact .icon-phone {
  color: #f59e0b;
}

.footer-brand .whatsapp-contact .icon-whatsapp {
  color: #25d366;
}

.footer-info {
  align-items: flex-start;
}

.footer-info h4 {
  color: #f9fafb;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-align: left;
}

.footer-info p {
  font-size: 0.84rem;
  margin-top: 6px;
  text-align: left;
}


.footer-links {
  align-items: flex-start;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner,
  .two-column,
  .cards-grid,
  .consultation-inner,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-brand,
  .footer-info,
  .footer-links {
    width: 100%;
    align-items: flex-start;
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 40px;
  }

  .hero-inner {
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-family: 'Exot350b', 'MyCustomFont', serif;
    font-weight: normal;
  }

  .legal-content {
    padding: 0 8px;
  }

  .legal-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .section h2 {
    font-size: clamp(1.4rem, 4vw, 1.7rem);
  }

  .hero-image-card {
    padding: 12px;
  }

  .hero-image-card iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 200px;
  }

  .map-placeholder iframe {
    width: 100% !important;
    height: 200px !important;
  }

  .collection-info-panel {
    margin-top: 24px;
    padding: 20px;
  }

  .consult-card {
    padding: 16px 18px;
  }

  .map-card {
    padding: 14px 16px;
  }

  .logo-img {
    height: 50px;
    transform: scale(1.2);
    margin-left: -10px;
    margin-right: 8px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .top-bar {
    font-size: 0.8rem;
  }

  .top-bar-inner {
    padding: 8px 0;
  }
}

@media (max-width: 640px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .hero {
    padding: 30px 0 40px;
  }

  .section {
    padding: 40px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* or contain, depending on your need */
    border-radius: 10px;
  }  

  .carousel-control {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .legal-section {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .legal-section h3 {
    font-size: 1.1rem;
  }

  .legal-section p,
  .legal-section li {
    font-size: 0.9rem;
  }

  .footer {
    padding: 30px 0 20px;
  }

  .footer-inner {
    gap: 30px;
  }

  .container {
    padding: 0 12px;
  }

  .consultation-inner {
    gap: 24px;
  }

  .contact-grid {
    gap: 24px;
  }

  .two-column {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .section h2 {
    font-size: 1.3rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    height: 45px;
  }

  .carousel-window {
    min-height: 200px;
  }

  .collection-slide {
    padding: 16px;
    min-height: 200px;
  }

  .legal-content {
    padding: 0 4px;
  }

  .legal-section ul {
    padding-left: 20px;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.85rem;
    padding: 7px 9px;
  }

  .hero-image-card {
    padding: 12px;
    border-radius: 16px;
  }

  .hero-image-card iframe {
    border-radius: 10px;
  }

  .whatsapp-inline {
    font-size: 0.8rem;
  }

  .icon-whatsapp {
    width: 16px;
    height: 16px;
  }

  .top-bar {
    font-size: 0.75rem;
  }

  .top-bar-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .top-bar-contact span {
    display: block;
  }

  .footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}
