

/* ===== Best Time to Travel in Bhutan Section Styling ===== */
.best-time-to-travel-in-bhutan {
  background-color: #ffffff;
  padding: 60px 0;
  overflow: hidden;
}

/* Container: two columns on desktop, stacked on small screens */
.travel-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px;
  flex-wrap: nowrap;
}

/* Left text column */
.travel-text {
  flex: 0 1 34%;      /* about 34% width */
  min-width: 260px;   /* ensures readable text box */
  max-width: 420px;
}

/* Right carousel column */
.travel-carousel {
  flex: 0 1 62%;      /* take about 62% width but allow shrinking */
  min-width: 600px;   /* ensures carousel doesn't collapse */
  position: relative; /* for owl-nav absolute positioning */
}

/* Text styling */
.travel-text .title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: #000;
  line-height: 1.3;
  margin-bottom: 16px;
}

.travel-text .quote {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;

}

/* Button */
.travel-text .learn-more {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  border-bottom: 2px solid #f5b800;
  transition: 0.3s ease;
}
.travel-text .learn-more:hover {
  color: #f5b800;
  border-color: #fff;
}

/* Package cards */
.package-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 0.4s ease;
}

.package-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.package-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-top: 12px;
  text-transform: uppercase;
}

/* Owl controls */
.owl-dots { display: none; }

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button {
  pointer-events: auto;
  color: #ffffff !important;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 50px !important;
  line-height: 22px;
  transition: all 0.3s ease;
}

/* Responsive: stack on smaller screens */
@media (max-width: 992px) {
  .travel-container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
    padding: 0 20px;
  }

  .travel-carousel, .travel-text {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }

  .package-card img {
    height: 360px;
  }

  .travel-text .title {
    font-size: 1.6rem;
    text-align: center;
  }

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

  .travel-text .learn-more {
    display: inline-block;
    margin: 0 auto;
  }
}
















/* ===== Features ===== */
.features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 5rem 6rem;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.feature img {
  width: 100%;
  max-width: 500px;
  
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.95);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.feature-text p {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
  margin-bottom: 40px;
}


/* ====== ROUTES TO ENTER BHUTAN SECTION ====== */
.routes {
  background-color: #ffffff;
  color: #fff;
  padding: 5rem 6rem;
}

.routes .container {
  max-width: 1200px;
  
}

.routes-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
  flex-direction: row; /* ensures image stays on the left */
}

.routes-img {
  flex: 1;
  min-width: 400px;
  position: relative; /* required for overlay hover image */
}

.routes-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;

  transition: opacity 0.5s ease-in-out;
  display: block;
}

/* Hide hover image initially */
.routes-img .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Swap images on hover */
.routes-img:hover .img-hover {
  opacity: 1;
}

.routes-img:hover .img-default {
  opacity: 0;
}

.routes-text {
  flex: 1;
  min-width: 300px;
}

.routes-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: #000;
  line-height: 1.3;
  margin-bottom: 16px;
}

.routes-text p {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
  
 
}

.routes .features {
  list-style: none;
  
  padding-left: 0;
}

.routes .features li {
  
  padding-left: 25px;
  position: relative;
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;

}

.routes .features li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #d4af37;
  font-size: 1.2rem;
 
}

/* ===== Buttons ===== */
.routes-actions .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  margin-right: 15px;
}

.routes-actions .btn-outline {
  border: 1px solid #d4af37;
  color: #000;
}

.routes-actions .btn-outline:hover {
  background-color: #d4af37;
  color: #fff;
}

.routes-actions .btn {
  background-color: #d4af37;
  color: #000;
}

.routes-actions .btn:hover {
  background-color: #000;
  color: #fff;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .routes-grid {
    flex-direction: column;
    text-align: center;
  }

  .routes-text {
    order: 2;
  }

  .routes-img {
    order: 1;
  }

  .routes-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .routes-actions .btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .routes {
    padding: 70px 25px;
  }

  .routes-text h2 {
    font-size: 1.8rem;
  }

  .routes-text p {
    font-size: 0.95rem;
  }
}



