/* ===== CORE VARIABLES ===== */
:root {
    --base-dark: #121214;
    --base-color: #1c1c1e;
    --base-light: #2c2c2e;
    --accent-color: #d4af37;
    --accent-dark: #b8972e;
    --text-primary: #f5f5f5;
    --text-secondary: #d1d1d1;
    --transition-speed: 0.4s;
    --transition-easing: cubic-bezier(0.76, 0, 0.24, 1);
    --header-height: 80px;
    --mobile-breakpoint: 992px;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--base-dark);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: var(--header-height);
    overflow-x: hidden;
}

/* ===== ENHANCED HEADER ===== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all var(--transition-speed) var(--transition-easing);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
}

/* Logo Styles */
.header-brand {
    position: relative;
    z-index: 1001;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    height: 100%;
    padding: 1rem 0;
}

.logo-image {
    height: 100%;
    width: auto;
    max-height: 40px;
    object-fit: contain;
    transition: transform 0.5s var(--transition-easing);
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

/* Navigation Styles */
.header-nav {
    display: flex;
    height: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    height: 100%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 1rem 0;
    position: relative;
    transition: all var(--transition-speed) ease;
    opacity: 0.9;
}

.nav-link:hover {
    color: var(--accent-color);
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.8rem;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    position: relative;
    width: 40px;
    height: 40px;
}

.menu-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.4s var(--transition-easing);
}

.top-line {
    top: 12px;
}

.middle-line {
    top: 19px;
}

.bottom-line {
    top: 26px;
}

.mobile-menu-toggle[aria-expanded="true"] .top-line {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
    background-color: var(--accent-color);
}

.mobile-menu-toggle[aria-expanded="true"] .middle-line {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .bottom-line {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
    background-color: var(--accent-color);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0s 0.4s;
}

.mobile-nav[aria-hidden="false"] {
    right: 0;
    transition: right 0s;
}

.mobile-nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav[aria-hidden="false"] .mobile-nav-overlay {
    opacity: 1;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 85%;
    height: 100%;
    background-color: var(--base-color);
    padding: 120px 2rem 2rem;
    transition: transform 0.4s var(--transition-easing);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav[aria-hidden="false"] .mobile-nav-content {
    transform: translateX(-400px);
}

.mobile-logo-container {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.mobile-logo-image {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.75rem 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.mobile-nav-link:hover {
    color: var(--accent-color);
    opacity: 1;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.mobile-nav-link:hover::after {
    width: 100%;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .mobile-nav-content {
        padding: 100px 1.5rem 1.5rem;
    }
    
    .mobile-logo-container {
        left: 1.5rem;
    }
}





/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    color: var(--text-primary);
    overflow: hidden;
    background-color: var(--base-dark);
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../assets/images/Travis-Fimmel.jpg');
    transform: scale(1.1);
    will-change: transform;
    animation: fadeIn 1.5s ease-out forwards;
}

.media-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28, 28, 30, 0.8) 0%, rgba(28, 28, 30, 0.9) 100%);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.badge {
    background-color: var(--accent-color);
    color: var(--base-dark);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.title-line:first-child {
    animation-delay: 0.4s;
}

.title-line:last-child {
    animation-delay: 0.6s;
}

.name-highlight {
    color: var(--accent-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideUp 0.8s ease-out 0.8s forwards;
}

.hero-cta {
    opacity: 0;
    animation: slideUp 0.8s ease-out 1s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-color);
    color: var(--base-dark);
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.hint-line {
    width: 40px;
    height: 1px;
    background-color: var(--text-primary);
    position: relative;
}

.hint-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--accent-color);
    animation: lineDraw 2s infinite;
}

.hint-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes lineDraw {
    from { width: 0; }
    to { width: 40px; }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .mobile-nav-content {
        width: 320px;
    }
    
    .mobile-nav[aria-hidden="false"] .mobile-nav-content {
        transform: translateX(-320px);
    }
    
    .mobile-logo-container {
        top: 1.5rem;
    }
    
    .hero-content {
        padding: 0 5%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 16px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .mobile-nav-content {
        width: 280px;
        padding: 100px 1.5rem 2rem;
    }
    
    .mobile-nav[aria-hidden="false"] .mobile-nav-content {
        transform: translateX(-280px);
    }
    
    .mobile-logo-image {
        height: 32px;
    }
    
    .mobile-nav-link {
        font-size: 1.1rem;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 24px;
    }
}



/* Ultra-Premium Experience Section */
.vip-experience {
  background-color: var(--vip-black);
  color: var(--vip-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.vip-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.vip-content {
  flex: 1;
  position: relative;
  z-index: 3;
}

.vip-header {
  margin-bottom: 50px;
}

.vip-badge {
  display: inline-block;
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 4px;
}

.badge-text {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--vip-black);
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(212,175,55,0) 0%, 
    rgba(212,175,55,0.8) 50%, 
    rgba(212,175,55,0) 100%);
  animation: badgeGlow 3s infinite;
  opacity: 0.6;
}

.vip-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: hidden;
}

.word-reveal {
  display: inline-block;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-gold);
}

.name-highlight {
  color: var(--accent-gold);
  font-weight: 400;
  position: relative;
}

.vip-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.divider-line {
  height: 1px;
  background-color: var(--vip-gray);
  flex-grow: 1;
  opacity: 0.3;
}

.divider-diamond {
  width: 12px;
  height: 12px;
  position: relative;
}

.diamond-inner {
  width: 100%;
  height: 100%;
  background-color: var(--accent-gold);
  transform: rotate(45deg);
  animation: diamondPulse 2s infinite;
}

.vip-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--vip-white);
  margin-bottom: 50px;
  max-width: 600px;
  opacity: 0.9;
}

