/* =========================================
   VARIABLES & TOKENS
   ========================================= */
:root {
  /* Colors */
  --cream: #FDFBF7;
  --cream-dark: #F4EFE6;
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #AA8A2A;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-dark: #333333;
  --gray-light: #A0A0A0;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;

  /* Transitions & Shadows */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--gray-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

.mt-5 {
  margin-top: 3rem;
}

.bg-light {
  background-color: var(--white);
}

.bg-dark {
  background-color: var(--black);
}

.text-white {
  color: var(--white) !important;
}

.text-light-gray {
  color: var(--gray-light);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--gold);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 3rem;
  color: var(--gray-dark);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background-color: var(--black);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--gray-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 2rem;
}

.navbar.scrolled {
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.logo-elite {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.navbar.scrolled .logo-elite {
  color: var(--black);
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--black);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  height: 2px;
  width: 100%;
  background-color: var(--white);
  border-radius: 10px;
  transition: var(--transition);
}

.navbar.scrolled .menu-toggle .bar {
  background-color: var(--black);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  height: 100vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  background-image: url('banner3.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.pulse-badge {
  animation: subtle-pulse 2s infinite;
}

@keyframes subtle-pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.hero-title {
  font-size: 3.5rem;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.text-gradient {
  background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 3s linear infinite;
  background-size: 200% auto;
  text-shadow: none;
	
	
	
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-features-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
  perspective: 1000px;
}

.feature-bubble {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  padding: 1rem 0.5rem;
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  animation: float-bubble 4s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-bubble:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
}

.fb-1 { animation-delay: 0s; }
.fb-2 { animation-delay: 1.2s; }
.fb-3 { animation-delay: 2.4s; }

.fb-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

.feature-bubble span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--black);
  line-height: 1.2;
}

@keyframes float-bubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-features-container {
    gap: 0.5rem;
  }
  .feature-bubble {
    width: 90px;
    padding: 0.8rem 0.3rem;
  }
  .fb-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .feature-bubble span {
    font-size: 0.65rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  z-index: 10;
  opacity: 0.7;
}

.scroll-indicator p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--white);
  border-radius: 4px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  z-index: -1;
}

.image-wrapper img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.7s;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--gold);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 5px solid var(--cream);
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--gray-dark);
}

.signature {
  font-family: 'Playfair Display', cursive;
  /* Fallback for a fancy font */
  font-size: 2rem;
  color: var(--black);
  margin-top: 2rem;
  font-style: italic;
}

/* =========================================
   DEMO IPHONE SECTION
   ========================================= */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.demo-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--gray-dark);
}

.demo-device {
  display: flex;
  justify-content: center;
}

.iphone-mockup {
  position: relative;
  width: 320px;
  height: 650px;
  background-color: #000;
  border-radius: 40px;
  border: 12px solid #222;
  box-shadow: var(--shadow-lg), inset 0 0 0 4px #000;
  overflow: hidden;
}

.iphone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background-color: #222;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 10;
}

.iphone-notch::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 70%;
  width: 8px;
  height: 8px;
  background-color: #111;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

.iphone-notch::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background-color: #111;
  border-radius: 5px;
}

.iphone-mockup iframe {
  width: 310px;
  height: 100%;
  border: none;
  background-color: #fff;
  border-radius: 28px;
}

/* =========================================
   FEATURES SECTION
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--cream-dark);
  color: var(--gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--gold);
  color: var(--white);
  transform: rotateY(360deg);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* =========================================
   SAMPLES SECTION
   ========================================= */
.samples {
  background-color: var(--cream);
}

/* =========================================
   PORTFOLIO FILTERS
   ========================================= */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.8rem;
  background-color: transparent;
  border: 2px solid var(--gold);
  color: var(--black);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 1rem;
  /* Reduced since we have filters */
}

.sample-card {
  background-color: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.sample-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}