/* ===== By Air Unique Section ===== */
.by-air-unique {
  font-family: "Cormorant Garamond", serif;
  background-color: #ffffff;
}









/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-img:hover {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  max-width: 800px;
}

.hero-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero-text p {
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 29px;
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 350px;
  }
  .hero-text h2 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
  .info-cards {
    padding: 50px 15px;
  }
}



/* ===== Air Details Section ===== */
.air-details-section {
  padding: 80px 20px;
  background: #ffffff;
  
}

.air-details-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.air-details-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.air-image {
  flex: 1 1 400px;
  overflow: hidden;
 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.air-image img {
  width: 100%;
  height: 400px;
  transition: transform 0.5s ease;
}

.air-image img:hover {
  transform: scale(1.05);
}

.air-text {
  flex: 1 1 500px;
}

.air-text h2 {
  font-size: 2.2rem;
  color: #0d0d0f;
  margin-bottom: 20px;
}

.air-text p {

  margin-bottom: 15px;
  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
}

.air-text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
    font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 16px;
  line-height: 29px;
}

.air-text ul li {
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .air-details-content {
    flex-direction: column-reverse;
    gap: 25px;
  }
  .air-text h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .air-details-section {
    padding: 50px 15px;
  }
  .air-text h2 {
    font-size: 1.5rem;
  }
  .air-text p, .air-text ul li {
    font-size: 0.95rem;
  }
}



/* ===== By Land Section ===== */
.by-land-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.by-land-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {

  color: #0d0d0f;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.9rem;
 
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-description {

  color: #000000;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;



  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;

  font-size: 16px;
  line-height: 29px;
}













.land-entries {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.entry-card {
  background: #fff;
  flex: 1 1 300px;
 
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.entry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.entry-icon {
  font-size: 1.8rem;
  font-weight: bold;
  color: #c59f3b;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: #ffe9c9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.entry-content h3 {
  color: #0d0d0f;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 22px;
 
  line-height: 1.3;
  margin-bottom: 10px;
}


.entry-content p {
  color: #000000;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;



  font-family: "Cormorant Garamond", sans-serif;
  font-style: normal;
  font-weight: 400;

  font-size: 16px;
  line-height: 29px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .land-entries {
    flex-direction: column;
    gap: 25px;
  }
  .entry-card {
    flex-direction: row;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  .section-description {
    font-size: 1rem;
  }
  .entry-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .entry-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .entry-content h3 {
    font-size: 1.2rem;
  }
  .entry-content p {
    font-size: 0.95rem;
  }
}


/* ===== IMPORTANT TRAVEL NOTE SECTION ===== */
.travel-note {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-family: "Cormorant Garamond", sans-serif;
}








/* Background with subtle parallax */
.travel-bg {
  position: absolute;
  inset: 0;
  background: url("../images/Image/69.JPEG") center/cover no-repeat;
  transform: scale(1.1);
  filter: brightness(60%) contrast(110%);
  z-index: 1;
}

/* Frosted glass overlay */
.travel-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  
  padding: 50px;
  max-width: 900px;
  margin: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.2s ease;
}

.travel-title {
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #f6d365, #fda085);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  
  margin-bottom: 1rem;
  line-height: 1.2;

  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.travel-desc {
  text-align: center;
  line-height: 1.7;
  font-size: 1rem;
  color: #eee;
}

.travel-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 2rem 0;
}

.service {
  background: rgba(255, 255, 255, 0.15);
  
  padding: 18px;
  text-align: center;
  transition: 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.service:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.travel-footer {
  text-align: center;
  font-style: italic;
  color: #f3f3f3;
  font-size: 1rem;
}

/* Icons */
.service i {
  color: #f6d365;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .travel-overlay {
    padding: 30px;
  }
  .travel-title {
    font-size: 2rem;
  }
  .travel-desc, .travel-footer {
    font-size: 0.95rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ===== DOCUMENTS REQUIRED SECTION ===== */
.documents-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #000000;
  font-family: "Cormorant Garamond", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0;
}

/* Container Split Layout */
.docs-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 90%;
  z-index: 2;
}

/* LEFT CONTENT BOX */
.docs-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);

  padding: 40px;
  
  animation: fadeInLeft 1.2s ease;
}

.docs-title {
  font-size: 2.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #000000, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  text-transform: uppercase;
}


.docs-card {
  background: rgba(255, 255, 255, 0.12);

  padding: 25px;
  margin-bottom: 1.5rem;
  transition: 0.3s ease;
  border-left: 4px solid #ffcf33;
}

.docs-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
  border-left-color: #ff6f61;
}