.vip-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

.feature-elite {
  padding: 30px;
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 4px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-elite:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(212,175,55,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--vip-white);
  opacity: 0.8;
}

.feature-ornament {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-right: 1px solid var(--accent-gold);
  border-top: 1px solid var(--accent-gold);
  opacity: 0.2;
}

.vip-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background-color: var(--accent-gold);
  color: var(--vip-black);
  padding: 18px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255,255,255,0) 0%, 
    rgba(255,255,255,0.3) 50%, 
    rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
}

.vip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.vip-cta:hover .cta-overlay {
  animation: ctaShine 1.5s;
}

.vip-portrait {
  flex: 1;
  position: relative;
}

.portrait-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
}

.portrait-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
  transform-origin: center center;
}

.portrait-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(18,18,18,0) 0%, 
    rgba(18,18,18,0.8) 100%);
}

.portrait-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.3;
}

/* Animations */
@keyframes badgeGlow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes diamondPulse {
  0%, 100% { opacity: 0.6; transform: rotate(45deg) scale(1); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.1); }
}

@keyframes ctaShine {
  100% { transform: translateX(100%); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .vip-container {
    gap: 50px;
  }
}

@media (max-width: 992px) {
  .vip-container {
    flex-direction: column-reverse;
    gap: 60px;
  }
  
  .vip-portrait {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .vip-experience {
    padding: 80px 0;
  }
  
  .vip-container {
    padding: 0 25px;
  }
  
  .feature-elite {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .vip-title {
    font-size: 2.2rem;
  }
  
  .vip-description {
    font-size: 1.1rem;
  }
  
  .vip-cta {
    padding: 16px 28px;
    font-size: 1rem;
  }
}



/* Base Styles */
.apply-section {
  padding: 5rem 1.5rem;
  background: radial-gradient(ellipse at center, #1a1a1e 0%, #0e0e10 100%);
  color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.apply-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f5d783, #d4af37);
  z-index: 1;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Dropdown Specific Styles */
.floating-input select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-color: transparent;
  color: #f0f0f0;
  padding-right: 25px;
}

.floating-input select option {
  background-color: #1a1a1e;
  color: #f0f0f0;
}

.floating-input select option:hover {
  background-color: #d4af37;
  color: #121212;
}

.floating-input::after {
  content: "▼";
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 0.6rem;
  color: #d4af37;
  pointer-events: none;
  opacity: 0.7;
}

/* Rest of your original CSS remains unchanged */
.form-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.actor-portrait {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.portrait-image {
  width: 100%;
  height: 100%;
  background: url('https://i.imgur.com/JQ6pUlD.jpg') center/cover no-repeat;
  filter: grayscale(30%) contrast(110%);
}

.gold-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.form-wrapper h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
}

.gold-text {
  color: #d4af37;
  font-weight: 600;
}

.star-divider {
  width: 100px;
  margin: 1.5rem auto;
  display: block;
}

.form-wrapper p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #b0b0b0;
  max-width: 80%;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .textarea-group,
  .checkbox-group {
    grid-column: span 2;
  }
}

.form-group {
  position: relative;
}

.floating-input {
  position: relative;
  padding-top: 1.2rem;
}

.floating-input input,
.floating-input textarea,
.floating-input select {
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #f0f0f0;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.floating-input textarea {
  min-height: 120px;
  resize: vertical;
}

.floating-input label {
  position: absolute;
  top: 2rem;
  left: 0;
  color: #888;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.optional {
  color: #666;
  font-size: 0.85rem;
  font-weight: normal;
}

.floating-input input:focus,
.floating-input textarea:focus,
.floating-input select:focus {
  outline: none;
}

.floating-input input:focus + label,
.floating-input textarea:focus + label,
.floating-input select:focus + label,
.floating-input input:not(:placeholder-shown) + label,
.floating-input textarea:not(:placeholder-shown) + label,
.floating-input select:not(:placeholder-shown) + label {
  top: 0;
  font-size: 0.85rem;
  color: #d4af37;
}

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
}

.underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.4s ease;
}

.floating-input input:focus ~ .underline::after,
.floating-input textarea:focus ~ .underline::after,
.floating-input select:focus ~ .underline::after {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin: 1rem 0 2rem;
}

.checkbox-group input {
  position: absolute;
  opacity: 0;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #b0b0b0;
  transition: color 0.3s ease;
}

.checkbox-group label:hover {
  color: #f0f0f0;
}

.checkmark {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 1px solid #444;
  border-radius: 3px;
  flex-shrink: 0;
  stroke: transparent;
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
  transition: all 0.3s ease;
}

.checkbox-group input:checked ~ label .checkmark {
  border-color: #d4af37;
  stroke: #d4af37;
  stroke-dashoffset: 0;
}

.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #d4af37 0%, #f5d783 50%, #d4af37 100%);
  color: #121212;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  width: 100%;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .gold-button {
    width: auto;
    min-width: 220px;
    margin: 0 auto;
    display: flex;
  }
}