.sample-img {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.sample-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sample-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* Slightly darker to make buttons pop */
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.sample-card:hover .sample-img img {
  transform: scale(1.1);
}

.sample-card:hover .sample-overlay {
  opacity: 1;
}

.sample-content {
  padding: 2rem;
  position: relative;
}

.sample-category {
  position: absolute;
  top: -15px;
  left: 2rem;
  background-color: var(--gold);
  color: var(--white);
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
}

.sample-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.sample-content p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* =========================================
   PRICING SECTION
   ========================================= */
.pricing {
  background-color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.pricing-card {
  background-color: var(--cream);
  border-radius: 15px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background-color: var(--black);
  color: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gold);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--gold);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header p {
  color: var(--white);
}

.pricing-header p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-features li i {
  min-width: 20px;
  text-align: center;
}

.pricing-features li.disabled {
  color: var(--gray-light);
  text-decoration: line-through;
  opacity: 0.7;
}

.pricing-card.featured .pricing-features li.disabled {
  color: rgba(255, 255, 255, 0.4);
}

.w-100 {
  width: 100%;
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

.btn-outline-dark:hover {
  background-color: var(--black);
  color: var(--white);
}

.text-gold {
  color: var(--gold);
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4rem;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step:hover .step-icon {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.step-number {
  position: absolute;
  top: -20px;
  right: calc(50% - 40px);
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step p {
  font-size: 0.95rem;
}

.step-connector {
  flex: 0.5;
  height: 2px;
  background: dashed 2px var(--gold);
  opacity: 0.3;
  margin-top: 40px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background-color: #111111;
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 0px;
}

.footer-brand p {
  color: var(--gray-light);
  font-size: 0.9rem;
}

.footer-desc {
  margin-top: 1rem;
}

.footer-social h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  color: var(--gray-light);
  font-size: 0.9rem;
}

/* =========================================
   FLOATING WHATSAPP BUTTON
   ========================================= */
.float-ws {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-ws 2s infinite;
}

.float-ws:hover {
  background-color: #1ebd57;
  transform: scale(1.1);
  color: #FFF;
}

@keyframes pulse-ws {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.cta-pulse {
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* =========================================
   ANIMATIONS & UTILITIES
   ========================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   RESPONSIVE DESIGN (MOBILE-FIRST APPROACH TWEAKS)
   ========================================= */
@media (max-width: 992px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .demo-device {
    order: 2;
  }

  .demo-text {
    order: 1;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: 2;
    margin: 0 auto;
    max-width: 500px;
  }

  .about-text {
    order: 1;
    text-align: center;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  .step-number {
    right: calc(50% - 25px);
    top: -15px;
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    clip-path: circle(0% at 100% 0);
    transition: all 0.5s ease-in-out;
  }

  .nav-menu.active {
    clip-path: circle(150% at 100% 0);
  }

  .nav-link {
    color: var(--black);
    font-size: 1.1rem;
  }

  /* Hamburger Animation */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--black);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--black);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .experience-badge {
    width: 100px;
    height: 100px;
    padding: 1rem;
    bottom: -10px;
    right: -10px;
  }

  .experience-badge .number {
    font-size: 1.5rem;
  }

  .experience-badge .text {
    font-size: 0.6rem;
  }

  .float-ws {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}

/* =========================================
   DIGITAL TICKET SECTION
   ========================================= */
.ticket-body {
  background-color: var(--cream-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: var(--header-height);
  padding-bottom: 2rem;
}

.ticket-wrapper {
  width: 100%;
  max-width: 450px;
  padding: 20px;
}

.ticket-container {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.ticket-container::before,
.ticket-container::after {
  content: '';
  position: absolute;
  top: 180px;
  /* Align with header bottom */
  width: 30px;
  height: 30px;
  background-color: var(--cream-dark);
  border-radius: 50%;
  z-index: 10;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.ticket-container::before {
  left: -15px;
}

.ticket-container::after {
  right: -15px;
}

.ticket-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.4);
}

.ticket-header h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.ticket-header p {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.ticket-date {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.ticket-body-content {
  padding: 2.5rem 2rem;
  text-align: center;
}

.qr-container {
  background-color: var(--white);
  padding: 15px;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  display: inline-block;
  margin-bottom: 1.5rem;
  border: 1px solid var(--gold-light);
}

.qr-code {
  width: 180px;
  height: 180px;
  display: block;
}

.ticket-pass-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  font-weight: 600;
}

.guest-info {
  text-align: left;
  margin-bottom: 2rem;
}

.info-group {
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 1.5rem;
}

.info-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}

.info-value {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  font-family: var(--font-heading);
}

.info-value.highlight {
  font-size: 1.8rem;
  color: var(--gold-dark);
}

.ticket-instructions {
  background-color: var(--cream);
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--gray-dark);
  border-left: 3px solid var(--gold);
}

.ticket-instructions i {
  color: var(--gold);
  margin-right: 5px;
}

.ticket-footer {
  padding: 1.5rem;
  background-color: #fcfcfc;
  border-top: 2px dashed #eee;
  text-align: center;
}

.ticket-barcode {
  display: inline-block;
}

.ticket-barcode .bars {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.barcode-number {
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gray-light);
}

@media print {
  body {
    background-color: white;
  }

  .ticket-body {
    min-height: auto;
    padding-top: 0;
  }

  .navbar,
  .ticket-actions {
    display: none !important;
  }

  .ticket-container {
    box-shadow: none;
    border: 2px solid #ccc;
  }

  .ticket-container::after {
    display: none;
  }
}

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--gold);
}

.form-group input,
.form-group select {
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray-dark);
  transition: var(--transition);
  background-color: #fafafa;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.select-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-light);
  pointer-events: none;
}

.btn-submit {
  margin-top: 1rem;
  width: 100%;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

/* =========================================
   NEW CUSTOM STYLES
   ========================================= */
.sample-overlay-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video-modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgba(0,0,0,0.8); 
    backdrop-filter: blur(5px);
}

.video-modal-content {
    background-color: #000;
    margin: 5% auto; 
    padding: 0;
    border: 1px solid #888;
    width: 90%; 
    max-width: 800px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.close-video-modal {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-video-modal:hover,
.close-video-modal:focus {
    color: var(--gold);
    text-decoration: none;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alacarta-form .btn-video {
    transition: var(--transition);
}

.alacarta-form .btn-video:hover {
    transform: scale(1.2);
    color: var(--gold-dark) !important;
}