/* ========================
   KOBY BARBERS - STYLESHEET
   Modern Barbershop Website
   ======================== */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --background: hsl(0, 0%, 4%);
  --foreground: hsl(45, 10%, 95%);
  --card: hsl(0, 0%, 7%);
  --card-foreground: hsl(45, 10%, 95%);
  --muted: hsl(0, 0%, 12%);
  --muted-foreground: hsl(0, 0%, 60%);
  --border: hsl(0, 0%, 18%);

  /* Primary - Gold */
  --gold: hsl(43, 74%, 49%);
  --gold-light: hsl(43, 74%, 60%);
  --gold-dark: hsl(43, 74%, 35%);

  /* Secondary - Emerald */
  --emerald: hsl(160, 84%, 25%);
  --emerald-light: hsl(160, 84%, 35%);

  /* Fonts */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Shadows */
  --shadow-gold: 0 4px 30px hsl(43 74% 49% / 0.2);
  --shadow-lg: 0 20px 60px hsl(0 0% 0% / 0.5);

  /* Radius */
  --radius: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* === CONTAINER === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === UTILITIES === */
.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

/* === ICONS === */
.icon {
  width: 20px;
  height: 20px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  justify-content: center;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--background);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px hsl(43 74% 49% / 0.4);
}

.btn-gold-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--background);
}

.btn-xl {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: hsl(0 0% 4% / 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-display);
}

.logo-accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--muted-foreground);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.phone-link:hover {
  color: var(--gold);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--foreground);
  position: relative;
  transition: all 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu {
  display: none;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--muted-foreground);
  font-weight: 500;
}

.mobile-link:hover {
  color: var(--gold);
}

.mobile-menu-cta {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero.jpg") center/cover no-repeat;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--background),
    hsl(0 0% 4% / 0.9),
    hsl(0 0% 4% / 0.5)
  );
}

.hero-content {
  max-width: 800px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: hsl(0 0% 12% / 0.5);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-badge .icon {
  fill: var(--gold);
  color: var(--gold);
}

.hero-badge span {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: hsl(0 0% 7% / 0.5);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.info-card .icon {
  color: var(--gold);
  width: 24px;
  height: 24px;
}

.info-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}

/* === FEATURE HIGHLIGHTS SECTION === */
.feature-highlights {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-top: -6rem;
}

.feature-highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    hsl(160 84% 25% / 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.feature-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-highlight-box {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    hsla(0, 0%, 0%, 0.15) 0%,
    hsla(43, 96%, 18%, 0.1) 100%
  );
  border: 2px solid hsl(43 74% 49% / 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.feature-highlight-box:hover {
  border-color: hsl(43 74% 49% / 0.6);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px hsl(43 74% 49% / 0.25);
}

.feature-highlight-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  box-shadow: 0 8px 24px hsl(43 74% 49% / 0.35);
}

.feature-highlight-icon .icon {
  width: 36px;
  height: 36px;
  color: var(--background);
}

.feature-highlight-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.feature-highlight-text {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .feature-highlights-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* === ABOUT SECTION === */
.about-section {
  padding: 6rem 0;
  background: var(--card);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, hsl(43 74% 49% / 0.05), transparent);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-text-secondary {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.highlight-item .icon {
  color: var(--gold);
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.875rem;
  color: var(--foreground);
}

/* Features */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: hsl(0 0% 12% / 0.3);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: hsl(43 74% 49% / 0.5);
  background: hsl(0 0% 12% / 0.5);
}

.feature-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: hsl(43 74% 49% / 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: hsl(43 74% 49% / 0.2);
}

.feature-icon .icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: hsl(0 0% 12% / 0.3);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
  padding: 6rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "\\201C";
  position: absolute;
  top: 10%;
  left: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: hsl(43 74% 49% / 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testimonials-section::after {
  content: "\\201D";
  position: absolute;
  bottom: 10%;
  right: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: hsl(43 74% 49% / 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  transform: rotate(180deg);
}

.testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.testimonials-subtitle {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-top: 1rem;
}

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

.testimonial-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card:hover {
  border-color: hsl(43 74% 49% / 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px hsl(0 0% 0% / 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
}

.testimonial-stars .star {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  color: var(--foreground);
  font-size: 1.05rem;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}
.author-name {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
}

.trust-badge .icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  fill: var(--gold);
}

.trust-badge span {
  font-weight: 500;
}

/* === SERVICES SHOWCASE SECTION === */
.services-showcase {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    hsl(0 0% 4%) 0%,
    hsl(0 0% 6%) 50%,
    hsl(0 0% 4%) 100%
  );
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 140%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    hsl(43 74% 49% / 0.03) 0%,
    transparent 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.service-showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  background: #000000;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(43 74% 49% / 0.15);
  box-shadow: 0 10px 40px hsl(0 0% 0% / 0.4);
  transition: all 0.4s ease;
}

.service-showcase-item:hover {
  border-color: hsl(43 74% 49% / 0.3);
  box-shadow: 0 15px 50px hsl(0 0% 0% / 0.6), 
              0 0 30px hsl(43 74% 49% / 0.1);
  transform: translateY(-4px);
}

.service-showcase-item:last-of-type {
  margin-bottom: 4rem;
}

/* Reverse layout for alternating */
.service-reverse {
  direction: rtl;
}

.service-reverse > * {
  direction: ltr;
}

.service-showcase-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  height: 500px;
}

.service-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-showcase-item:hover .service-showcase-image img {
  transform: scale(1.05);
}

.service-showcase-content {
  padding: 1rem 0;
}

.service-icon-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: hsl(43 74% 49% / 0.15);
  margin-bottom: 1.5rem;
}

.service-icon-badge .icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.service-showcase-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.service-showcase-description {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-detail-column p {
  color: var(--foreground);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-detail-column p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.service-showcase-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.service-price-badge {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.price-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--background);
  opacity: 0.9;
}

.price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--background);
}

/* Service Features Grid */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.service-feature-box {
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: hsl(43 74% 49% / 0.1);
}

.service-feature-icon .icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.service-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--foreground);
}

