/* home.css - Home Page Specific Layouts and Micro-Animations */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-color);
}

/* Background blob decorations for a modern glassmorphic feel */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  transition: opacity var(--transition-normal);
}

.hero::before {
  top: 10%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: rgba(var(--primary-rgb), 0.15);
}

.hero::after {
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(var(--secondary-rgb), 0.12);
}

[data-theme="dark"] .hero::before {
  background: rgba(var(--primary-rgb), 0.25);
  opacity: 0.7;
}

[data-theme="dark"] .hero::after {
  background: rgba(var(--secondary-rgb), 0.18);
  opacity: 0.7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 30px;
  background-color: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* Hero Right Column — stretches to fill the 40% grid column */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

/* Trust indicators in Hero */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.trust-item:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Glassmorphic Lead Form Card */
.hero-form-card {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-normal);
  position: relative;
  z-index: 10;
  text-align: left;
}

[data-theme="dark"] .hero-form-card {
  background-color: rgba(22, 22, 25, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hero-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  border-color: rgba(var(--primary-rgb), 0.3);
}

[data-theme="dark"] .hero-form-card:hover {
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.form-card-header {
  margin-bottom: 24px;
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

[data-theme="dark"] .form-card-title {
  color: var(--primary);
}

.form-card-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--primary);
  opacity: 0.6;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.form-input {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px 16px 12px 46px;
  font-size: 0.9rem;
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  width: 100%;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
  background-color: var(--surface-color);
}

.form-input:focus + .input-icon {
  opacity: 1;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300A6BE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

/* Form Submit Button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 20px -5px rgba(0, 166, 190, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-submit:hover {
  box-shadow: 0 12px 25px -5px rgba(0, 166, 190, 0.45);
  transform: translateY(-1.5px);
  background: linear-gradient(135deg, var(--primary-hover), #007687);
}

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

.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.form-footer svg {
  width: 14px;
  height: 14px;
  color: #10B981;
}

/* Hero Form Success Screen */
.form-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 10px;
  gap: 16px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.1);
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

.form-success-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.form-success-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   1. Disclaimer Banner
============================================= */
.disclaimer-banner {
  background-color: #f0fdfe;
  border-bottom: 1px solid rgba(0, 140, 160, 0.2);
  padding: 16px 0;
}

.disclaimer-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.disclaimer-icon {
  color: #0B3C5D;
  margin-top: 2px;
  flex-shrink: 0;
}
.disclaimer-icon svg { width: 20px; height: 20px; }

.disclaimer-text {
  font-size: 0.9rem;
  color: #0B3C5D;
  line-height: 1.5;
}

/* =============================================
   2. Why Choose Marwadi University
============================================= */
.why-choose-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.5px;
}

.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.feature-item:hover {
  background-color: #f9fafb;
  transform: translateY(-4px);
}
.f-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f0fdfe;
  color: #008ca0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.f-icon-box svg { width: 24px; height: 24px; }
.f-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

/* =============================================
   3. Courses Offered
============================================= */
.courses-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.course-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.course-block {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #008ca0;
  padding: 24px 20px;
  border-radius: 8px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
}
.course-block:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.course-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* =============================================
   4. Admission Eligibility
============================================= */
.eligibility-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.table-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.eligibility-table {
  width: 100%;
  border-collapse: collapse;
}

.eligibility-table thead th {
  background: #0B3C5D;
  color: #ffffff;
  padding: 16px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eligibility-table tbody td {
  padding: 16px 24px;
  color: #4b5563;
  font-size: 0.95rem;
  border-bottom: 1px solid #f3f4f6;
}

.eligibility-table tbody tr:last-child td {
  border-bottom: none;
}

.eligibility-table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}

/* =============================================
   5. Admission Process Timeline
============================================= */
.process-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

.timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 48px;
  position: relative;
}

/* The connecting line */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: #e5e7eb;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 140px;
}

.t-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0B3C5D;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  border: 4px solid #f9fafb;
  box-shadow: 0 4px 10px rgba(11, 60, 93, 0.2);
}

.t-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

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

