/* Cabin Studio - Custom styles inspired by Colorlib Expert template */

:root {
  --primary: #4a2c7a;
  --primary-dark: #3a2260;
  --accent: #00bcd4;
  --accent-hover: #0097a7;
  --text-dark: #1a1a2e;
  --text-muted: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fc;
  --expert-purple-width: 72%;
}

* {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── Navbar ── */
.navbar-expert {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  display: flex;
  align-items: stretch;
  height: 148px;
  transition: height 0.35s ease, box-shadow 0.3s ease;
}

.navbar-expert.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

.navbar-expert.compact {
  height: 72px;
}

.navbar-expert .nav-brand-area {
  background: var(--primary);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  flex-shrink: 0;
}

.navbar-expert .nav-brand-area .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.navbar-expert .nav-brand-area .navbar-brand img {
  height: 130px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: height 0.35s ease;
}

.navbar-expert.compact .nav-brand-area .navbar-brand img {
  height: 52px;
}

.navbar-expert .nav-links-area {
  background: var(--primary);
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 1.5rem;
}

.navbar-expert .nav-links-area .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
  text-decoration: none;
}

.navbar-expert .nav-links-area .nav-link:hover,
.navbar-expert .nav-links-area .nav-link.active {
  color: var(--white);
}

.navbar-expert .nav-links-area .nav-link.active {
  border-bottom: 2px solid var(--white);
}

.navbar-expert .nav-cta-area {
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  flex-shrink: 0;
}

.navbar-expert .nav-cta-area .nav-link-pricing {
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.navbar-expert .nav-cta-area .nav-link-pricing:hover {
  color: var(--primary);
}

.navbar-expert .nav-cta-area .nav-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.navbar-expert .nav-cta-area .nav-instagram:hover {
  color: var(--accent);
  background: rgba(0, 188, 212, 0.1);
}

.btn-contact {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-contact:hover {
  background: var(--accent-hover);
  color: var(--white);
}

.navbar-toggler-custom {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 148px;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  z-index: 1029;
  padding: 1rem 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: top 0.35s ease;
}

.navbar-expert.compact + .mobile-nav {
  top: 72px;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-size: 0.95rem;
}

.mobile-nav .nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 148px;
  overflow: hidden;
}

.hero-bg-purple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 0;
}

.hero-bg-purple::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 75%;
  background: var(--white);
  border-top-left-radius: 120px;
}

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

.hero-text-col {
  color: var(--white);
}

.hero-content h1 {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  text-transform: none;
  letter-spacing: -0.01em;
  max-width: 640px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin-top: 1.5rem;
}

.hero-content .btn-hero {
  margin-top: 2rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.hero-content .btn-hero:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  z-index: 3;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  border-top-left-radius: 80px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

@media (min-width: 992px) {
  .navbar-expert {
    background: var(--white);
  }

  .navbar-expert::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: var(--expert-purple-width);
    height: 100%;
    background: var(--primary);
    z-index: 0;
  }

  .navbar-expert .nav-brand-area,
  .navbar-expert .nav-links-area,
  .navbar-expert .nav-cta-area {
    position: relative;
    z-index: 1;
    background: transparent;
  }

  .hero-bg-purple {
    width: var(--expert-purple-width);
    height: 88%;
    border-bottom-right-radius: 120px;
  }

  .hero-bg-purple::after {
    display: none;
  }
}

/* ── Section common ── */
.section-padding {
  padding: 6rem 0;
}

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

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

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

/* ── About ── */
.about-section {
  background: var(--white);
}

.about-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(74, 44, 122, 0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ── Gallery ── */
.gallery-section {
  background: var(--light-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 44, 122, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(74, 44, 122, 0.45);
}

.gallery-item .gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery-item:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item--hidden {
  display: none;
}

.gallery-item--revealed {
  display: block;
  animation: galleryFadeIn 0.35s ease;
}

@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

#galleryLoadMore.is-hidden {
  display: none;
}

/* ── Virtual Tour ── */
.virtual-tour-block {
  margin-bottom: 4rem;
}

.virtual-tour-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.virtual-tour-desc {
  max-width: 560px;
  font-size: 0.95rem;
}

.virtual-tour-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #020617;
  box-shadow: 0 15px 40px rgba(74, 44, 122, 0.2);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.virtual-tour-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #020617;
  /* iOS Safari: keep touches inside the iframe viewer */
  touch-action: none;
  -webkit-overflow-scrolling: auto;
}

/* ── Pricing ── */
.pricing-section {
  background: var(--primary);
  color: var(--white);
}

.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-dark);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  border: 3px solid var(--accent);
  position: relative;
}

.pricing-card .badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-card .plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card .plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 1rem 0 0.25rem;
}

.pricing-card .plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .plan-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  flex: 1;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card ul li i {
  color: var(--primary);
  font-size: 0.85rem;
}

.pricing-card .btn-plan {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
  width: 100%;
}

.pricing-card .btn-plan:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.pricing-card.featured .btn-plan {
  background: var(--accent);
}

.pricing-card.featured .btn-plan:hover {
  background: var(--accent-hover);
}

/* ── Contact ── */
.contact-section {
  background: var(--white);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info-item .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-wrap i {
  color: var(--white);
  font-size: 1.1rem;
}

.contact-info-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  text-decoration: none;
}

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

.contact-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(74, 44, 122, 0.15);
}

.contact-form .btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s;
  width: 100%;
}

.contact-form .btn-submit:hover {
  background: var(--accent-hover);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.pricing-card.featured .btn-plan:hover {
  background: var(--accent-hover);
}

.pricing-extra-box {
  margin-top: 2.5rem;
  padding: 2.25rem 2.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.pricing-extra-text {
  flex: 1;
  min-width: 220px;
}

.pricing-extra-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--white);
}

