/* =========================================================
   BRAND VARIABLES – WHITE / GOLD / BLACK (VIBRANT)
========================================================= */
:root {
  --gold: #d4af37;
  --gold-light: #f2d675;
  --gold-dark: #b8962e;

  --black: #0b0b0b;
  --black-soft: #1a1a1a;

  --white: #ffffff;
  --off-white: #f9f9f9;

  --gray: #f1f1f1;
  --border: #e2e2e2;

  --text: #2b2b2b;
}

/* =========================================================
   RESET & BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: 0.4px;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 36px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  font-size: 17px;
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}

/* =========================================================
   LINKS & BUTTONS
========================================================= */
a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 15px 44px;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 30px rgba(212,175,55,0.45);
  transition: all 0.35s ease;
  margin-top: 25px;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 45px rgba(212,175,55,0.65);
}

.btn-small {
  background: var(--black);
  color: var(--gold);
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 6px;
}


/* ================= NAVBAR – EXECUTIVE ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left */
.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.5px;
}

.nav-tagline {
  font-size: 12px;
  font-weight: 600;
  color: #666;
}

/* Links */
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}

/* Hover underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta .nav-btn {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 10px 25px rgba(212,175,55,0.45);
  transition: all 0.3s ease;
}

.nav-cta .nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(212,175,55,0.7);
}

/* Responsive */
@media (max-width: 950px) {
  .navbar {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 22px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}


/* =========================================================
   HERO SECTION
========================================================= */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
    url("images/hero/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  color: var(--gold);
  margin-bottom: 18px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 22px;
  max-width: 900px;
  margin: 0 auto;
  color: rgba(255,255,255,0.95); /* ✅ FIXED */
  opacity: 1; /* ✅ FIXED */
}


/* =========================================================
   ABOUT SECTION (REDESIGN)
========================================================= */
.about-section {
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  color: #222; /* ✅ FIXED */
}

.about-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

/* eyebrow */
.about-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* text */
.about-text h2 {
  text-align: left;
  margin-bottom: 18px;
  color: var(--black); /* ✅ FIXED */
}

.about-text p {
  text-align: left;
  max-width: none;
  font-size: 17px;
  line-height: 1.7;
  color: #222; /* ✅ FIXED */
  opacity: 1; /* ✅ FIXED */
}

/* lead */
.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: #222; /* ✅ FIXED */
}

/* =========================================================
   ABOUT RIGHT CARD
========================================================= */
.about-card {
  background: linear-gradient(180deg, #0b0b0b, #151515);
  border-radius: 20px;
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  border-top: 6px solid var(--gold);
}

.about-card h3 {
  color: var(--gold);
  margin-bottom: 20px;
  text-align: left;
}

.about-card p,
.about-card li {
  color: rgba(255,255,255,0.95); /* ✅ FIXED */
  opacity: 1; /* ✅ FIXED */
}

/* list */
.industry-list {
  list-style: none;
  padding: 0;
}

.industry-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-weight: 500;
  font-size: 16px;
}

.industry-list li:last-child {
  border-bottom: none;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    text-align: center;
  }

  .about-text p {
    text-align: center;
  }
}



/* ================= EMPLOYERS SECTION (REDESIGN) ================= */
.employers-section {
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
}

.employers-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Left Content */
.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.employers-content h2 {
  text-align: left;
  margin-bottom: 18px;
}

.employers-content p {
  text-align: left;
  max-width: none;
}

