/* BEYOA Travel - Static Clone Styles */

/* ===== FONTS ===== */
@font-face {
  font-family: 'Poppins';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/poppins_n4.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/poppins_n7.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/opensans_n4.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/assets/fonts/opensans_n7.woff2') format('woff2');
}

/* ===== CSS VARIABLES ===== */
:root {
  --purple: #5030B3;
  --purple-dark: #3d2589;
  --red: #E90747;
  --gold: #FDC720;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray-border: #e6e6e6;
  --font-body: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-accent: 'Open Sans', sans-serif;
  --page-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== UTILITY ===== */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.uppercase {
  text-transform: uppercase;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo img {
  height: 60px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav a {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--purple);
}

.header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__actions button,
.header__actions a {
  color: var(--black);
  font-size: 20px;
}

.header__actions svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .header__menu-toggle {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video-wrapper video,
.hero__video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px;
}

/* ===== SECTION: Tourism With Purpose (text block) ===== */
.section-twp {
  padding: 80px 20px;
  text-align: center;
  background: var(--white);
}

.section-twp h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
  letter-spacing: 0.18em;
}

.section-twp p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--purple);
  transition: all 0.3s;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--purple);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--purple);
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
}

.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--red);
  transition: all 0.3s;
}

.btn-red:hover {
  background: #c00639;
  border-color: #c00639;
}

/* ===== EXPERIENCE SNAPSHOT (Collection Grid) ===== */
.section-snapshot {
  padding: 60px 20px;
  background: var(--white);
}

.section-snapshot h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.collection-grid--row2 {
  grid-template-columns: repeat(3, 1fr);
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .collection-grid--row2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== TOURISM WITH PURPOSE (Video + Text) ===== */
.section-video-text {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 400px;
  margin-top: 80px;
}

.section-video-text__media {
  position: relative;
  overflow: hidden;
}

.section-video-text__media img,
.section-video-text__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.play-button svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
  margin-left: 3px;
}

.section-video-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  background: var(--white);
}

.section-video-text__content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-video-text__content p {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .section-video-text {
    grid-template-columns: 1fr;
  }
}

/* ===== THREE ICONS ROW ===== */
.section-icons {
  padding: 50px 20px;
  background: var(--white);
}

.icons-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.icon-item {
  flex: 1;
  max-width: 280px;
}

.icon-item__icon {
  color: var(--red);
  font-size: 28px;
  margin-bottom: 12px;
}

.icon-item__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--red);
}

.icon-item h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.icon-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .icons-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

/* ===== SAFE INCLUSIVE SECTION ===== */
.section-safe {
  padding: 40px 20px;
  text-align: center;
  background: var(--white);
}

.section-safe h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.safe-bar {
  background: var(--red);
  padding: 24px 20px;
}

.safe-bar .icons-row {
  color: var(--white);
}

.safe-bar .icon-item h4,
.safe-bar .icon-item p {
  color: var(--white);
}

.safe-bar .icon-item__icon svg {
  fill: var(--gold);
}

/* ===== JOIN THE MOVEMENT / NEWSLETTER ===== */
.section-newsletter {
  padding: 60px 20px;
  text-align: center;
  background: var(--gray-light);
}

.section-newsletter h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-newsletter p {
  font-size: 13px;
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form__row {
  display: flex;
  gap: 12px;
}

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
  border-color: var(--purple);
}

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

.newsletter-form .btn-submit {
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: all 0.3s;
}

.newsletter-form .btn-submit:hover {
  background: #c00639;
  border-color: #c00639;
}

/* ===== BLOG POSTS / INSIGHTS ===== */
.section-blog {
  padding: 60px 20px;
  background: var(--white);
}

.section-blog h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  color: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  overflow: hidden;
}

.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 16px 0;
}

.blog-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  line-height: 1.4;
}

.blog-card__meta {
  font-size: 12px;
  color: #888;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.section-faq {
  padding: 60px 20px;
  background: var(--white);
}

.section-faq h2 {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 100%;
  text-align: left;
}

.faq-item__question span.icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.open .faq-item__question span.icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer p {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--purple);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-top: 18px;
  border-top: 2px solid var(--gold);
  color: var(--gold);
}

.footer__col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

.footer__email-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 4px;
}

.footer__email-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
  outline: none;
}

.footer__email-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer__email-form button {
  color: var(--white);
  font-size: 20px;
  padding: 4px;
}

.footer__bottom {
  text-align: left;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCTS GRID ===== */
.section-products {
  padding: 0 0 60px;
}

.products-hero {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px 24px;
  background: var(--purple);
}

.products-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.products-hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.06em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 100%;
}

.product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__title {
  background: var(--purple);
  color: var(--white);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SIMPLE PAGE (About, Experiences, Impact) ===== */
.simple-page {
  padding: 60px 20px 80px;
  max-width: 960px;
  margin: 0 auto;
}

.simple-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.simple-page .page-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 48px;
  line-height: 1.7;
}

.simple-page p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.simple-page h2 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  letter-spacing: 0.08em;
  margin: 48px 0 16px;
}

/* About images */
.about-hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  margin-bottom: 40px;
  border-radius: 4px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
  padding: 40px;
  background: var(--gray-light);
  border-radius: 4px;
}

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

.about-stats__number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--purple);
  font-family: var(--font-heading);
}

.about-stats__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-top: 6px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0;
}

.about-team-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-team-card__img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.about-team-card__info h4 {
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
  margin-bottom: 4px;
}

.about-team-card__info p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Experiences page */
.experiences-hero {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center 40%;
  margin-bottom: 48px;
  border-radius: 4px;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 48px 0;
}

.experience-card {
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.experience-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.experience-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.experience-card__body {
  padding: 24px;
}

.experience-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.experience-card__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.experience-card__body p {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.experience-card__link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

/* Reviews section */
.section-reviews {
  padding: 80px 20px;
  background: var(--gray-light);
}

.section-reviews h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 8px;
}

.section-reviews .section-subtitle {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 4px;
  border-bottom: 3px solid var(--gold);
}

.review-card__stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
  font-style: italic;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
}

.review-card__meta {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .experience-cards {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.contact-form h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 30px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
}

.contact-form textarea {
  min-height: 200px;
  resize: vertical;
  grid-column: 1 / -1;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form .btn-send {
  grid-column: 1;
  justify-self: start;
  background: var(--purple);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn-send:hover {
  background: var(--purple-dark);
}

@media (max-width: 600px) {
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG LIST ===== */
.section-blog-list {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-blog-list h1 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 40px;
}

/* ===== BLOG POST ===== */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-post h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 24px;
  line-height: 1.3;
}

.blog-post h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
  color: var(--black);
}

.blog-post p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

/* ===== POLICY PAGES ===== */
.policy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.policy-page h1 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 30px;
}

.policy-page h2 {
  font-size: 1.3rem;
  margin: 24px 0 12px;
}

.policy-page p, .policy-page li {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
}

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