.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.gold-button:active {
  transform: translateY(0);
}

.button-icon {
  margin-left: 10px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.gold-button:hover .button-icon {
  transform: translateX(3px);
}

.response-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.response-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.apply-section::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  animation: rotate 60s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  filter: invert(1);
}



:root {
  --primary: #d4af37;
  --bg-dark: #121212;
  --card-dark: #1e1e1e;
  --text-light: #f5f5f5;
  --text-gray: #aaa;
}

.testimonials {
  position: relative;
  background: var(--bg-dark);
  padding: 6rem 0;
  color: var(--text-light);
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.testimonials-title span {
  display: block;
}

.highlight {
  color: var(--primary);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(212, 175, 55, 0.3);
  z-index: -1;
  transform: scaleX(0.9);
  transition: transform 0.4s ease;
}

.testimonials-title:hover .highlight::after {
  transform: scaleX(1);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 0.9375rem;
}

.testimonial-card {
  background: var(--card-dark);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
}

.quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.875rem;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: serif;
  font-weight: 700;
  line-height: 1;
}

.testimonial-text {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.875rem;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
}

.author-title {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

.rating {
  color: var(--primary);
  font-size: 1.2rem;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  gap: 1.875rem;
}

.slider-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
}

.slider-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--primary);
  border-radius: 50%;
  opacity: 0.3;
  transition: all 0.4s ease;
}

.slider-btn:hover {
  color: var(--primary);
}

