/* ============================================
   Gabriel Gowezniansky - Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #FFF5EB;
  --color-text: #424560;
  --color-accent: #5659C7;
  --color-accent-hover: #39373b;
  --color-orange: #E8842C;
  --color-gold: #F5B731;
  --color-white: #ffffff;
  --color-light-text: #FFF5EB;
  --font-heading: 'Arimo', sans-serif;
  --font-body: 'Arimo', sans-serif;
  --max-width: 1300px;
  --header-height: 80px;
  --transition: 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-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Smooth image loading transition */
img.lazy-img {
  opacity: 0;
  transform: scale(1.01);
  filter: blur(5px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

img.lazy-img.loaded {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg) 82%);
  box-shadow: 0 15px 35px rgba(86, 89, 199, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 5%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.site-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text);
  padding: 5px 0;
  position: relative;
  display: inline-block;
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width var(--transition);
}

.nav-list > li > a:hover::after,
.nav-list > li > a.active::after {
  width: 100%;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--color-accent);
}

/* Dropdown */
.has-dropdown {
  cursor: pointer;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform var(--transition);
}

.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background-color: var(--color-bg);
  box-shadow: 0 35px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 100;
  padding: 10px 0;
  margin-top: 10px;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  border-bottom: 1px solid var(--color-accent);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text);
  transition: background-color var(--transition), color var(--transition);
}

.dropdown-menu a:hover {
  background-color: rgba(86, 89, 199, 0.08);
  color: var(--color-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  margin: 5px 0;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION (HOME)
   ============================================ */
.hero {
  background-color: var(--color-bg);
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  max-width: 650px;
  margin: 10px auto 0;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
}

/* ============================================
   "CONOCE A GABRIEL" SECTION
   ============================================ */
.section-title-block {
  background-color: var(--color-bg);
  text-align: center;
  padding: 40px 20px 20px;
}

.section-title-block h2 {
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 15px;
}

.section-title-block .arrow-down {
  color: var(--color-text);
  font-size: 24px;
}

/* Cards Grid (v2 - HTML/CSS cards) */
.cards-section {
  background-color: var(--color-bg);
  padding: 20px 0 60px;
}

.cards-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Feature Card */
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-white);
  border-radius: 16px;
  padding: 35px 20px 30px;
  box-shadow: 0 4px 20px rgba(66, 69, 96, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-text);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-text) 0%, var(--color-orange) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(86, 89, 199, 0.18);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

/* Card Icon */
.feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.feature-card__icon i {
  font-size: 22px;
  color: var(--color-white);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-gold) 100%);
}

/* Card Title */
.feature-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card__title .highlight {
  color: var(--color-orange);
}

/* Card Description */
.feature-card__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #6b6d85;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Card Button */
.feature-card__btn {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-card__btn {
  background: var(--color-orange);
  color: var(--color-white);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(232, 132, 44, 0.35);
}

/* ============================================
   SUBPAGE HERO
   ============================================ */
.subpage-hero {
  background-color: var(--color-bg);
  text-align: center;
  padding: 60px 20px 40px;
}

.subpage-hero h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
  background-color: var(--color-bg);
  padding: 40px 20px 60px;
}

.content-section .container {
  max-width: 1100px;
}

.content-section .container p {
  max-width: 750px;
}

.content-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-text);
}

.content-section p strong {
  font-weight: 600;
  color: #2d2f54;
}

.content-section p em {
  font-style: italic;
  color: var(--color-accent);
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  margin: 40px 0 20px;
  text-align: center;
}

/* Content Row (image + text side by side) */
.content-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.content-row--reverse {
  flex-direction: row-reverse;
}

.content-row__image {
  flex: 0 0 40%;
  max-width: 40%;
}

.content-row__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(66, 69, 96, 0.12);
}

.content-row__text {
  flex: 1;
}

/* Two columns layout */
.content-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.content-col__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(66, 69, 96, 0.1);
  margin-bottom: 15px;
}

/* Full-width paragraph */
.content-section .container p.full-width-text {
  text-align: left;
  max-width: 100%;
  line-height: 1.8;
  font-size: 17px;
}

/* Centered content with image */
.content-centered {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.content-centered__img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(66, 69, 96, 0.12);
  margin: 0 auto 25px;
}

.content-section h3 {
  font-size: 22px;
  margin: 30px 0 15px;
}

/* Highlight quote */
.highlight-quote {
  font-style: italic;
  font-size: 18px;
  color: var(--color-accent);
  text-align: center;
  padding: 30px 20px;
  margin: 30px 0;
  border-left: 3px solid var(--color-accent);
  background: rgba(86, 89, 199, 0.05);
  border-radius: 0 8px 8px 0;
}