.btn-process {
  display: inline-block;
  background: #008ca0;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-process:hover { background: #007a8c; }

/* =============================================
   6. Why Students Use Our Admission Guidance
============================================= */
.why-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.why-us-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.counsellor-img {
  width: 100%;
  height: auto;
  display: block;
}

.why-us-content .section-title {
  margin-bottom: 32px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.b-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
}

.b-item svg {
  color: #008ca0;
  width: 24px;
  height: 24px;
}

/* =============================================
   Responsive Fallbacks
============================================= */
@media (max-width: 992px) {
  .feature-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .course-list-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-split { grid-template-columns: 1fr; }
  
  .timeline-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .timeline-wrapper::before {
    top: 0; bottom: 0;
    left: 24px; right: auto;
    width: 2px; height: auto;
  }
  .timeline-step {
    flex-direction: row;
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .feature-icon-grid { grid-template-columns: 1fr; }
  .course-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-grid {
    gap: 36px;
    grid-template-columns: 3fr 2fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 60px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0;
    gap: 40px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-cta {
    justify-content: center;
    width: 100%;
  }
  .hero-visual {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem;
    letter-spacing: -0.5px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
}

/* Call to Action Section */
.cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #008ca0 0%, #007687 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-badge {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-block;
}

.cta-container .section-title {
  color: white;
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 8px;
}

.cta-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  width: 100%;
}

.cta-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cta-trust-badges svg {
  width: 16px;
  height: 16px;
  color: #10B981; /* High conversion green checkbox */
  flex-shrink: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
}

.btn-cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.btn-cta-primary {
  background-color: #FFFFFF;
  color: var(--secondary);
  border: none;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-cta-primary:hover {
  background-color: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

.btn-cta-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-cta-secondary:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* =============================================
   6.5 Top-Tier Placement Section
============================================= */
.placement-marquee-section {
  background-color: #172136; /* Dark premium blue from reference */
  padding: 80px 0;
  overflow: hidden;
}

.placement-marquee-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.placement-content {
  color: #FFFFFF;
}

.placement-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.placement-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.placement-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 480px;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px; /* Straight clean edges per design */
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.btn-outline-light:hover {
  background-color: #FFFFFF;
  color: #172136;
}

/* Right Marquee Wrapper */
.placement-marquee-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 540px; /* Fixed height for mask and scrolling */
  overflow: hidden;
  position: relative;
  /* Top and bottom gradient masks for smooth fade out */
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.marquee-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Track Animation Definitions */
.marquee-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.track-up {
  animation: scrollUp 25s linear infinite;
}

.track-down {
  animation: scrollDown 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 10px)); } /* 50% for 1 set + gap */
}

@keyframes scrollDown {
  0% { transform: translateY(calc(-50% - 10px)); }
  100% { transform: translateY(0); }
}

/* Placement Cards - Text Style */
.placement-card {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #23314a; /* Slightly lighter than the background */
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.pc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #007687);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pc-student h4 {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.2;
}

.pc-student span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.pc-company {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 16px;
  border-radius: 6px;
}

.pc-company span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.pc-company p {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .placement-marquee-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .placement-content {
    text-align: center;
  }
  .placement-desc {
    margin: 0 auto 32px;
  }
}

/* =============================================
   7. Centre of Excellence Section
============================================= */
.coe-section {
  background-color: #E8F5E9; /* Soft light green */
  padding: 64px 0;
  border-top: 1px solid rgba(46, 125, 50, 0.2);
  border-bottom: 1px solid rgba(46, 125, 50, 0.2);
}

.coe-container {
  display: flex;
  align-items: center;
  gap: 48px;
}

.coe-award-box {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.coe-icon {
  color: #1B5E20; /* Dark forest green for high contrast */
}

.coe-icon svg {
  width: 56px;
  height: 56px;
}

.coe-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1B5E20;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.coe-subtitle {
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: #1B5E20;
}

.coe-content {
  flex: 1;
}

.coe-content p {
  font-size: 1.15rem;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .coe-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .coe-award-box {
    flex: auto;
    align-items: center;
  }
}

/* =============================================
   FAQ Section
============================================= */
.faq-section {
  padding: 96px 0;
  background-color: var(--bg-color);
}

/* Centered section header */
.faq-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.faq-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-main);
  margin-bottom: 14px;
  line-height: 1.2;
}

.faq-section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Two-column body */
.faq-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

/* Left panel */
.faq-left-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 24px;
}

.faq-left-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.faq-left-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
  line-height: 1.25;
}

.faq-left-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-contact-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 6px 16px -4px rgba(var(--primary-rgb), 0.35);
}

.faq-contact-btn:hover {
  background-color: var(--primary-dark, #006b7a);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(var(--primary-rgb), 0.4);
}

/* More queries block */
.faq-more-queries {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.faq-more-queries p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.faq-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.faq-more-link:hover {
  gap: 10px;
  color: var(--primary-dark, #006b7a);
}

.faq-more-link svg {
  transition: transform var(--transition-fast);
}

.faq-more-link:hover svg {
  transform: translateX(2px);
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color var(--transition-fast);
}

.faq-btn:hover {
  background-color: rgba(var(--primary-rgb), 0.04);
}

.faq-btn[aria-expanded="true"] {
  background-color: rgba(var(--primary-rgb), 0.05);
}

/* Question icon circle */
.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
}

.faq-q-icon svg {
  width: 15px;
  height: 15px;
}

.faq-question {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
}

.faq-chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-btn[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px 66px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