.slider-btn:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.slider-btn svg {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-dots {
  display: flex;
  gap: 0.625rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--text-gray);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.4s ease;
}

.slider-dot.active {
  background: var(--primary);
  opacity: 1;
  transform: scale(1.2);
}

.testimonial-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 1.875rem 3.75rem rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 0;
  }
  
  .testimonial-card {
    padding: 1.875rem;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 1.5625rem 1.25rem;
  }
  
  .quote-icon {
    font-size: 4rem;
    top: 0.9375rem;
    right: 1.25rem;
  }
  
  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem;
  }
}



.gallery-section {
  background: linear-gradient(135deg, #1a1a1c 0%, #2c2c2e 100%);
  padding: 100px 20px;
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDAwMDAwIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiMxZDFkMWQiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
  opacity: 0.15;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #d4af37, #f4e5c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  aspect-ratio: 2/3;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  transform: translateY(-10px);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  box-sizing: border-box;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.overlay-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
}

.cta-button {
  background: linear-gradient(45deg, #d4af37, #f4e5c2);
  color: #1a1a1a;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.gallery-grid {
  animation: fadeIn 1s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 15px;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
}



.site-footer {
  background-color: #1c1c1e;
  color: #d1d1d1;
  padding: 60px 20px 30px;
  text-align: center;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 10px;
}

.footer-brand p {
  margin-bottom: 30px;
  color: #d1d1d1;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-socials a {
  font-size: 1.4rem;
  color: #f5f5f5;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #d4af37;
}

.footer-meta {
  font-size: 0.8rem;
  color: #aaa;
}



:root {
  --primary: #d4af37;
  --primary-dark: #b8972e;
  --primary-light: rgba(212, 175, 55, 0.1);
  --dark-bg: #121212;
  --dark-card: #1e1e1e;
  --darker-card: #171717;
  --text-light: #ffffff;
  --text-muted: #aaaaaa;
  --text-dark: #333333;
  --border-color: rgba(212, 175, 55, 0.15);
  --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius: 12px;
}

/* Base Styles */
.cookie-consent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-consent.active {
  opacity: 1;
  visibility: visible;
}

.cookie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.cookie-dialog {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  margin: 20px;
  background: var(--dark-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}

.cookie-consent.active .cookie-dialog {
  transform: translateY(0);
}

/* Header Styles */
.cookie-header {
  padding: 24px;
  background: linear-gradient(135deg, var(--darker-card) 0%, var(--dark-bg) 100%);
  color: var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.cookie-header-content {
  flex: 1;
}

.cookie-title {
  margin: 0 0 4px 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.cookie-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Body Styles */
.cookie-body {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.cookie-intro {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-intro p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-category {
  padding: 18px;
  background: var(--darker-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.cookie-category:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.cookie-category.essential {
  background: rgba(212, 175, 55, 0.05);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-info {
  flex: 1;
}

.category-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-status {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-left: 8px;
}

.category-desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Toggle Switch */
.toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #333;
  transition: var(--transition);
  border-radius: 34px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  background-color: #444;
  cursor: not-allowed;
}

/* Footer Styles */
.cookie-footer {
  padding: 20px 24px;
  background: var(--darker-card);
  border-top: 1px solid var(--border-color);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.cookie-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.settings-btn {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-color);
  flex: 1;
}

.settings-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.accept-selected-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  flex: 2;
}

.accept-selected-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.accept-all-btn {
  background: var(--primary);
  color: var(--text-dark);
  font-weight: 600;
  flex: 2;
}

.accept-all-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.cookie-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cookie-link {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: var(--transition);
}

.cookie-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Scrollbar */
.cookie-body::-webkit-scrollbar {
  width: 6px;
}

.cookie-body::-webkit-scrollbar-track {
  background: rgba(30, 30, 30, 0.5);
}

.cookie-body::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-dialog {
    margin: 10px;
    max-height: 95vh;
  }
  
  .cookie-header, .cookie-body, .cookie-footer {
    padding: 18px;
  }
  
  .cookie-links {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}