/* Links / Buttons in content */
.content-section .btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 400;
  transition: background-color var(--transition);
  margin: 10px 5px;
}

.content-section .btn:hover {
  background-color: var(--color-accent-hover);
}

/* Book showcase section */
.book-showcase {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.book-showcase__cover {
  flex: 0 0 280px;
  text-align: center;
}

.book-showcase__title-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--color-accent);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.book-showcase__title-label::before,
.book-showcase__title-label::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin: 0 12px;
  opacity: 0.5;
}

.book-showcase__cover img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(66, 69, 96, 0.2);
}

.book-showcase__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.book-showcase__quote {
  position: relative;
  padding: 30px 20px;
  margin-bottom: 30px;
}

.book-showcase__quote p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
}

.book-showcase__quote-icon {
  font-size: 24px;
  color: var(--color-accent);
  opacity: 0.3;
  display: block;
  margin-bottom: 10px;
}

.book-showcase__quote-icon--right {
  text-align: right;
  margin-bottom: 0;
  margin-top: 10px;
}

/* Book quotes section */
.book-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.book-quotes__item {
  background: var(--color-white);
  border-radius: 14px;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(66, 69, 96, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-top: 3px solid var(--color-accent);
  transition: transform var(--transition), box-shadow var(--transition);
}

.book-quotes__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(66, 69, 96, 0.14);
}

.book-quotes__text {
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.book-quotes__cite {
  font-size: 13px;
  font-style: normal;
  color: var(--color-accent);
  font-weight: 500;
  display: block;
  text-align: right;
}

/* Bookstore logos */
.bookstore-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.bookstore-logo {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(66, 69, 96, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}

.bookstore-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(66, 69, 96, 0.18);
}

.bookstore-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section header */
.bootcamp-header {
  text-align: center;
  padding: 10px 0 30px;
  margin: 20px 0 35px;
}

.bootcamp-header__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
  padding-bottom: 12px;
  position: relative;
}

.bootcamp-header__label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--color-orange);
  border-radius: 3px;
}

.bootcamp-header__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-accent);
  letter-spacing: 0.3px;
  margin-top: 4px;
}

/* Video grid (2 columns on desktop) */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.video-grid .video-block {
  max-width: 100%;
  margin: 0;
}

/* Embedded video blocks */
.video-block {
  margin: 0 auto 45px;
  max-width: 780px;
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px 28px 30px;
  box-shadow: 0 4px 24px rgba(66, 69, 96, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.video-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(66, 69, 96, 0.14);
}

.video-block h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--color-orange);
  line-height: 1.3;
}

.video-block h3 .video-number {
  font-weight: 700;
  color: var(--color-orange);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonios section header */
.section-divider-title {
  text-align: center;
  margin: 50px 0 30px;
  position: relative;
}

.section-divider-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(86, 89, 199, 0.25), transparent);
}

.section-divider-title span {
  display: inline-block;
  background: var(--color-bg);
  padding: 0 25px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--color-accent);
  position: relative;
  z-index: 1;
}

/* Organization blocks */
.org-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

.org-block {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  background: rgba(86, 89, 199, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-block__logo {
  max-width: 220px;
  height: 70px;
  margin: 0 auto 15px;
  object-fit: contain;
}

.org-block .org-block__logo--cropped {
  max-width: 200px;
  height: 70px;
  object-fit: contain;
}

.org-block h2 {
  font-size: 22px;
  margin-bottom: 15px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.org-block .social-links {
  margin-top: 15px;
}

.org-block .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  margin: 0 5px;
  font-size: 14px;
  transition: background-color var(--transition);
}

.org-block .social-links a:hover {
  background-color: var(--color-accent-hover);
}

/* ============================================
   PRESS / MEDIA SECTION
   ============================================ */
.press-section {
  padding: 40px 20px 60px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 30px auto 0;
}

.press-card {
  display: block;
  text-decoration: none;
  background: var(--color-white);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(86, 89, 199, 0.15);
}

.press-card__img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  display: block;
  background: #f5f5f5;
  padding: 15px;
}

.press-card .press-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
  padding: 20px 25px 0;
}

.press-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--color-text);
  padding: 0 25px;
}

.press-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  padding: 0 25px 25px;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
  padding: 40px 20px 60px;
}

.events-list {
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(66, 69, 96, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66, 69, 96, 0.14);
}

