:root {
  --primary: #FF6B35;
  --primary-light: #FF8F5E;
  --primary-dark: #E8531C;
  --accent: #FFD700;
  --accent2: #7BC8F6;
  --bg: #FFF8F4;
  --bg2: #FFF0E8;
  --dark: #1A1A2E;
  --dark2: #2D2D44;
  --text: #3D2B1F;
  --text-light: #7A6055;
  --white: #FFFFFF;
  --shadow: 0 8px 32px rgba(255,107,53,0.18);
  --shadow-lg: 0 20px 60px rgba(255,107,53,0.22);
  --radius: 24px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Comfortaa', cursive;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,248,244,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,107,53,0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 24px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.12);
}

.logo {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: 2px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-emoji { font-size: 28px; }

nav { display: flex; gap: 24px; align-items: center; }

nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

nav a:hover { color: var(--primary); }

.header-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}

.header-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.45) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,248,244,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--primary); }

.close-menu {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 60px 60px;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-bg-blob-1 {
  width: 500px; height: 500px;
  background: var(--primary);
  top: -100px; right: -100px;
}

.hero-bg-blob-2 {
  width: 350px; height: 350px;
  background: var(--accent);
  top: 52%; left: -80px;
  transform: translateY(-50%);
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

h1 {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

h1 span { color: var(--primary); }

.hero-city {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,107,53,0.5);
}

.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 16px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(61,43,31,0.15);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fadeInUp 0.6s 0.5s ease both;
}

.stat-item { text-align: left; }
.stat-num {
  font-family: 'Russo One', sans-serif;
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-image {
  position: relative;
  z-index: 1;
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent2));
  border-radius: calc(var(--radius) + 3px);
  z-index: -1;
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 { bottom: 24px; left: -24px; }
.hero-float-2 { top: 24px; right: -24px; animation-delay: -2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTION STYLES ===== */
section { padding: 80px 60px; position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,107,53,0.1);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

h2 {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--dark);
  line-height: 1.1;
}

h2 span { color: var(--primary); }

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ===== COSTUMES SECTION ===== */
.costumes-section { background: var(--bg2); }

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: calc(33.333% - 16px);
}

.costume-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
}

.costume-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.costume-card:hover .costume-img img {
  transform: scale(1.05);
}

.costume-img {
  height: 380px;
  overflow: hidden;
  position: relative;
}

.costume-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5f0eb;
  transition: transform 0.5s ease;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,10,20,0.92);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  animation: lbIn 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: default;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 20px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  letter-spacing: 0.5px;
}
.lightbox-close {
  position: absolute;
  top: -16px; right: -16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,107,53,0.5);
  transition: all 0.2s;
  line-height: 1;
}
.lightbox-close:hover { background: var(--primary-dark); transform: scale(1.1); }

.costume-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.costume-card:hover .costume-img-overlay { opacity: 1; }

.costume-info {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.costume-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--dark);
}

.costume-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 50px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  transition: all 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,107,53,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* ===== PRICING ===== */
.pricing-section { background: var(--dark); }

.pricing-section h2 { color: var(--white); }
.pricing-section .section-tag {
  background: rgba(255,215,0,0.15);
  color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.price-card:hover {
  background: rgba(255,107,53,0.1);
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255,107,53,0.2);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.price-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.price-name {
  font-family: 'Russo One', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Russo One', sans-serif;
  font-size: 42px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.price-from { font-size: 14px; color: rgba(255,255,255,0.5); letter-spacing: 1px; }

.price-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 20px auto;
}

.price-features {
  list-style: none;
  text-align: left;
}

.price-features li {
  padding: 8px 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.price-features li:last-child { border: none; }

.price-features li::before {
  content: '★';
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-section { background: var(--bg); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,107,53,0.08);
  transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(255,107,53,0.25); }
.faq-item.open { border-color: rgba(255,107,53,0.4); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
}

.faq-question-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.4;
}

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,107,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg2); }

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
  font-size: 24px;
}

.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 24px;
}

.review-slide {
  flex: 0 0 calc(50% - 12px);
  min-width: calc(50% - 12px);
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
  background: #f8f4f0;
  display: block;
}

.review-meta {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.review-meta-text { flex: 1; }
.review-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}
.review-rating { font-size: 12px; color: var(--accent); letter-spacing: 2px; }

/* ===== SOCIAL / INSTAGRAM ===== */
.social-section { background: var(--dark); text-align: center; }

.social-section h2 { color: var(--white); margin-bottom: 16px; }

.social-section p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 36px;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(220,39,67,0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(220,39,67,0.55);
}

/* ===== AVAIL 24/7 BANNER ===== */
.avail-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.avail-banner::before {
  content: '24/7';
  position: absolute;
  font-family: 'Russo One', sans-serif;
  font-size: 280px;
  color: rgba(255,255,255,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

.avail-banner h2 { color: var(--white); margin-bottom: 16px; }
.avail-banner p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
footer {
  background: #111122;
  padding: 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand .logo { margin-bottom: 12px; display: inline-flex; }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-phone {
  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-phone:hover { color: var(--accent); }

.footer-legal {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

/* ===== SOCIAL ICON BUTTONS ===== */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-icon-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.social-icon-btn:nth-child(1):hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.social-icon-btn:nth-child(2):hover { background: #7360F2; border-color: transparent; }
.social-icon-btn:nth-child(3):hover { background: #25D366; border-color: transparent; }
.social-icon-btn:nth-child(4):hover { background: #229ED9; border-color: transparent; }

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  background: #0d0d1a;
  padding: 20px 60px;
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.oferta-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1px;
}

.oferta-link:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero { padding: 90px 40px 60px; gap: 32px; }
  section { padding: 70px 40px; }
  footer { padding: 48px 40px; }
  .footer-bottom { padding: 20px 40px; }
  .carousel-slide { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 90px 32px 60px;
    text-align: center;
  }
  .hero-content { order: 2; }
  .hero-image { order: 1; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; text-align: center; }
  .hero-img-wrap img { height: 380px; }
  .hero-float-1, .hero-float-2 { display: none; }
  nav { display: none; }
  .burger { display: flex; }
  section { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  footer { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; }
  .avail-banner { padding: 48px 24px; }
  .carousel-slide { flex: 0 0 calc(80% - 12px); min-width: calc(80% - 12px); }
  .review-slide { flex: 0 0 90%; min-width: 90%; }
  /* Fix hero text & blobs centering on mobile */
  .hero-desc { margin-left: auto; margin-right: auto; text-align: center; }
  .hero-city { text-align: center; }
  .hero-bg-blob-1 { right: 50%; transform: translateX(50%); top: -80px; }
  .hero-bg-blob-2 { left: 50%; top: auto; bottom: 20px; transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .hero { padding: 80px 20px 48px; }
  h1 { font-size: 36px; }
  section { padding: 48px 20px; }
  .hero-img-wrap img { height: 300px; }
  .carousel-slide { flex: 0 0 calc(90% - 8px); min-width: calc(90% - 8px); }
  .hero-badge { font-size: 11px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 16px; }
  .carousel-prev { left: 4px; }
  .carousel-next { right: 4px; }
}