/* =====================================
   GLOBAL / ROOT
   ===================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  color: #000;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/cb_back.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.80;
  z-index: -1;
  pointer-events: none;
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.80;
  z-index: -1;
  pointer-events: none;
}
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap,
.section-inner {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
  padding-inline: 1rem;
}

.hidden {
  display: none !important;
}

.center {
  text-align: center;
}

/* =====================================
   BUTTONS
   ===================================== */

.btn,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #d7263d 0%, #e63946 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(215, 38, 61, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 38, 61, 0.6);
}

.btn-outline {
  background: transparent;
  border: 2px solid #f2c14e;
  color: #f2c14e;
}

.btn-outline:hover {
  background: #f2c14e;
  color: #000;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

/* =====================================
   TOPBAR
   ===================================== */

.topbar {
  background: #111;
  color: #f5f5f5;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.6rem;
  gap: 1rem;
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid #f2c14e;
  color: #f2c14e;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.topbar-cta:hover {
  background: #f2c14e;
  color: #000;
}

/* =====================================
   HEADER
   ===================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: #f2c14e;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand:hover {
  transform: scale(1.05);
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f2c14e;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d7263d;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: #f2c14e;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger:hover {
  transform: rotate(90deg);
  color: #f2c14e;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 0, 0, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu:not(.hidden) {
  display: flex;
}

.mobile-menu a {
  font-size: 1.1rem;
  text-decoration: none;
  color: #ffffff;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: #f2c14e;
  padding-left: 1rem;
}

/* =====================================
   HERO
   ===================================== */

.hero {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 50%, rgba(215, 38, 61, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(242, 193, 78, 0.1) 0%, transparent 50%), #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(215, 38, 61, 0.15) 0%, transparent 70%);
  top: -250px;
  right: -250px;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 193, 78, 0.1) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(50px, 50px); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #f2c14e 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  line-height: 1.2;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-size: 1.2rem;
  opacity: 0.9;
  color: #e0e0e0;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero-badges li {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: #d7263d;
  font-weight: 700;
}

.hero-badges li:hover {
  background: rgba(242, 193, 78, 0.2);
  border-color: #f2c14e;
  transform: translateY(-2px);
}

/* =====================================
   SECTIONS
   ===================================== */

.section {
  padding: 5rem 0;
  background: rgba(10, 10, 10, 0.88);
  color: #fdfdfd;
}

.section--dark {
  background: rgba(5, 5, 5, 0.93);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: #f2c14e;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d7263d, transparent);
  border-radius: 2px;
}

.section-text {
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #d0d0d0;
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================================
   WHAT WE DO
   ===================================== */

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.what-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.what-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(215, 38, 61, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.what-card:hover::before {
  opacity: 1;
}

.what-card:hover {
  transform: translateY(-10px);
  border-color: #d7263d;
  box-shadow: 0 10px 30px rgba(215, 38, 61, 0.3);
}

.what-icon {
  margin-bottom: 1rem;
  border-radius: 12px;
  width: 100%;
  height: 220px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.what-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s ease;
}

.what-card:hover .what-icon img {
  transform: scale(1.05);
}

.what-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #f2c14e;
}

.what-card p {
  color: #b0b0b0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =====================================
   PRICING / PACKAGES
   ===================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #d7263d;
  box-shadow: 0 15px 40px rgba(215, 38, 61, 0.3);
}

.pricing-card.featured {
  border-color: #f2c14e;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #d7263d 0%, #e63946 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(215, 38, 61, 0.4);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
  font-size: 1.3rem;
  color: #f2c14e;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
}

.price-duration {
  font-size: 1.1rem;
  color: #888;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.pricing-features li {
  padding: 0.4rem 0;
  color: #d0d0d0;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* =====================================
   CAROUSEL / GALLERY
   ===================================== */

.carousel {
  position: relative;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.carousel-track-wrapper {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  display: block;
  background: #000;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #f2c14e;
  color: #f2c14e;
  font-size: 2.5rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: #f2c14e;
  color: #000;
}

.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }

.carousel-dots {
  display: flex;
  gap: 0.6rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid #f2c14e;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: #f2c14e;
}

/* =====================================
   TESTIMONIALS / REVIEWS
   ===================================== */

.testimonial-box {
  max-width: 800px;
  margin: 3rem auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}

.testimonial-box:hover {
  border-color: #f2c14e;
  box-shadow: 0 10px 30px rgba(242, 193, 78, 0.2);
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-size: 1.1rem;
  color: #f2c14e;
  font-weight: 600;
}

/* =====================================
   CONTACT FORM
   ===================================== */

.booking-form {
  max-width: 700px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #f2c14e;
  background: rgba(255, 255, 255, 0.08);
}

.booking-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 150px;
}

.booking-form select {
  grid-column: 1 / -1;
}

.booking-form button {
  grid-column: 1 / -1;
}

#confirmation {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(76, 175, 80, 0.2);
  color: #76ff7a;
  text-align: center;
  font-weight: 600;
}

/* =====================================
   FOOTER
   ===================================== */

.footer {
  padding: 1.2rem 0;
  text-align: center;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.footer h3 {
  color: #f2c14e;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.footer p {
  margin: 0.5rem 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.6rem;
}

.social-icons a {
  color: #f2c14e;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #d7263d;
  transform: translateY(-3px);
}

/* =====================================
   RESPONSIVE
   ===================================== */

@media (max-width: 768px) {
  .topbar .wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

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

  .what-we-do-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  .section-title {
    font-size: 1.8rem;
  }

  .testimonial-box {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }
}

@media (min-width: 1400px) {
  .hero {
    padding-top: 8rem;
  }

  .section {
    padding: 6rem 0;
  }
}