.pricing-extra-ref {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-extra-ref a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-extra-ref a:hover {
  color: #4dd0e1;
}

.pricing-extra-box .btn-plan {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background 0.2s;
}

.pricing-extra-box .btn-plan:hover {
  background: var(--accent-hover);
  color: var(--white);
}

/* ── Partners ── */
.partners-section {
  background: var(--white);
}

.partners-carousel {
  max-width: 900px;
  margin: 0 auto;
}

.partner-slide {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  aspect-ratio: 16 / 9;
  background: var(--primary);
}

.partner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.partner-slide:hover img {
  transform: scale(1.04);
}

.partner-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(180deg, transparent 35%, rgba(26, 26, 46, 0.85) 100%);
  color: var(--white);
}

.partner-slide-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.partner-slide-content p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
}

.partner-slide-content .btn-contact {
  align-self: flex-start;
}

.partner-slide-link {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  text-decoration: none;
}

.partners-carousel .carousel-control-prev,
.partners-carousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
  border-radius: 50%;
  background: rgba(74, 44, 122, 0.75);
}

.partners-carousel .carousel-control-prev {
  left: 0.75rem;
}

.partners-carousel .carousel-control-next {
  right: 0.75rem;
}

.partner-slide--soon {
  cursor: default;
}

.partner-slide--soon img {
  filter: brightness(0.7);
}

.btn-contact--muted {
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

/* ── Cookie banner & modal ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--white);
  border-top: 1px solid #e8e8ef;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.12);
  padding: 1rem 1.25rem;
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.55;
}

.cookie-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-cookie {
  border: none;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.btn-cookie-accept:hover {
  background: var(--accent-hover);
}

.btn-cookie-essential {
  background: var(--light-bg);
  color: var(--text-dark);
}

.btn-cookie-essential:hover {
  background: #e8e8ef;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0.6);
}

.cookie-modal-dialog {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e8e8ef;
}

.cookie-modal-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 0.25rem;
}

.cookie-modal-body {
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.cookie-modal-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.25rem 0 0.5rem;
}

.cookie-modal-body h3:first-of-type {
  margin-top: 0;
}

.cookie-modal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 1px solid #e8e8ef;
}

/* ── Footer ── */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 2rem 0;
  font-size: 0.85rem;
  text-align: center;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox .lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .section-padding {
    padding: 4rem 0;
  }

  .navbar-expert .nav-links-area,
  .navbar-expert .nav-cta-area .nav-link-pricing {
    display: none;
  }

  .navbar-toggler-custom {
    display: block;
    margin-left: auto;
  }

  .navbar-expert .nav-brand-area {
    flex: 1;
    padding: 0 20px;
    min-width: 0;
  }

  .navbar-expert .nav-cta-area {
    padding: 0 20px;
    gap: 0.5rem;
  }

  .navbar-expert .nav-brand-area .navbar-brand img {
    height: 110px;
  }

  .navbar-expert.compact .nav-brand-area .navbar-brand img {
    height: 44px;
  }

  .navbar-expert {
    height: 126px;
  }

  .navbar-expert.compact {
    height: 72px;
  }

  .mobile-nav {
    top: 126px;
  }

  .navbar-expert.compact + .mobile-nav {
    top: 72px;
  }

  .hero-section {
    padding-top: 126px;
  }

  .btn-contact {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .hero-section {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-bg-purple::after {
    display: none;
  }

  .hero-bg-purple {
    height: auto;
    min-height: 100%;
    bottom: 0;
  }

  .hero-content {
    padding: 1.5rem 20px 2.5rem;
  }

  .hero-content h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    max-width: 100%;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-image-col {
    order: 2;
  }

  .hero-text-col {
    order: 1;
  }

  .hero-image-wrap {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero-image-wrap img {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }

  .virtual-tour-wrapper {
    aspect-ratio: 4 / 3;
    min-height: 280px;
    height: min(62vh, 420px);
  }

  .virtual-tour-block {
    margin-bottom: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-card .plan-price {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .section-padding {
    padding: 3rem 0;
  }

  .navbar-expert {
    height: 110px;
  }

  .navbar-expert.compact {
    height: 64px;
  }

  .mobile-nav {
    top: 110px;
  }

  .navbar-expert.compact + .mobile-nav {
    top: 64px;
  }

  .hero-section {
    padding-top: 110px;
  }

  .navbar-expert .nav-brand-area {
    padding: 0 20px;
  }

  .navbar-expert .nav-cta-area {
    padding: 0 20px;
    gap: 0.35rem;
  }

  .navbar-expert .nav-cta-area .nav-instagram {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .btn-contact {
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
  }

  .hero-content {
    padding: 1rem 20px 2rem;
  }

  .hero-content h1 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .btn-cookie {
    flex: 1;
    text-align: center;
  }

  .about-stats {
    gap: 1.25rem;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .virtual-tour-wrapper {
    aspect-ratio: 1 / 1;
    min-height: 300px;
    height: min(70vw, 380px);
    border-radius: 8px;
  }

  .virtual-tour-desc {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-item.featured {
    grid-column: span 1;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .pricing-extra-box {
    padding: 1.75rem 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .pricing-extra-box .btn-plan {
    width: 100%;
    text-align: center;
  }

  .pricing-card ul li {
    font-size: 0.85rem;
  }

  .contact-form .btn-submit {
    padding: 0.75rem 1.5rem;
  }

  .footer {
    padding: 1.5rem 0;
    font-size: 0.8rem;
  }

  .footer p {
    line-height: 1.6;
  }

  .partner-slide-content {
    padding: 1.25rem;
  }

  .partners-carousel .carousel-control-prev,
  .partners-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}
