/* =========================================
   Base Variables & Theme
   ========================================= */
:root {
  /* Colors - Maroon and Light Golden (Sun) */
  --primary-color: #800000; /* Maroon */
  --primary-light: #A52A2A; /* Lighter Maroon */
  --accent-color: #FDB813; /* Light Golden / Sun */
  --accent-hover: #E5A311; /* Darker Golden */
  --text-dark: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, sans-serif;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-12: 4rem;
  
  /* Border Radius */
  --br-sm: 2px;
  --br-md: 4px;
  --br-lg: 6px;
  --br-xl: 8px;
  --br-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  
  /* Layout */
  --container-max: 1140px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

/* =========================================
   Layout & Containers
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section {
  padding: 6rem 0; /* Increased for a premium feel */
}

.section-bg-white { background: var(--bg-white); }
.section-bg-light { background: var(--bg-light); }
.section-bg-dark {
  background: var(--primary-color);
  color: white;
}
.section-bg-dark h2, .section-bg-dark h3, .section-bg-dark p {
  color: white;
}

.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* =========================================
   Typography Utilities
   ========================================= */
.text-center { text-align: center; }
.text-accent { color: var(--accent-color); }
.text-white { color: white; }
.text-muted { color: var(--text-muted); }

.section-title {
  font-size: 2rem;
  margin-bottom: var(--space-2);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto var(--space-8);
}

/* =========================================
   Buttons & Inputs
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: var(--br-md);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}
.btn-accent:hover {
  background-color: var(--accent-hover);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}
.btn-outline.light {
  border-color: white;
  color: white;
}
.btn-outline.light:hover {
  background-color: white;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: var(--space-3);
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--br-md);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11, 31, 61, 0.1);
}

/* =========================================
   Components: Header & Navigation
   ========================================= */
.site-header {
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: relative;
}

/* Tier 1: Top Info Bar */
.top-info-bar {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 600;
}
.top-info-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info-left {
  display: flex;
  gap: 1.5rem;
}
.top-info-left .info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-info-right {
  display: flex;
  gap: 1rem;
}
.social-link {
  color: var(--primary-color);
  font-size: 1rem;
}
.social-link:hover {
  color: white;
}

/* Tier 2: Main Header (Logo + Actions) */
.header-main {
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-section .logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-text h1 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
  color: var(--primary-color);
}
.logo-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.logo-text span {
  color: var(--accent-color);
}
.header-actions {
  display: flex;
  gap: 1rem;
}
.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--br-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.admission-btn {
  background-color: var(--accent-color);
  color: var(--primary-color);
}
.admission-btn:hover {
  background-color: var(--accent-hover);
}
.contact-btn {
  background-color: var(--bg-light);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}
