/* ===========================
   VIRSAT Landing Page - Styles
   =========================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --blue-primary: #003B7A;
  --blue-dark: #002554;
  --blue-medium: #005BAA;
  --blue-light: #0074D9;
  --yellow-primary: #D9A727;
  --yellow-light: #FFC940;
  --yellow-bg: #FFF8E1;
  --gold: #D9A727;
  --white: #ffffff;
  --off-white: #F7F9FC;
  --gray-100: #f0f2f5;
  --gray-200: #e0e4e8;
  --gray-400: #8c95a1;
  --gray-600: #4a5568;
  --gray-800: #2d3748;
  --dark: #0055B8;
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ---------- Section Helpers ---------- */
section {
  position: relative;
}

.section-padding {
  padding: 80px 0;
}

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

/* ---------- Buttons ---------- */
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(217, 167, 39, 0.3);
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  transform: translateY(-2px);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid var(--blue-primary);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 40%, var(--blue-medium) 100%);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  color: var(--white);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(-15deg);
  pointer-events: none;
}

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

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

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 70px;
}

.hero-logo {
  max-width: 220px;
  margin-bottom: 40px;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 auto 20px;
  max-width: 900px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--yellow-primary);
  margin: 0 auto 24px;
  max-width: 800px;
}

.hero-description {
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.6;
  margin: 0 auto 35px;
  max-width: 700px;
}

.session-dates {
  background: #005BAA;
  border-radius: 4px;
  padding: 25px 40px;
  margin-bottom: 35px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.session-dates h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #ffffff;
}

.session-date-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.session-date-row:last-child {
  margin-bottom: 0;
}

.date-badge {
  color: var(--yellow-primary);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 60px;
  text-align: right;
}

.date-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================
   BEFORE YOU REGISTER
   ============================ */
.ask-yourself-section {
  background: var(--white);
  overflow: hidden;
}

.ask-yourself-section h2 {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  color: #005BAA;
  margin-bottom: 30px;
  font-weight: 800;
}

.worker-img {
  transform: scale(1.3);
  transform-origin: left center;
  opacity: 0.95;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.ask-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.ask-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 1.15rem;
  color: #D9A036;
  font-weight: 500;
}

.ask-list li .bullet {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: var(--yellow-primary);
  margin-top: 8px;
}