.employers-lead {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

/* Right Card */
.employers-card {
  background: linear-gradient(180deg, #0b0b0b, #161616);
  color: var(--white);
  padding: 45px;
  border-radius: 22px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.employers-card h3 {
  color: var(--gold);
  margin-bottom: 25px;
}

/* Process Steps */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-step span {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 800;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step p {
  margin: 0;
  text-align: left;
  font-weight: 500;
  color: #f0f0f0;
}

/* Pricing Note */
.pricing-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 950px) {
  .employers-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .employers-content h2,
  .employers-content p {
    text-align: center;
  }

  .process-step {
    justify-content: center;
  }

  .process-step p {
    text-align: center;
  }
}



/* ================= JOB SEEKERS SECTION ================= */
.jobseekers-section {
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
}

.jobseekers-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 70px;
  align-items: center;
}

.jobseekers-content h2 {
  text-align: left;
}

.jobseekers-content p {
  text-align: left;
  max-width: none;
}

.jobseekers-lead {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

/* Right Card */
.jobseekers-card {
  background: linear-gradient(180deg, #0b0b0b, #161616);
  color: var(--white);
  padding: 45px;
  border-radius: 22px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

.jobseekers-card h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

/* List */
.jobseekers-list {
  list-style: none;
  padding: 0;
}

.jobseekers-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 16px;
}

.jobseekers-list li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 950px) {
  .jobseekers-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .jobseekers-content h2,
  .jobseekers-content p {
    text-align: center;
  }
}

/* ================= MOTIVATION QUOTE SECTION ================= */
.motivation-section {
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  text-align: center;
}

.motivation-container {
  max-width: 900px;
  margin: auto;
}

.motivation-image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 4px solid var(--gold);
}

.motivation-caption {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  max-width: 700px;
  margin: auto;
}

/* ================= PLACEMENT – PROFESSIONAL UPGRADE ================= */

.placement-visual-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

/* Panel */
.placement-panel {
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  border-radius: 26px;
  padding: 48px 44px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.16);
  border-top: 6px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.placement-panel.accent {
  background: linear-gradient(180deg, #fffdf6, #faf4e8);
}

/* Hover */
.placement-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 110px rgba(0,0,0,0.28);
}

/* Header */
.placement-panel-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.placement-panel-header h4 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
}

/* Icon (clean, not emoji) */
.panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  position: relative;
}

.panel-icon::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 2px;
  background: var(--black);
}

.panel-icon.home::after {
  clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0 100%, 0 40%);
}

/* Intro */
.panel-intro {
  font-size: 16.5px;
  font-weight: 600;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* List */
.panel-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.panel-list li {
  font-size: 15.5px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.panel-list li:last-child {
  border-bottom: none;
}

/* Buttons */
.panel-btn {
  margin-top: auto;
  padding: 16px 40px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 50px;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 18px 40px rgba(212,175,55,0.45);
  transition: all 0.3s ease;
}

.panel-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(212,175,55,0.7);
}

.panel-btn.dark {
  background: linear-gradient(135deg, #111, #000);
  color: var(--gold);
  box-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .placement-visual-pro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* ================= OTHER SERVICES SECTION ================= */
.services-section {
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  text-align: center;
}

.section-eyebrow.center {
  display: block;
  text-align: center;
}

.services-intro {
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 17px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* Service Card */
.service-card {
  background: var(--white);
  padding: 40px;
  border-radius: 18px;
  border-bottom: 6px solid var(--gold);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--black);
}

.service-card p {
  text-align: center;
}

/* ================= GALLERY SECTION (LIGHT & EYE-CATCHING) ================= */
.gallery-section {
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  text-align: center;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

/* Card */
.gallery-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.25);
}

/* Image */
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Label */
.gallery-label {
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
  border-top: 4px solid var(--gold);
  background: var(--white);
}


/* =========================================================
   CDL VIDEO SECTION
========================================================= */
.cdl-video-section {
  background: var(--off-white);
  text-align: center;
}

.cdl-intro {
  max-width: 850px;
  margin: 20px auto 40px;
  font-size: 1.05rem;
  color: var(--text);
}

.cdl-video-wrapper {
  max-width: 900px;
  margin: 0 auto 40px;
}

.cdl-video-wrapper video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.cdl-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cdl-cta .btn {
  padding: 14px 38px;
  font-size: 15px;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 160px 20px;
  background:
    radial-gradient(
      circle at top center,
      rgba(212,175,55,0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff, #f7f7f7);
  position: relative;
}

/* Container */
.contact-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= LEFT CONTENT ================= */
.contact-info {
  max-width: 680px;
}

.contact-info .section-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--gold-dark);
}

.contact-info h2 {
  font-size: clamp(2.6rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.6px;
  color: #111;
  margin-bottom: 20px;
}

.contact-info h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(212,175,55,0.45);
}

.contact-lead {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.7;
  color: #222;
  margin-top: 26px;
}

.contact-details {
  margin-top: 28px;
}

.contact-details p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 10px;
}

/* ================= CONTACT CARD ================= */
.contact-card {
  background: linear-gradient(180deg, #0f0f0f, #1a1a1a);
  color: #ffffff;
  padding: 56px 48px;
  border-radius: 28px;
  position: relative;
  box-shadow:
    0 45px 110px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* Gold top accent */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 28px 28px 0 0;
}

/* Heading */
.contact-card h3 {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 26px;
  text-align: center;
}

/* ================= FORM ================= */
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Inputs */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
}

/* Placeholder */
.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

/* Focus state */
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

/* Textarea */
.contact-card textarea {
  min-height: 130px;
  resize: vertical;
}

/* Submit Button */
.contact-card button {
  margin-top: 10px;
  padding: 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(212,175,55,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 70px rgba(212,175,55,0.65);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 950px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .contact-info h2::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 120px 20px;
  }

  .contact-card {
    padding: 44px 34px;
  }

  .contact-info h2 {
    font-size: 2.4rem;
  }
}


/* ================= BOOKING SECTION – CINEMATIC CTA ================= */
.booking-section-premium {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,0.35), transparent 45%),
    radial-gradient(circle at bottom left, rgba(212,175,55,0.2), transparent 50%),
    linear-gradient(180deg, #050505, #121212);
  padding: 120px 20px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

/* subtle texture overlay */
.booking-section-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.15;
  pointer-events: none;
}

