/* Campuses page styles - inherits global styles from style.css */

/* ===== CAMPUSES HERO ===== */
.campuses-hero {
  position: relative;
  height: auto;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: none;
}

/* Mobile banner text colors */
.campuses-hero .banner-text-mobile h2 {
  color: #E8402A;
}

.campuses-hero .banner-text-mobile p {
  color: #555;
}

.campuses-hero-content {
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: #F7F6EC;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 28px;
}

.campuses-hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
}

.campuses-hero p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .campuses-hero {
    padding: 0;
  }

  .campuses-hero h1 {
    font-size: 42px;
  }
  
  .campuses-hero p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .campuses-hero {
    padding: 0;
    min-height: auto;
    display: block;
    align-items: initial;
  }

  .campuses-hero h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .campuses-hero p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  
  .top-bar {
    font-size: 12px;
  }
}
/* ===== CAMPUS CARDS SECTION ===== */
.campus-cards-section {
  padding: 80px 0;
  background: #F7F6EC;
}

/* Section Header */
.campus-cards-section .section-header {
  max-width: 700px;
  margin: 0 auto;
}

.campus-cards-section .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #E8402A;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.campus-cards-section .section-eyebrow i {
  font-size: 16px;
}

.campus-cards-section .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 16px;
}

.campus-cards-section .section-subtitle {
  font-size: 17px;
  color: #333333;
  line-height: 1.8;
}

/* Campus Card */
.campus-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.campus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Campus Card Image */
.campus-card-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.campus-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

/* Campus Type Badge */
.campus-type-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.campus-type-badge.coed {
  background: #000000;
  color: #ffffff;
}

.campus-type-badge.women {
  background: #A70000;
  color: #ffffff;
}

/* Campus Card Content */
.campus-card-content {
  padding: 32px;
}

.campus-card-name {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 16px;
}