.event-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.event-card__body {
  padding: 28px 30px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.event-card__date {
  text-align: center;
  min-width: 70px;
  padding: 12px 10px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 10px;
  flex-shrink: 0;
}

.event-card__date .day {
  font-size: 28px;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.event-card__date .month {
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.event-card__date .year {
  font-size: 11px;
  display: block;
  margin-top: 2px;
  opacity: 0.8;
}

.event-card__info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

.event-card__info p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 10px;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-accent);
}

.event-card__meta i {
  margin-right: 5px;
  opacity: 0.7;
}

.no-events {
  text-align: center;
  padding: 50px 30px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(66, 69, 96, 0.06);
}

.no-events i {
  font-size: 40px;
  color: var(--color-accent);
  opacity: 0.3;
  display: block;
  margin-bottom: 15px;
}

.no-events p {
  font-style: italic;
  color: #999;
  font-size: 16px;
  margin-bottom: 15px;
}

.no-events .social-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.no-events .social-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 16px;
  transition: background var(--transition), transform var(--transition);
}

.no-events .social-cta a:hover {
  background: var(--color-orange);
  transform: scale(1.1);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 40px 20px 60px;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-info .mailto-btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color var(--transition), transform var(--transition);
  margin: 20px 0;
}

.contact-info .mailto-btn:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.contact-social {
  margin-top: 30px;
}

.contact-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  margin: 0 8px;
  font-size: 18px;
  transition: background-color var(--transition), transform var(--transition);
}

.contact-social a:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-text) 100%);
  padding: 60px 5% 30px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin: 0 auto 30px;
}

.footer-description {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 25px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer Social Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-bg);
  font-size: 14px;
  transition: background-color var(--transition);
}

.footer-social a:hover {
  background-color: var(--color-accent-hover);
}

/* Footer Contact Info */
.footer-contact {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-light-text);
  margin-bottom: 20px;
}

.footer-copyright {
  font-size: 12px;
  font-weight: 200;
  text-transform: capitalize;
  color: var(--color-light-text);
  line-height: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .site-logo img {
    height: 33px;
  }

  .section-title-block h2 {
    font-size: 28px;
  }

  .cards-grid-v2 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
  }

  .feature-card {
    padding: 28px 16px 24px;
  }

  .feature-card__title {
    font-size: 15px;
  }

  .feature-card__desc {
    font-size: 13px;
  }

  .content-row {
    flex-direction: column;
  }

  .content-row--reverse {
    flex-direction: column;
  }

  .content-row__image {
    flex: 0 0 100%;
    max-width: 60%;
    margin: 0 auto 20px;
  }

  .content-two-cols {
    grid-template-columns: 1fr;
  }

  .book-showcase {
    flex-direction: column;
    gap: 30px;
  }

  .book-showcase__cover {
    flex: 0 0 auto;
    max-width: 250px;
  }

  .book-quotes {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .org-blocks {
    grid-template-columns: 1fr;
  }

  .press-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero h1 {
    font-size: 32px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--color-bg);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    padding: 100px 30px 30px;
    transition: right var(--transition);
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .nav-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(86, 89, 199, 0.1);
  }

  .nav-list > li > a {
    display: block;
    padding: 18px 0;
    font-size: 17px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0 0 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: visible;
  }

  .has-dropdown.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
  }

  .dropdown-menu a {
    padding: 14px 15px;
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --header-height: 65px;
  }

  .site-logo img {
    height: 45px;
  }

  .hero-image-wrapper {
    margin-top: 5px;
  }

  .hero-image-wrapper img {
    width: 90%;
    margin: 0 auto;
  }

  .section-title-block h2 {
    font-size: 25px;
  }

  .cards-grid-v2 {
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
    gap: 15px;
  }

  .feature-card {
    padding: 24px 14px 20px;
  }

  .feature-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .feature-card__icon i {
    font-size: 18px;
  }

  .feature-card__title {
    font-size: 14px;
  }

  .feature-card__desc {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .feature-card__btn {
    font-size: 12px;
    padding: 8px 18px;
  }

  .subpage-hero {
    padding: 40px 20px 30px;
  }

  .subpage-hero h1 {
    font-size: 26px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .event-card__body {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }

  .event-card__date {
    flex-direction: row;
    display: flex;
    gap: 8px;
    align-items: center;
    min-width: auto;
    padding: 8px 16px;
  }

  .event-card__date .day {
    font-size: 22px;
  }

  .event-card__date .month,
  .event-card__date .year {
    margin-top: 0;
  }

  .event-card__img {
    height: 160px;
  }

  .footer-description {
    font-size: 14px;
  }

  .site-footer {
    margin-top: 40px;
  }
}
