/* ============================================
   SHUFFLE LAB — Festivent-Inspired Design System
   Warm gradients, massive type, pill buttons,
   floating tilted images, full-bleed sections
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --coral: #EB4213;
  --coral-light: #F0603A;
  --orange: #EB4213;
  --salmon: #EB4213;
  --peach: #FF99DC;
  --cream: #FDF6F8;
  --cream-dark: #F8EEF2;
  --navy: #826DEE;
  --navy-light: #9A88F2;
  --sky: #FF99DC;
  --sky-light: #FFDCF0;
  --lime: #D8F382;
  --pink: #FF99DC;
  --purple: #826DEE;
  --red: #EB4213;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --text-dark: #2A1A3E;
  --text-light: #6B5A80;
  --text-muted: #9A8AA8;

  --gradient-hero: linear-gradient(160deg, #EB4213 0%, #FF99DC 50%, #826DEE 100%);
  --gradient-warm: linear-gradient(135deg, #EB4213 0%, #FF99DC 60%, #826DEE 100%);
  --gradient-sunset: linear-gradient(160deg, #FF99DC 0%, #D8F382 40%, #826DEE 80%, #FF99DC 100%);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Caveat', cursive;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 50px;
  --radius-pill: 100px;
  --border-thin: 1.5px solid var(--coral);
  --border-outline: 1.5px solid rgba(228,92,60,0.25);

  --section-pad: 120px 0;
  --transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 16px;
  padding: 8px 24px;
  background: rgba(244,132,95,0.08);
  border-radius: var(--radius-pill);
}

.text-coral { color: var(--coral); }
.text-white { color: var(--white); }
.text-gradient {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(255,255,255,0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outline-text {
  -webkit-text-stroke: 2px var(--coral);
  -webkit-text-fill-color: transparent;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(253,246,237,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--lime);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.nav-links li a:hover, .nav-links li a.active {
  background: rgba(216,243,130,0.15);
  color: var(--white);
}
.nav.scrolled .nav-links li a {
  color: var(--text-dark);
  text-shadow: none;
}
.nav.scrolled .nav-links li a:hover, .nav.scrolled .nav-links li a.active {
  background: rgba(244,132,95,0.1);
  color: var(--coral);
}
.nav-cta {
  background: var(--white) !important;
  border: var(--border-thin) !important;
  color: var(--coral) !important;
}
.nav-cta:hover {
  background: var(--coral) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 28px; height: 2px; background: var(--lime);
  border-radius: 2px; transition: var(--transition);
}
.nav.scrolled .nav-toggle span {
  background: var(--text-dark);
}

@media (max-width: 992px) {
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 16px; z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links li a { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); text-shadow: none; }
  .nav-toggle { display: flex; z-index: 1001; }
}

/* ---- Buttons (Pill Outlines) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-lg { padding: 20px 48px; font-size: 0.9rem; }
.btn-sm { padding: 12px 28px; font-size: 0.8rem; }
.btn-primary {
  background: var(--coral); border: 1.5px solid var(--coral); color: var(--white);
}
.btn-primary:hover { background: transparent; color: var(--coral); }
.btn-secondary {
  background: transparent; border: 1.5px solid var(--coral); color: var(--coral);
}
.btn-secondary:hover { background: var(--coral); color: var(--white); }
.btn-outline-white {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--coral); border-color: var(--white); }
.btn-white {
  background: var(--white); border: 1.5px solid var(--white); color: var(--coral);
}
.btn-white:hover { background: transparent; color: var(--white); }

/* Big CTA pill (Festivent "buy ticket" style) */
.big-cta-btn {
  display: block; max-width: 700px; margin: 60px auto 0;
  padding: 40px; text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  background: transparent; cursor: pointer; transition: var(--transition);
}
.big-cta-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ---- Marquee ---- */
.marquee-section {
  background: var(--cream-dark); padding: 24px 0;
  overflow: hidden; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.marquee-track { display: flex; animation: marquee 30s linear infinite; width: max-content; }
.marquee-item {
  font-family: var(--font-display); font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: var(--text-dark); white-space: nowrap;
}
.marquee-item .dot {
  display: inline-block; width: 6px; height: 6px;
  margin: 0 24px; vertical-align: middle; position: relative;
}
.marquee-item .dot::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px; background: var(--coral); border-radius: 50%;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Hero ---- */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden; padding-top: 80px;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 32px;
  padding: 10px 24px; background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill); backdrop-filter: blur(10px);
}
.hero h1 { margin-bottom: 28px; }
.hero p { font-size: 1.15rem; line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page Hero (non-homepage pages) */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-hero .section-label {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.2);
}