.docs-subtitle {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #000000;
  font-weight: 400;
  text-transform: uppercase
}

.docs-list {
  list-style: none;
  padding-left: 0;
}

.docs-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 0.98rem;
}

.docs-list li i {
  color: #ff6f61;
  font-size: 1rem;
}

/* RIGHT IMAGE */
.docs-image {
  position: relative;
  overflow: hidden;

  animation: fadeInRight 1.2s ease;
}

.docs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  transition: transform 0.6s ease;
  filter: brightness(85%);
}

.docs-image:hover img {
  transform: scale(1.07);
  filter: brightness(95%);
}

/* Responsive Design */
@media (max-width: 992px) {
  .docs-container {
    grid-template-columns: 1fr;
  }
  .docs-image {
    order: -1;
  }
  .docs-title {
    font-size: 2.2rem;
  }
  .docs-content {
    padding: 30px;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}




/* ===== INDIAN TOURISTS SECTION ===== */
.indian-tourists {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #000000;
  font-family: "Cormorant Garamond", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0;
  margin-top: -290px;
}

/* Container - IMAGE LEFT, CONTENT RIGHT */
.tourists-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* image first, content second */
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 90%;
  z-index: 2;
}

/* RIGHT CONTENT */
.tourists-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  padding: 40px;

  animation: fadeInRight 1.2s ease; /* slide in from right */
}

.tourists-title {
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #0a0a0a, #000000);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 22px;
  text-transform: uppercase;

}

.tourists-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 25px;
  margin-bottom: 1.5rem;
  transition: 0.3s ease;
  border-left: 4px solid #ffcf33;
}

.tourists-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.18);
  border-left-color: #ff6f61;
}

.tourists-subtitle {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #000000;
  font-weight: 400;
  text-transform: uppercase;
}

.tourists-list {
  list-style: none;
  padding-left: 0;
}

.tourists-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 0.98rem;
}

.tourists-list li i {
  color: #ff6f61;
  font-size: 1rem;
}

/* LEFT IMAGE */
.tourists-image {
  position: relative;
  overflow: hidden;
 
  animation: fadeInLeft 1.2s ease; /* slide in from left */
}

.tourists-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(85%);
 
}

.tourists-image:hover img {
  transform: scale(1.07);
  filter: brightness(95%);
}

/* Responsive */
@media (max-width: 992px) {
  .tourists-container {
    grid-template-columns: 1fr;
  }

  .tourists-image {
    order: -1; /* Move image above content */
  }

  .tourists-content {
    padding: 30px;
  }

  .tourists-title {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
















.cultural-immersion-section {
  font-family: "Cormorant Garamond", serif;
  color: #fff;
  background: #f8f8f8;
}

.cultural-hero {
  position: relative;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cultural-hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}
.hero-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.cultural-container {
  padding: 100px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}
.cultural-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}
.culture-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease;
}
.culture-card:hover {
  transform: translateY(-6px);
}
.culture-card .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
  transition: background 0.3s ease;
}
.culture-card:hover .overlay {
  background: rgba(0,0,0,0.65);
}
.card-content {
  position: relative;
  z-index: 2;
  padding: 25px;
  color: #fff;
}
.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}
.card-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .cultural-hero { height: 50vh; }
  .cultural-grid { grid-template-columns: 1fr; }
  .card-content h3 { font-size: 1.2rem; }
  .card-content p { font-size: 0.95rem; }
}




