/* =============================================
   Lucky Event Guide - Premium Mobile Entertainment
   luckyeventguide.com | Buenos Aires, Argentina
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---- VARIABLES ---- */
:root {
  --gold: #9B59D0;
  --gold-light: #C89EE8;
  --gold-dark: #6B2FA0;
  --black: #0A0A0A;
  --dark: #0E0A14;
  --dark-2: #160D22;
  --dark-3: #1E1230;
  --white: #FFFFFF;
  --off-white: #F0EBF8;
  --gray: #8A8090;
  --gray-light: #C8C0D4;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 4px 30px rgba(155, 89, 208, 0.30);
  --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.6);
  --border-gold: 1px solid rgba(155, 89, 208, 0.35);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  display: inline-block;
  margin-bottom: 20px;
}

.gold-line-center {
  display: block;
  margin: 0 auto 20px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 620px;
  margin-top: 20px;
  line-height: 1.8;
}

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

.text-center .section-desc {
  margin: 20px auto 0;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* =============================================
   HEADER / NAV
   ============================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  padding: 14px 0;
  border-bottom: var(--border-gold);
  backdrop-filter: blur(20px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--black);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.logo-tagline {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  padding: 10px 24px;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 2px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  opacity: 0.9;
  color: var(--black) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.85) 0%,
    rgba(10, 10, 10, 0.65) 50%,
    rgba(10, 10, 10, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(155, 89, 208, 0.12);
  border: 1px solid rgba(155, 89, 208, 0.4);
  padding: 8px 20px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 2px;
}

.hero-stat {
  background: rgba(10, 10, 10, 0.85);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  text-align: center;
  min-width: 120px;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 6px;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2.5s infinite;
}

.hero-scroll span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   INTRO / WHY US
   ============================================= */
.intro-section {
  background: var(--dark-2);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-visual {
  position: relative;
}

.intro-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.intro-img-accent {
  position: absolute;
  width: 45%;
  bottom: -30px;
  right: -30px;
  border: 4px solid var(--dark-2);
  box-shadow: var(--shadow-dark);
}

.intro-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 20px;
  text-align: center;
  z-index: 2;
}

.intro-badge-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.intro-badge-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.intro-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(155, 89, 208, 0.1);
  border: 1px solid rgba(155, 89, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.intro-feature-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.intro-feature-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
  cursor: pointer;
}

.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-card-body {
  padding: 28px;
}

.service-card-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(155, 89, 208, 0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}

.service-card-link:hover {
  gap: 14px;
}

.service-card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.process-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

.process-grid::after {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.process-step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(155, 89, 208, 0.3);
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
  background: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 4px;
  margin-top: 50px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--dark-2);
  position: relative;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239B59D0' fill-opacity='1'%3E%3Cpath d='M30 0 L32 20 L50 10 L40 28 L60 30 L40 32 L50 50 L32 40 L30 60 L28 40 L10 50 L20 32 L0 30 L20 28 L10 10 L28 20 Z'/%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border: var(--border-gold);
  padding: 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(155, 89, 208, 0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.testimonial-quote {
  font-size: 48px;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: var(--border-gold);
  padding-top: 20px;
}

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

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.testimonial-role {
  font-size: 12px;
  font-weight: 300;
  color: var(--gold);
  margin-top: 2px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92), rgba(10,10,10,0.75));
}

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

.cta-content .section-title {
  font-size: clamp(32px, 4vw, 54px);
}

.cta-content .section-desc {
  margin: 20px auto 40px;
  text-align: center;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black);
  border-top: 2px solid var(--gold-dark);
}

.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(155, 89, 208, 0.1);
  border: 1px solid rgba(155, 89, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(155, 89, 208, 0.2);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(155, 89, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

.footer-contact-text strong {
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  transition: var(--transition);
}

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

/* =============================================
   COOKIES BANNER
   ============================================= */
.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-3);
  border-top: 2px solid var(--gold-dark);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookies-banner.visible {
  transform: translateY(0);
}

.cookies-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookies-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.6;
}

.cookies-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookies-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cookies-accept {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookies-accept:hover {
  background: var(--gold-light);
}

.btn-cookies-decline {
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookies-decline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   INNER PAGE HEADER
   ============================================= */
.page-header {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8), rgba(10,10,10,0.9));
}

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

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.breadcrumbs a,
.breadcrumbs span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--gray);
}

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

.breadcrumbs .sep {
  color: var(--gold);
}

.breadcrumbs .current {
  color: var(--gold);
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form-wrap {
  background: var(--dark-2);
  border: var(--border-gold);
  padding: 50px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 20px;
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select option {
  background: var(--dark-3);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(155, 89, 208, 0.2);
}

.policy-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin: 28px 0 12px;
}

.policy-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul li {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.policy-content ul li::marker {
  color: var(--gold);
}

.policy-update {
  display: inline-block;
  background: rgba(155, 89, 208, 0.1);
  border: 1px solid rgba(155, 89, 208, 0.3);
  color: var(--gold);
  font-size: 12px;
  padding: 6px 16px;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* =============================================
   ANIMATION CLASSES
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::after {
    display: none;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 70px 0;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 90vw);
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 28px;
    border-left: var(--border-gold);
    transition: right 0.4s ease;
    z-index: 999;
    align-items: flex-start;
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav a {
    font-size: 14px;
  }
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .hero-stats {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 0 36px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(36px, 8vw, 60px);
  }
  .contact-form-wrap {
    padding: 30px 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .cta-section {
    padding: 70px 0;
  }
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }
  .cookies-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