/* Gradient blobs for hero/sections */
.gradient-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.5; pointer-events: none;
}

/* ---- Floating Tilted Images ---- */
.float-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15); transition: var(--transition-slow);
}
.float-image img { width: 100%; height: 100%; object-fit: cover; }
.float-image.tilt-right { transform: rotate(3deg); }
.float-image.tilt-left { transform: rotate(-3deg); }
.float-image:hover { transform: rotate(0deg) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.2); }

/* ---- Sections ---- */
.section { padding: var(--section-pad); position: relative; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: var(--cream); }
.section-sky { background: var(--sky); }
.section-gradient-warm { background: var(--gradient-hero); color: var(--white); }
.section-gradient-sunset { background: var(--gradient-sunset); }

.section-blob {
  position: absolute; pointer-events: none; z-index: 0;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(212,232,240,0.4) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(247,197,159,0.3) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

/* ---- Stats Bar ---- */
.stats-bar { background: var(--navy); padding: 60px 0; overflow: hidden; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item h3 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--cream); line-height: 1; margin-bottom: 8px;
}
.stat-item p {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; color: var(--peach);
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ---- Feature Cards ---- */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-top: 60px;
}
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: var(--border-outline); transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--coral); transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(232,115,74,0.1);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--gradient-warm); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--white);
}
.feature-card h3 {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 12px;
}
.feature-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); }

/* ---- Link Cards (Festivent info rows) ---- */
.link-card {
  display: flex; align-items: center; border: var(--border-thin);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); background: transparent;
  margin-bottom: 20px;
}
.link-card:hover { background: rgba(244,132,95,0.04); transform: translateX(4px); }
.link-card-img { width: 280px; min-height: 200px; flex-shrink: 0; overflow: hidden; }
.link-card-img img { width: 100%; height: 100%; object-fit: cover; }
.link-card-body { flex: 1; padding: 32px 40px; }
.link-card-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--coral); text-transform: uppercase; margin-bottom: 12px;
}
.link-card-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.link-card-arrow {
  width: 48px; height: 48px; border-radius: 50%; border: var(--border-thin);
  display: flex; align-items: center; justify-content: center;
  margin-right: 32px; flex-shrink: 0; color: var(--coral); transition: var(--transition);
}
.link-card:hover .link-card-arrow { background: var(--coral); color: var(--white); }
@media (max-width: 768px) {
  .link-card { flex-direction: column; }
  .link-card-img { width: 100%; min-height: 180px; }
  .link-card-body { padding: 24px; }
  .link-card-arrow { margin: 0 0 24px 24px; }
}

/* ---- Testimonials Carousel ---- */
.testimonial-carousel {
  position: relative;
  margin-top: 48px;
}
.carousel-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  margin-right: 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: var(--border-outline);
  transition: border-color 0.3s, transform 0.3s;
  box-sizing: border-box;
}
.testimonial-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.testimonial-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.85rem; color: var(--text-muted); margin-top: 2px; }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-arrow:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.carousel-arrow-left { left: -24px; }
.carousel-arrow-right { right: -24px; }
@media (max-width: 1024px) {
  .testimonial-card { flex: 0 0 calc(50% - 14px); }
}
@media (max-width: 640px) {
  .testimonial-card { flex: 0 0 100%; margin-right: 20px; }
  .carousel-arrow-left { left: -8px; }
  .carousel-arrow-right { right: -8px; }
  .carousel-arrow { width: 40px; height: 40px; font-size: 1.5rem; }
}