.contact-btn:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Tier 3: Navigation */
.main-navigation {
  background-color: var(--primary-light);
}
.nav-menu {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.nav-item .nav-link {
  color: white;
  padding: 1rem 0.5rem;
  display: block;
  font-weight: 500;
  font-size: 1rem;
}
.nav-item .nav-link:hover, .nav-item .nav-link.active {
  color: var(--accent-color);
}

/* Notice Ticker */
.notice-ticker {
  background-color: var(--accent-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.notice-ticker .container {
  display: flex;
  align-items: stretch;
  padding: 0;
}
.ticker-label {
  background-color: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulseLabel 2s infinite;
}
@keyframes pulseLabel {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.ticker-content {
  flex-grow: 1;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.05rem;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .mobile-menu-btn { display: none; }
}

/* Mobile Nav Overlay (Compact Drawer) */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: white;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 80px var(--space-4) var(--space-4);
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--text-dark);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.text-accent {
  color: var(--accent-color);
}

.close-menu-btn {
  position: absolute;
  top: 15px;
  right: var(--space-4);
  background: none;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--primary-color);
  cursor: pointer;
}

/* =========================================
   Components: Hero Slider
   ========================================= */
.hero-slider-section {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  background-color: var(--primary-color);
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Solid color overlay instead of gradient (Commented out) */
/*
.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.7;
  z-index: -1;
}
*/

.slide-caption {
  text-align: left;
  color: white;
  padding: 0 var(--space-4);
  max-width: 800px;
  width: 100%;
  margin-left: 8%;
  z-index: 2;
}

.slide-title {
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  color: white;
  margin-bottom: var(--space-2);
  line-height: 1.1;
  font-weight: 800;
}

.slide-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  margin-bottom: var(--space-4);
  color: rgba(255, 255, 255, 0.9);
}

.slide-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}
.slider-nav:hover {
  background: var(--primary-color);
  color: white;
}
.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

@media (max-width: 768px) {
  .slide-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  .slider-nav {
    display: none;
  }
}

/* =========================================
   Components: Cards
   ========================================= */
.card {
  background: white;
  border-radius: var(--br-md);
  padding: var(--space-5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(252, 163, 17, 0.1);
  color: var(--accent-color);
  border-radius: var(--br-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background-color: var(--accent-color);
  color: white;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
}

.card-text {
  color: var(--text-muted);
  flex-grow: 1;
}

.image-card {
  border-radius: var(--br-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.image-card-img-wrapper {
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.image-card-content {
  padding: var(--space-4);
}

/* =========================================
   Components: Footer
   ========================================= */
.site-footer {
  background-color: var(--primary-color);
  color: white;
  padding: var(--space-12) 0 var(--space-4);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 100% 0%, rgba(253, 184, 19, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
                    url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  color: white;
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-list a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-2);
    text-align: center;
  }
}

/* =========================================
   Page Header (Internal Pages)
   ========================================= */
.page-header {
  padding: 160px 0 80px; /* Increased padding for more dramatic hero proportions */
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    /* 1. Large geometric concentric rings (symbolizing global connection) */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 1000'%3E%3Ccircle cx='1000' cy='500' r='300' fill='none' stroke='%23FDB813' stroke-width='2' stroke-opacity='0.15'/%3E%3Ccircle cx='1000' cy='500' r='400' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.1'/%3E%3Ccircle cx='1000' cy='500' r='500' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.05'/%3E%3Ccircle cx='1000' cy='500' r='600' fill='none' stroke='%23ffffff' stroke-width='1' stroke-opacity='0.02'/%3E%3C/svg%3E"),
    /* 2. Abstract architectural cross pattern (very modern/tech) */
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/g%3E%3C/svg%3E"),
    /* 3. Deep cinematic shadow at the bottom */
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 70%),
    /* 4. Warm, sun-like cinematic flare at top left */
    radial-gradient(circle at 0% 0%, rgba(253, 184, 19, 0.2) 0%, transparent 50%);
  background-size: cover, auto, 100% 100%, 100% 100%;
  background-position: right center, left top, center bottom, top left;
  background-repeat: no-repeat, repeat, no-repeat, no-repeat;
  pointer-events: none;
  z-index: 0;
}
.page-header .container {
  position: relative;
  z-index: 1;
}

.page-title {
  color: white;
  font-size: 3rem;
  margin-bottom: 0;
}

.breadcrumb {
  margin-top: var(--space-2);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: white;
}
.breadcrumb a:hover {
  color: var(--accent-color);
}

/* Content Area */
.content-area p {
  margin-bottom: var(--space-3);
}
.content-area ul {
  list-style: disc;
  margin-left: var(--space-4);
  margin-bottom: var(--space-3);
}
.content-area h3 {
  margin-top: var(--space-6);
}

/* =========================================
   RMIMT Specific Layout Classes
   ========================================= */

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--br-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.course-card {
    text-align: center;
    padding: 2.5rem;
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.badge-success { background: #10b981; color: white; }
.badge-warning { background: #f59e0b; color: white; }

.stats-accent-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--br-md);
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}
.stats-accent-card:hover {
    transform: translateY(-5px);
}
.stats-accent-card .stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background: white;
    color: var(--text-dark);
    border-radius: var(--br-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fee-table th,
.fee-table td {
    padding: 1.25rem 1rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.fee-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--br-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.testimonial-quote {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 5rem;
    font-family: serif;
    color: var(--bg-light);
    line-height: 1;
    z-index: 0;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}
.author-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-accordion {
    max-width: 800px;
    margin: 2rem auto 0;
}
.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: var(--br-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.faq-item input[type="checkbox"] {
    display: none;
}
.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
    cursor: pointer;
    background: var(--bg-light);
    transition: background 0.3s;
}
.faq-trigger::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.3s ease;
}
.faq-item input:checked ~ .faq-trigger::after {
    transform: translateY(3px) rotate(225deg);
}
.faq-trigger:hover {
    background: #e2e8f0;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    background: white;
}
.faq-item input:checked ~ .faq-content {
    max-height: 500px;
    padding: 1.25rem 1.5rem;
}

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: var(--accent-color);
    color: var(--primary-color);
}