.callout-box-blue {
  background: #005BAA;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.callout-box-blue p {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

/* ============================
   WHAT THIS WEBINAR REALLY IS
   ============================ */
.webinar-about-section {
  background: var(--blue-medium);
  color: var(--white);
  padding: 100px 0;
}

.webinar-about-section h2 {
  font-family: var(--font-primary);
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -1px;
}

.webinar-about-section .lead-text {
  color: var(--yellow-primary);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.webinar-about-section .sub-text {
  font-size: 1.25rem;
  opacity: 1;
  margin-bottom: 70px;
  text-align: center;
}

.webinar-about-section .sub-text strong {
  font-weight: 800;
}

.expert-card {
  background: transparent;
  border: none;
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.expert-card:hover {
  transform: translateY(-8px);
}

.expert-card img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  background: white;
  padding: 0;
  border-radius: 0;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.expert-card .card-body {
  padding: 0;
}

.expert-card .card-body p {
  font-size: 1.15rem;
  color: white;
  line-height: 1.3;
  opacity: 1;
}

.expert-card .card-body p strong {
  font-weight: 700;
}

.qna-note {
  color: var(--yellow-primary);
  font-weight: 800;
  font-size: 1.8rem;
  margin-top: 100px;
  font-style: normal;
  line-height: 1.25;
  text-align: center;
}

/* ============================
   WHAT YOU'LL TAKE AWAY
   ============================ */
.takeaway-section {
  background: var(--white);
  padding: 100px 0;
}

.takeaway-section h2 {
  font-family: var(--font-primary);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--blue-medium);
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: -1px;
}

.takeaway-list {
  list-style: none;
  padding: 0;
}

.takeaway-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.3;
}

.takeaway-list li.main-item {
  font-weight: 800;
}

.takeaway-list li.sub-item {
  font-weight: 600;
  margin-left: 35px;
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.takeaway-list li .check-icon {
  color: var(--dark);
  font-size: 1.4rem;
  margin-top: 1px;
  min-width: 25px;
}

.takeaway-list li .yellow-bullet {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: var(--yellow-primary);
  margin-top: 9px;
}

.takeaway-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.takeaway-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* ============================
   BUILT ON EXPERIENCE
   ============================ */
.experience-section {
  background: var(--off-white);
  padding: 100px 0;
}

.experience-section h2 {
  font-family: var(--font-primary);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--blue-medium);
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.experience-section .company-desc {
  font-size: 1.15rem;
  color: var(--gray-800);
  margin-bottom: 25px;
  line-height: 1.6;
}

.experience-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.3;
}

.experience-list li.main-item {
  font-weight: 800;
}

.experience-list li .yellow-bullet {
  width: 14px;
  height: 14px;
  min-width: 14px;
  border-radius: 50%;
  background: var(--yellow-primary);
  margin-top: 9px;
}

.experience-insight {
  font-size: 1.2rem;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.experience-insight-bold {
  font-size: 24pt;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 30px;
}

.presenting-heading {
  color: var(--blue-medium);
  font-size: 24pt;
}

.presenter-title-blue {
  color: var(--blue-medium);
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 25px;
  display: block;
}

/* New Horizontal Presenter Cards */
.presenter-card-horizontal {
  display: flex;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  height: 280px;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.presenter-card-horizontal:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
}

.presenter-image-side {
  flex: 1;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.presenter-portrait {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presenter-portrait img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.presenter-info-side {
  flex: 1.3;
  background: var(--blue-medium);
  color: white;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.presenter-name {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 5px;
  color: white;
}

.presenter-role {
  color: var(--yellow-primary);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.presenter-dept {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 25px;
  opacity: 0.9;
}

.presenter-focus {
  font-size: 0.95rem;
  line-height: 1.4;
}

.presenter-focus strong {
  display: block;
  font-weight: 800;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .presenter-card-horizontal {
    flex-direction: column;
    height: auto;
  }

  .presenter-image-side {
    padding: 30px;
  }
}

/* ============================
   WHY THIS CONVERSATION MATTERS
   ============================ */
.why-matters-section {
  background: var(--white);
  padding: 100px 0;
}

.why-matters-section h2 {
  font-family: var(--font-primary);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--blue-medium);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: -1px;
}

.why-matters-section .section-subtitle,
.why-matters-section .section-sub2 {
  color: var(--yellow-primary);
  font-weight: 800;
  font-size: 2.8rem;
  margin-bottom: 5px;
  line-height: 1.1;
  text-align: center;
}

.why-matters-section .section-sub2 {
  margin-bottom: 60px;
}

.matters-card {
  text-align: center;
  padding: 0;
  height: 100%;
}

.matters-card img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  background: white;
  margin-bottom: 25px;
  transition: var(--transition);
}

.matters-card:hover img {
  transform: translateY(-8px);
}

.matters-card p {
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.3;
  font-weight: 600;
}

.incident-callout-box {
  display: inline-block;
  background: var(--blue-medium);
  color: var(--white);
  font-weight: 800;
  font-size: 2.2rem;
  padding: 25px 80px;
  border-radius: 4px;
  margin-top: 60px;
  box-shadow: 0 15px 45px rgba(0, 59, 122, 0.2);
  letter-spacing: -0.5px;
}

/* ============================
   FINAL CTA
   ============================ */
.final-cta-section {
  background: var(--off-white);
  color: var(--blue-medium);
  text-align: center;
  padding: 100px 0;
}

.final-cta-section h2 {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.final-cta-section .cta-sub {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  color: var(--yellow-primary);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.final-cta-section .btn-cta {
  background: #D9A036;
  /* Solid color matching the image */
  color: white;
  box-shadow: 0 10px 30px rgba(217, 160, 54, 0.2);
  font-size: 1.1rem;
  padding: 18px 45px;
}

.final-cta-section .btn-cta:hover {
  background: #C48F2F;
  transform: translateY(-3px);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--white);
  color: var(--blue-medium);
  padding: 50px 0;
  font-size: 0.95rem;
  border-top: 1px solid var(--gray-200);
}

.site-footer p {
  color: var(--blue-medium);
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-link {
  display: inline-block;
  background: var(--blue-medium);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(0, 59, 122, 0.1);
}

.footer-link:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: 15px;
  transition: var(--transition);
}

.social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icons a:hover {
  transform: translateY(-5px);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-content {
    padding: 60px 0 60px;
    text-align: center;
  }

  .hero-title,
  .hero-subtitle,
  .hero-description {
    max-width: 100%;
  }

  .session-dates {
    display: block;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .callout-box {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  body {
    line-height: 1.2;
  }

  .hero-bg-image img {
    object-position: center;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-padding-lg {
    padding: 60px 0;
  }

  h2 {
    font-size: 1.6rem !important;
  }

  .final-cta-section .cta-sub {
    font-size: 2.8rem;
  }

  .session-date-row {
    /* flex-direction: column; */
    gap: 4px;
    align-items: flex-start;
  }
}

/* ---------- Animations Overrides ---------- */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--blue-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue-dark);
}