/* ---- CTA Section ---- */
.cta-section {
  background: var(--gradient-hero); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900;
  color: var(--white); text-transform: uppercase; line-height: 0.95; margin-bottom: 24px;
}
.cta-section p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 500px; margin: 0 auto 40px; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Two Column ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 48px; } }

/* ---- Timeline ---- */
.timeline { margin-top: 40px; }
.timeline-item {
  padding-left: 36px; margin-bottom: 36px; position: relative;
  border-left: 2px solid rgba(244,132,95,0.2);
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--coral);
}
.timeline-item h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.timeline-item p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ---- Footer ---- */
.footer { background: var(--navy); color: var(--cream); padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand p { color: rgba(253,246,237,0.6); font-size: 0.95rem; margin-top: 16px; line-height: 1.6; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(253,246,237,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.75rem;
  color: var(--cream); transition: var(--transition);
}
.footer-social a:hover { background: var(--coral); border-color: var(--coral); }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--peach); margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.95rem; color: rgba(253,246,237,0.6);
  padding: 6px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--cream); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid rgba(253,246,237,0.1);
  font-size: 0.85rem; color: rgba(253,246,237,0.4);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq-list { max-width: 700px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid rgba(244,132,95,0.15); padding: 24px 0; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
}
.faq-toggle {
  width: 36px; height: 36px; border-radius: 50%; border: var(--border-thin);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--coral); flex-shrink: 0; transition: var(--transition);
}
.faq-item.active .faq-toggle { background: var(--coral); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-top: 16px; font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; transition: var(--transition);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(2) { transform: translateY(20px); }
.gallery-item:nth-child(5) { transform: translateY(-20px); }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---- Scroll Animations ---- */
.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-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ---- Sparkle/Star icons (CSS only) ---- */
.sparkle-icon {
  display: inline-block; width: 16px; height: 16px; background: var(--coral);
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
}
.sparkle-icon--sm { width: 10px; height: 10px; }
.sparkle-icon--lg { width: 24px; height: 24px; }
.star-icon {
  display: inline-block; width: 16px; height: 16px; background: var(--coral);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.disco-ball-icon {
  display: inline-block; width: 24px; height: 24px; border-radius: 50%;
  background: repeating-conic-gradient(var(--cream) 0% 25%, var(--peach) 25% 50%);
  border: 2px solid var(--coral);
}

/* ---- Navy section overrides ---- */
.section-navy h2, .section-navy h3 { color: var(--cream); }
.section-navy p { color: rgba(253,246,237,0.7); }
.section-navy .section-label { color: var(--peach); background: rgba(247,197,159,0.1); }

/* ---- Partner Logos ---- */
.partner-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 40px; margin-top: 40px;
}
.partner-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
  opacity: 0.6; transition: var(--transition);
}
.partner-logo:hover { opacity: 1; color: var(--text-dark); }

/* ---- Forms ---- */
.form-container {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px; border: var(--border-outline); max-width: 600px; margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 20px;
  border: 1.5px solid rgba(27,45,79,0.15); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--text-dark);
  background: var(--cream); transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,115,74,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ---- Loading Animation ---- */
.page-loader {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-hero); z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900; color: var(--white); text-transform: uppercase;
  letter-spacing: -0.04em; animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-text .loader-accent {
  color: var(--lime);
  -webkit-text-fill-color: var(--lime);
}
.loader-wrap {
  display: inline-flex; align-items: flex-start; gap: 0; position: relative;
}
.loader-stars {
  display: inline-flex; flex-direction: column; gap: 2px; margin-left: 4px; margin-top: -0.1em;
}
.loader-stars svg { display: block; }
@keyframes loaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1); }
}

/* ---- Social footer CTA ---- */
.social-cta { text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.social-icons { display: flex; justify-content: center; gap: 16px; margin-top: 32px; }
.social-icon {
  width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.7rem;
  color: var(--coral); transition: var(--transition);
}
.social-icon:hover { background: var(--coral); color: var(--white); }

/* ---- Responsive Global ---- */
@media (max-width: 768px) {
  :root { --section-pad: 80px 0; }
  .container { padding: 0 24px; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .page-hero { padding: 140px 0 60px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