.campus-card-desc {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Ideal For */
.campus-ideal-for {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FAEBD7;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.campus-ideal-for i {
  color: #E8402A;
  font-size: 16px;
  margin-top: 2px;
}

.campus-ideal-for span {
  font-size: 14px;
  color: #333333;
  line-height: 1.5;
}

/* Campus Address */
.campus-card-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.campus-card-address i {
  color: #E8402A;
  font-size: 16px;
  margin-top: 3px;
}

.campus-card-address span {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

/* Campus Card Buttons */
.campus-card-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-campus-primary {
  background: #E8402A;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.btn-campus-primary:hover {background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.btn-campus-outline {
  background: transparent;
  color: #E8402A;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid #E8402A;
  transition: all 0.3s ease;
}

.btn-campus-outline:hover {
  background: #E8402A;
  color: #ffffff;
}

/* Mobile */
@media (max-width: 991px) {
  .campus-cards-section .section-title {
    font-size: 32px;
  }

  .campus-card-image {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .campus-cards-section {
    padding: 60px 20px;
  }
  
  .campus-cards-section .section-title {
    font-size: 28px;
  }

  .campus-cards-section .section-subtitle {
    font-size: 15px;
  }

  .campus-cards-section .section-subtitle br {
    display: none;
  }

  .campus-card-image {
    height: 260px;
  }

  .campus-card-content {
    padding: 24px;
  }

  .campus-card-name {
    font-size: 24px;
  }

  .campus-card-desc {
    font-size: 14px;
  }

  .campus-card-buttons {
    flex-direction: column;
  }

  .btn-campus-primary,
  .btn-campus-outline {
    text-align: center;
    width: 100%;
  }
}

/* ===== CAMPUS COMPARISON SECTION ===== */
.campus-comparison-section {
  padding: 100px 0;
  background: #FAEBD7;
  position: relative;
}

.comparison-header {
  margin-bottom: 60px;
}

.comparison-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.comparison-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #E8402A;
  border-radius: 2px;
}

/* Comparison Card */
.comparison-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 45px 40px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: #E8402A;
  transition: height 0.3s ease;
}

.comparison-card.women::before {
  background: #A70000;
}

.comparison-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.comparison-card:hover::before {
  height: 8px;
}

.comparison-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.comparison-badge i {
  font-size: 28px;
  color: #ffffff;
}

.comparison-card.coed .comparison-badge {
  background: #E8402A;
}

.comparison-card.women .comparison-badge {
  background: #A70000;
}

.comparison-card h3 {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.comparison-type {
  font-size: 16px;
  color: #666;
  margin-bottom: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-card.coed .comparison-type {
  color: #E8402A;
}

.comparison-card.women .comparison-type {
  color: #A70000;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.6;
  padding: 12px 16px;
  background: #F7F6EC;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.comparison-list li:hover {
  background: #FAEBD7;
  transform: translateX(5px);
}

.comparison-list li i {
  color: #E8402A;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 14px;
}

.comparison-card.women .comparison-list li i {
  color: #A70000;
}

/* Footer */
.comparison-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid rgba(0,0,0,0.08);
}

.comparison-footer p {
  font-size: 18px;
  color: #555;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 991px) {
  .comparison-header h2 {
    font-size: 32px;
  }
  
  .comparison-card {
    padding: 35px 30px;
  }
}

@media (max-width: 768px) {
  .campus-comparison-section {
    padding: 70px 20px;
  }

  .comparison-header h2 {
    font-size: 26px;
    letter-spacing: 0.5px;
  }

  .comparison-card {
    padding: 30px 24px;
  }

  .comparison-card h3 {
    font-size: 22px;
  }

  .comparison-list li {
    font-size: 14px;
  }

  .comparison-footer p {
    font-size: 14px;
  }
}

/* ===== INFRASTRUCTURE SECTION ===== */
.infrastructure-section {
  padding: 70px 0 40px;
  background: #F7F6EC;
}

/* HEADER */
.infra-header h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 12px;
}

.infra-header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  color: #000000;
}

/* CARD */
.infra-card {
  background: #F7F6EC;
  border-radius: 18px;
  padding: 34px 28px;
  text-align: left;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #F7F6EC;
  transition: all 0.3s ease;
}

.infra-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* ICON */
.infra-icon {
  width: 46px;
  height: 46px;
  background: #FAEBD7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.infra-icon i {
  font-size: 20px;
  color: #E8402A;
}

/* TEXT */
.infra-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.infra-card p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .infrastructure-section {
    padding: 60px 0;
  }
  
  .infra-header h2 {
    font-size: 26px;
  }
  
  .infra-card {
    padding: 25px 20px;
    text-align: center;
  }
  
  .infra-icon {
    margin-left: auto;
    margin-right: auto;
  }
  
  .infra-card p {
    text-align: left;
  }
}
/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  padding: 70px 0 40px;
  background: #F7F6EC;
}

.experience-box {
  background: #000000;
  border-radius: 36px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Decorative circles */
.experience-box::before,
.experience-box::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.experience-box::before {
  top: -80px;
  left: -80px;
}

.experience-box::after {
  bottom: -80px;
  right: -80px;
}

/* TEXT */
.experience-box h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
}

.experience-box p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
}

/* BUTTONS */
.experience-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-experience-primary {
  background: #F7F6EC;
  color: #E8402A;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.btn-experience-outline {
  background: transparent;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .experience-box {
    padding: 50px 26px;
  }

  .experience-box h2 {
    font-size: 28px;
  }
  
  /* Campuses sections */
  .campuses-intro-section,
  .campuses-grid-section {
    padding: 50px 0 30px;
  }
  
  /* Campus cards */
  .campus-card {
    margin-bottom: 20px;
  }
  
  .campus-card img {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }
  
  .experience-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-experience-primary,
  .btn-experience-outline {
    width: 80%;
    max-width: 250px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .campuses-intro-section,
  .campuses-grid-section {
    padding: 40px 0 25px;
  }
  
  .experience-box {
    padding: 40px 20px;
  }
  
  .campus-card img {
    height: 160px;
  }
}