/* wrapper */
.booking-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* headline */
.booking-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gold);
  margin-bottom: 20px;
}

/* subtitle */
.booking-subtitle {
  font-size: 19px;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* CTA button */
.booking-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 20px 60px;
  font-size: 17px;
  font-weight: 800;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 18px 40px rgba(212,175,55,0.55),
    0 0 0 0 rgba(212,175,55,0.6);
  transition: all 0.35s ease;
}

/* button hover */
.booking-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 28px 70px rgba(212,175,55,0.9),
    0 0 40px rgba(212,175,55,0.4);
}

/* note */
.booking-note {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: #bfbfbf;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .booking-title {
    font-size: 34px;
  }

  .booking-subtitle {
    font-size: 17px;
  }

  .booking-btn {
    padding: 18px 44px;
  }
}



/* ================= CALENDAR POPUP MODAL (FIXED & CLEAN) ================= */

.calendar-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* Modal container */
.calendar-modal-content {
  background: var(--white);
  width: 100%;
  max-width: 1200px;   /* 🔥 allows full Google Calendar layout */
  height: 90vh;        /* 🔥 prevents side collapse */
  border-radius: 22px;
  padding: 24px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  animation: popupFade 0.3s ease;
}

/* Header text */
.calendar-modal-content h3 {
  text-align: center;
  margin-bottom: 12px;
  color: var(--black);
  flex-shrink: 0;
}

/* iframe FULL SIZE */
.calendar-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  flex-grow: 1;
}

/* Close button */
.close-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  position: absolute;
  top: 18px;
  left: 20px;
}

.close-btn:hover {
  text-decoration: underline;
}

/* Animation */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .calendar-modal {
    padding: 16px;
  }

  .calendar-modal-content {
    height: 95vh;
    padding: 16px;
  }
}




/* ================= FOOTER – PREMIUM ================= */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.18), transparent 45%),
    linear-gradient(180deg, #000000, #0e0e0e);
  padding: 80px 20px 60px;
  text-align: center;
  border-top: 5px solid var(--gold);
  overflow: hidden;
}

/* subtle texture overlay */
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
  opacity: 0.12;
  pointer-events: none;
}

/* Content wrapper */
.footer-content {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Logo */
.footer-logo {
  height: 60px;
  margin-bottom: 22px;
  filter: drop-shadow(0 4px 12px rgba(212,175,55,0.45));
}

/* Company text */
.footer-content p {
  color: #dddddd;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

/* Divider line */
.footer-divider {
  width: 120px;
  height: 3px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Copyright */
.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  color: #aaaaaa;
  letter-spacing: 0.4px;
}

/* Small accent glow */
.site-footer::before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.15), transparent 70%);
  transform: translateX(-50%);
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 65px 20px 50px;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-content p {
    font-size: 14px;
  }
}