.service-feature-text {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive for Services Showcase */
@media (max-width: 1024px) {
  .service-showcase-item,
  .service-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-showcase-image {
    height: 400px;
  }

  .service-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .service-showcase-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .service-showcase-footer .btn {
    width: 100%;
  }
}

/* === SERVICES SECTION === */

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.services-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-top: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.5s ease;
}

.service-card:hover {
  border-color: hsl(43 74% 49% / 0.5);
  transform: translateY(-8px);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--card),
    hsl(0 0% 7% / 0.5),
    transparent
  );
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 50px;
  background: var(--muted);
  color: var(--muted-foreground);
}

/* === CONTACT SECTION === */
.contact-section {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: hsl(43 74% 49% / 0.5);
}

.contact-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: hsl(43 74% 49% / 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: hsl(43 74% 49% / 0.2);
}

.contact-icon .icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.contact-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
  color: var(--foreground);
}

.location-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
}

.location-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-address {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.location-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.location-hours .icon {
  width: 16px;
  height: 16px;
}

/* Booking CTA */
.booking-cta {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(
    135deg,
    hsl(43 74% 49% / 0.1) 0%,
    var(--card) 50%,
    hsl(160 84% 25% / 0.1) 100%
  );
  border: 1px solid hsl(43 74% 49% / 0.3);
  margin-bottom: 50px;
}

.booking-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.booking-cta > p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.booking-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.booking-footer p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.booking-footer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* === FOOTER === */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--muted-foreground);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-col a {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--gold);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* === GALLERY SECTION === */
.gallery-section {
  padding: 6rem 0;
  background: var(--card);
}

.gallery-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.gallery-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-top: 1rem;
}

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

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px hsl(0 0% 0% / 0.4);
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsl(0 0% 0% / 0.8) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--foreground);
  font-weight: 600;
  font-size: 1.125rem;
}

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

/* === EXPERIENCE CTA SECTION === */
.experience-cta {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    hsl(43 74% 49% / 0.08) 0%,
    hsl(160 84% 25% / 0.08) 100%
  );
  position: relative;
  overflow: hidden;
}

.experience-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    hsl(43 74% 49% / 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.experience-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.experience-description {
  color: var(--muted-foreground);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.experience-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 1rem;
  background: hsl(0 0% 12% / 0.3);
  border: 1px solid hsl(43 74% 49% / 0.2);
}

.experience-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 500;
}

.experience-feature .icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.experience-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

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

  .experience-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .experience-buttons {
    flex-direction: column;
    width: 100%;
  }

  .experience-buttons .btn {
    width: 100%;
  }

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

  .btn-xl {
    width: 100%;
  }

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

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

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

  .hero-info-cards {
    flex-direction: column;
  }

  .info-card {
    width: 100%;
  }
}

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--background);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 20px hsl(43 74% 49% / 0.4);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px hsl(43 74% 49% / 0.6);
}

.back-to-top .icon {
  width: 24px;
  height: 24px;
}