/* =========================================================
   SECTIONS
========================================================= */
section,
.section-block {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.bg-light {
  background: linear-gradient(180deg, #ffffff, #f6f6f6);
}

/* =========================================================
   LISTS
========================================================= */
.list {
  max-width: 800px;
  margin: 25px auto;
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
  font-size: 16px;
}

/* =========================================================
   GRID / CARDS
========================================================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  margin-top: 45px;
}

.card {
  background: var(--white);
  border-top: 6px solid var(--gold);
  padding: 36px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  font-weight: 500;
}

/* =========================================================
   VIDEO SECTION
========================================================= */
.video-wrapper {
  max-width: 960px;
  margin: 50px auto 30px;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at top, #222, #000);
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 22px 65px rgba(0,0,0,0.65);
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================
   FORMS
========================================================= */
form {
  max-width: 650px;
  margin: 45px auto 0;
  display: grid;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

textarea {
  min-height: 120px;
}

button.btn {
  border: none;
  cursor: pointer;
}



/* =========================================================
   CTA
========================================================= */
.cta {
  background: linear-gradient(180deg, #000, #111);
  color: var(--white);
  text-align: center;
  padding: 90px 20px;
}

.cta h2 {
  color: var(--gold);
}

/* ================= FOOTER – COMPACT PREMIUM ================= */
.site-footer {
  position: relative;
  background:
    linear-gradient(180deg, #000000, #0e0e0e);
  padding: 45px 20px 40px;   /* 🔥 MUCH smaller */
  text-align: center;
  border-top: 3px solid var(--gold);
}

/* subtle gold glow (contained) */
.site-footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(
    circle,
    rgba(212,175,55,0.18),
    transparent 70%
  );
  pointer-events: none;
}

/* content wrapper */
.footer-content {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* logo */
.footer-logo {
  display: block;
  margin: 0 auto 14px;   /* 🔥 reduced */
  height: 48px;          /* 🔥 smaller */
  filter: drop-shadow(0 4px 10px rgba(212,175,55,0.35));
}

/* company text */
.footer-content p {
  font-size: 14px;       /* 🔥 tighter */
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

/* divider */
.footer-divider {
  width: 80px;
  height: 2px;
  margin: 18px auto;     /* 🔥 reduced */
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  opacity: 0.6;
}

/* copyright */
.footer-copy {
  font-size: 12.5px;
  margin-top: 10px;
  color: rgba(255,255,255,0.65);
}
/* ================= FOOTER SOCIAL ================= */

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 26px 0 18px;
}

.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold);

  font-size: 20px;

  transition: all .35s ease;
  position: relative;
}

/* glow ring */
.footer-social a::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  opacity: 0;
  background: radial-gradient(circle, rgba(212,175,55,0.6), transparent 70%);
  transition: opacity .35s ease;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.08);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  box-shadow: 0 18px 40px rgba(212,175,55,0.6);
}

.footer-social a:hover::after {
  opacity: 1;
}

/* mobile spacing */
@media (max-width: 600px) {
  .footer-social {
    gap: 16px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}



/* =========================================================
   GLOBAL MOBILE FIXES
========================================================= */
@media (max-width: 768px) {

  /* ===== GLOBAL SPACING ===== */
  section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ===== HEADERS ===== */
  h1 {
    font-size: 2.1rem !important;
  }

  h2 {
    font-size: 2.2rem !important;
  }

  h3 {
    font-size: 1.35rem !important;
  }

  p {
    font-size: 1rem !important;
  }

  /* ===== HERO ===== */
  .placement-hero {
    min-height: auto;
    padding: 120px 16px 100px;
  }

  .placement-hero-content,
  .qualifications-content,
  .placement-clarity-content {
    padding: 42px 26px;
  }

  /* ===== BUTTONS ===== */
  .placement-hero-buttons,
  .placement-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  /* ===== GRIDS → STACK ===== */
  .why-grid,
  .role-triptych,
  .audience-grid,
  .process-flow,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  /* Remove staggered transforms */
  .why-card,
  .why-card:nth-child(2),
  .why-card:nth-child(3) {
    transform: none !important;
  }

  /* ===== CTA ===== */
  .placement-cta-inner {
    padding: 50px 26px;
  }

  /* ===== CALENDAR MODAL ===== */
  .calendar-modal-content {
    height: 95vh;
    padding: 16px;
  }

  .calendar-modal-content h3 {
    font-size: 1.4rem;
  }

  /* ===== FOOTER ===== */
  .site-footer {
    padding: 35px 16px;
  }

  .footer-logo {
    height: 42px;
  }
}



/* =========================================================
   SMALL TABLET FIXES
========================================================= */
@media (max-width: 1024px) {

  /* Reduce vertical spacing */
  section {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  /* Grids adjust */
  .why-grid,
  .audience-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Remove staggered cards */
  .why-card:nth-child(2),
  .why-card:nth-child(3) {
    transform: none;
  }

  /* Reduce hero height */
  .placement-hero,
  .qualifications-hero {
    min-height: 70vh;
  }
}


/* =========================================================
   MOBILE NAV TOGGLE
========================================================= */

/* Toggle button (hidden desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile styles */
@media (max-width: 950px) {

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 40px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.active {
    max-height: 420px;
  }

  .nav-links a {
    font-size: 16px;
    font-weight: 800;
  }

  .nav-cta {
    display: none;
  }
}

/* Toggle animation */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}











