/* ============================================
   SRIP SCHOOL WEBSITE - COMPLETE STYLESHEET
   Deep Purple + Gold Professional Theme
   ============================================ */

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Inter', sans-serif; 
  background-color: #fcfaf7; 
  color: #1a1a1a; 
  line-height: 1.6; 
  overflow-x: hidden; 
}

/* ===== COLOR PALETTE ===== */
:root {
  --purple-dark: #4a1a7a;
  --purple-royal: #6b3fa0;
  --purple-light: #8b5fbf;
  --gold: #b8943c;
  --gold-light: #d4af5a;
  --gold-pale: #e8d5a3;
  --ivory: #fcfaf7;
  --cream: #f8f5ee;
  --white: #ffffff;
  --charcoal: #1a1a1a;
  --gray: #4a4a4a;
  --gray-light: #e8e4de;
  --gray-bg: #f5f2ed;
}

h1, h2, h3, .main-title, .section-title { 
  font-family: 'Playfair Display', 'Ubuntu', serif; 
  font-weight: 700; 
}

/* ===== HEADER ===== */
.main-header { 
  background-color: var(--purple-dark); 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 1000; 
  transition: transform 0.3s ease-in-out;
  border-bottom: 3px solid var(--gold);
}
.main-header.hide-header { transform: translateY(-100%); }
.header-container { 
  max-width: 100%; 
  margin: 0 auto; 
  padding: 0.5rem 2rem; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 1rem; 
  flex-wrap: nowrap; 
}
.logo-link { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  text-decoration: none; 
  flex-shrink: 0; 
}
.site-logo { 
  height: 40px; 
  width: auto; 
  border-radius: 6px; 
  object-fit: contain; 
}
.logo-area h1 { 
  font-size: 0.9rem; 
  font-weight: 800; 
  color: var(--white); 
  font-family: 'Playfair Display', serif; 
  white-space: nowrap; 
  letter-spacing: 1px;
}
.logo-area h1 span { color: var(--gold); }

.nav-menu { 
  display: flex; 
  gap: 0.3rem; 
  flex-wrap: nowrap; 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  align-items: center; 
}
.nav-item { list-style: none; }
.nav-btn { 
  background: transparent; 
  border: none; 
  padding: 0.4rem 0.7rem; 
  font-weight: 500; 
  font-size: 0.75rem; 
  cursor: pointer; 
  font-family: 'Inter', sans-serif; 
  color: var(--white); 
  display: inline-flex; 
  align-items: center; 
  gap: 4px; 
  border-radius: 40px; 
  transition: all 0.3s; 
  white-space: nowrap; 
  letter-spacing: 0.3px;
}
.nav-btn:hover { 
  background: var(--gold); 
  color: var(--purple-dark); 
}
/* Or if you want to be more specific */
.nav-menu .nav-btn {
  text-decoration: none !important;
}

/* Remove underline on hover too */
.nav-btn:hover {
  text-decoration: none !important;
}

.register-btn { 
  background-color: var(--gold); 
  border: none; 
  padding: 0.4rem 1.2rem; 
  border-radius: 40px; 
  font-weight: 700; 
  font-size: 0.75rem; 
  color: var(--purple-dark); 
  cursor: pointer; 
  display: inline-flex; 
  align-items: center; 
  gap: 5px; 
  transition: all 0.3s; 
  white-space: nowrap; 
  flex-shrink: 0; 
  text-decoration: none; 
  font-family: 'Inter', sans-serif;
}
.register-btn:hover { 
  background-color: var(--gold-light); 
  transform: scale(1.03); 
  box-shadow: 0 4px 15px rgba(184, 148, 60, 0.4);
}

/* ===== DROPDOWN ===== */
.dropdown-area { position: relative; width: 100%; }
.static-dropdown { 
  position: absolute; 
  left: 0; 
  right: 0; 
  top: 0; 
  width: 100vw; 
  margin-left: calc(-50vw + 50%); 
  background: var(--purple-dark); 
  padding: 2rem 3rem; 
  box-shadow: 0 25px 60px rgba(74, 26, 122, 0.3); 
  border-top: 3px solid var(--gold); 
  opacity: 0; 
  visibility: hidden; 
  transition: opacity 0.3s, visibility 0.3s; 
  z-index: 200; 
  pointer-events: none; 
}
.static-dropdown.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: flex; 
  flex-wrap: wrap; 
  gap: 2rem; 
  justify-content: flex-start; 
}
.dropdown-col { flex: 1; min-width: 180px; max-width: 250px; }
.dropdown-col h4 { 
  font-size: 0.75rem; 
  margin-bottom: 0.8rem; 
  border-left: 3px solid var(--gold); 
  padding-left: 12px; 
  font-family: 'Playfair Display', serif; 
  color: var(--gold); 
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.static-dropdown a { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  padding: 0.5rem 0; 
  text-decoration: none; 
  font-weight: 400; 
  font-size: 0.85rem; 
  cursor: pointer; 
  transition: all 0.2s; 
  color: rgba(255,255,255,0.8);
}
.static-dropdown a i { width: 22px; font-size: 0.85rem; color: var(--gold); }
.static-dropdown a:hover { color: var(--gold); padding-left: 8px; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { 
  background: var(--gray-bg); 
  padding: 0.8rem 2rem; 
  border-bottom: 1px solid var(--gray-light); 
  margin-top: 70px;
}
.breadcrumbs-container { 
  max-width: 1280px; 
  margin: 0 auto; 
  font-size: 0.85rem; 
  color: var(--gray);
}
.breadcrumbs a { color: var(--purple-royal); text-decoration: none; font-weight: 500; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--gray); font-weight: 400; }

/* ===== SECTIONS ===== */
.profile-section { padding: 4rem 2rem; }
.section-container { max-width: 1280px; margin: 0 auto; }
.section-title { 
  font-size: 2.2rem; 
  margin-bottom: 1.5rem; 
  position: relative; 
  display: inline-block; 
  color: var(--purple-dark); 
  letter-spacing: 0.5px;
}
.section-title::after { 
  content: ''; 
  display: block; 
  width: 70px; 
  height: 3px; 
  background: var(--gold); 
  margin-top: 8px; 
}
.section-title.center::after { margin: 8px auto 0; }

/* ===== BACKGROUNDS ===== */
.bg-purple { background: var(--purple-dark); color: var(--white); }
.bg-purple .section-title { color: var(--white); }
.bg-purple .section-title::after { background: var(--gold); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-bg); }

/* ===== HERO ===== */
.hero-section { 
  text-align: center; 
  padding: 5rem 2rem; 
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-royal) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 148, 60, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 148, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section h1 { 
  font-size: 3.5rem; 
  margin-bottom: 0.5rem; 
  color: var(--white); 
  position: relative;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}
.hero-section h1 span { color: var(--gold); }
.hero-tagline { 
  font-size: 1.4rem; 
  font-weight: 300; 
  letter-spacing: 3px; 
  color: rgba(255,255,255,0.8); 
  position: relative;
}
.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 1rem auto;
}

/* ===== CARDS ===== */
.interactive-box { 
  transition: all 0.3s ease; 
  cursor: pointer; 
  border-radius: 8px; 
}
.interactive-box:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 12px 40px rgba(74, 26, 122, 0.12); 
}

/* ===== FORMS GRID (Admissions) ===== */
.forms-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
  margin-top: 1rem; 
}
.form-card { 
  background: var(--white); 
  padding: 2.5rem 2rem; 
  text-align: center; 
  border-radius: 8px; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); 
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.form-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
  transform: translateY(-4px);
}
.form-card i { 
  font-size: 3rem; 
  color: var(--purple-royal); 
  margin-bottom: 1rem; 
}
.form-card h3 { 
  color: var(--purple-dark); 
  margin-bottom: 0.5rem; 
  font-family: 'Playfair Display', serif;
}
.form-card p { color: var(--gray); margin-bottom: 1.2rem; font-size: 0.9rem; }
.download-link { 
  background: var(--purple-royal); 
  color: var(--white); 
  padding: 0.7rem 1.5rem; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  transition: all 0.3s; 
  border: none; 
  cursor: pointer; 
  font-weight: 500; 
  border-radius: 40px;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}
.download-link:hover { 
  background: var(--purple-dark); 
  transform: scale(1.03); 
  box-shadow: 0 4px 15px rgba(74, 26, 122, 0.3);
}

/* ===== FEES ===== */
.fees-box { 
  background: var(--white); 
  padding: 2.5rem; 
  border-radius: 8px; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); 
  border: 1px solid var(--gray-light);
}
.fee-item { 
  padding: 1rem 0; 
  border-bottom: 1px solid var(--gray-light); 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  align-items: center;
}
.fee-item:last-child { border-bottom: none; }
.fee-label { 
  font-weight: 700; 
  color: var(--purple-dark); 
  font-size: 1.05rem; 
  font-family: 'Playfair Display', serif;
}
.fee-amount { 
  color: var(--purple-royal); 
  font-weight: 700; 
  font-size: 1.1rem;
}
.fee-amount small { 
  font-weight: 400; 
  color: var(--gray); 
  font-size: 0.8rem; 
}
.fee-note { 
  margin-top: 1.5rem; 
  padding: 1rem 1.5rem; 
  background: var(--cream); 
  color: var(--gray); 
  font-style: italic; 
  border-left: 4px solid var(--gold);
  border-radius: 4px;
}

/* ===== PAYMENT ===== */
.payment-box { 
  background: var(--white); 
  padding: 2.5rem; 
  border-radius: 8px; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); 
  border: 1px solid var(--gray-light);
  line-height: 1.8; 
}
.payment-box p { margin-bottom: 1rem; }
.payment-box ul { margin: 1rem 0 1rem 2rem; }
.payment-box li { margin-bottom: 0.5rem; }
.payment-box li strong { color: var(--purple-dark); }
.payment-highlight { 
  background: var(--cream); 
  padding: 1.5rem; 
  border-left: 4px solid var(--gold); 
  margin: 1.5rem 0; 
  border-radius: 4px;
}
.payment-highlight p { margin-bottom: 0.5rem; }
.whatsapp-link { color: #25D366; font-weight: bold; text-decoration: none; }
.whatsapp-link:hover { text-decoration: underline; }
.smap-link { color: var(--purple-royal); font-weight: 600; text-decoration: none; }
.smap-link:hover { color: var(--gold); text-decoration: underline; }

/* ===== CTA ===== */
.cta-section { 
  text-align: center; 
  padding: 5rem 2rem; 
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-royal) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 148, 60, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section h2 { 
  font-size: 2.8rem; 
  margin-bottom: 2rem; 
  color: var(--white); 
  position: relative;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}
.cta-section h2 span { color: var(--gold); }
.cta-btn { 
  background-color: var(--gold); 
  color: var(--purple-dark); 
  padding: 1rem 3rem; 
  font-size: 1.2rem; 
  font-weight: 700; 
  text-decoration: none; 
  display: inline-block; 
  transition: all 0.3s; 
  border: none; 
  cursor: pointer; 
  font-family: 'Inter', sans-serif; 
  border-radius: 40px;
  letter-spacing: 0.5px;
  position: relative;
}
.cta-btn:hover { 
  background-color: var(--gold-light); 
  transform: scale(1.05); 
  box-shadow: 0 8px 30px rgba(184, 148, 60, 0.4); 
}

/* ===== FOOTER ===== */
.main-footer { 
  background-color: var(--purple-dark); 
  padding: 3rem 2rem 1.5rem; 
  color: var(--white); 
  position: relative; 
  z-index: 50; 
  border-top: 3px solid var(--gold);
}
.footer-top { 
  max-width: 1280px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1.5fr; 
  gap: 2.5rem; 
  padding-bottom: 2rem; 
}
.footer-logo-side img { 
  height: 55px; 
  margin-bottom: 1rem; 
  border-radius: 8px; 
}
.footer-logo-side h3 { 
  font-family: 'Playfair Display', serif; 
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-logo-side p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.social-grid { 
  display: flex; 
  gap: 12px; 
  margin-top: 1rem; 
}
.social-grid a { 
  width: 38px; 
  height: 38px; 
  background: rgba(255,255,255,0.08); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  border-radius: 50%; 
  color: var(--white); 
  transition: all 0.3s; 
  text-decoration: none;
}
.social-grid a:hover { 
  background: var(--gold); 
  color: var(--purple-dark); 
  transform: translateY(-3px);
}
.footer-links h4 { 
  color: var(--gold); 
  margin-bottom: 1.2rem; 
  font-family: 'Playfair Display', serif; 
  font-size: 1.1rem;
}
.footer-links a { 
  display: block; 
  color: rgba(255,255,255,0.7); 
  text-decoration: none; 
  margin-bottom: 0.7rem; 
  font-size: 0.9rem; 
  transition: all 0.3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

/* ===== FAQ ===== */
.faq-section { 
  border-top: 1px solid rgba(255,255,255,0.08); 
  padding-top: 1.5rem; 
  margin-top: 1rem; 
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.faq-title { 
  font-size: 1.2rem; 
  margin-bottom: 1rem; 
  color: var(--gold); 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-family: 'Playfair Display', serif; 
}
.faq-item { 
  margin-bottom: 0.5rem; 
  background: rgba(255,255,255,0.04); 
  overflow: hidden; 
  border-radius: 4px;
}
.faq-question { 
  background: rgba(255,255,255,0.06); 
  padding: 0.9rem 1.2rem; 
  cursor: pointer; 
  font-weight: 500; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  transition: all 0.3s;
  color: rgba(255,255,255,0.9);
}
.faq-question:hover { background: rgba(255,255,255,0.1); }
.faq-question i { transition: transform 0.3s; }
.faq-answer { 
  max-height: 0; 
  overflow: hidden; 
  padding: 0 1.2rem; 
  transition: max-height 0.4s ease, padding 0.4s ease; 
  background: rgba(0,0,0,0.2); 
  color: rgba(255,255,255,0.7); 
}
.faq-answer.show { max-height: 200px; padding: 0.8rem 1.2rem; }
.copyright { 
  text-align: center; 
  border-top: 1px solid rgba(255,255,255,0.08); 
  padding-top: 1.2rem; 
  margin-top: 1.5rem; 
  color: rgba(255,255,255,0.4); 
  font-size: 0.8rem; 
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== GO UP BUTTON ===== */
.go-up-btn { 
  position: fixed; 
  bottom: 30px; 
  right: 30px; 
  width: 50px; 
  height: 50px; 
  background-color: var(--gold); 
  color: var(--purple-dark); 
  border: none; 
  border-radius: 50%; 
  cursor: pointer; 
  font-size: 1.3rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  z-index: 1000; 
  opacity: 0; 
  visibility: hidden; 
  transition: all 0.3s; 
  box-shadow: 0 4px 20px rgba(184, 148, 60, 0.3);
}
.go-up-btn.show { opacity: 1; visibility: visible; }
.go-up-btn:hover { 
  background-color: var(--gold-light); 
  transform: translateY(-3px) scale(1.05); 
}

/* ============================================
   PARENT INFO PAGE STYLES
   ============================================ */
/* Schedule Grid - Single Grid */
.schedule-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 2rem; 
}

.class-card { 
    background: var(--white); 
    padding: 2rem; 
    border-radius: 8px; 
    box-shadow: 0 2px 20px rgba(0,0,0,0.06); 
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.class-card:hover { 
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
}

.class-title { 
    font-size: 1.5rem; 
    color: var(--purple-dark); 
    margin-bottom: 1.5rem; 
    text-align: center;
    border-bottom: 3px solid var(--gold); 
    padding-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

/* Timetable */
.timetable-wrapper {
    overflow-x: auto;
}

.timetable {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 700px;
}

.timetable thead th {
    background: var(--purple-dark);
    color: white;
    padding: 0.8rem 0.5rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid var(--purple-dark);
}

.timetable thead th:first-child {
    background: var(--gold);
    min-width: 110px;
}

.timetable tbody td {
    padding: 0.7rem 0.5rem;
    text-align: center;
    border: 1px solid var(--gray-light);
    color: #333;
    transition: background 0.2s ease;
}

.timetable tbody tr:hover td {
    background: #f8f6f9;
}

.timetable .time-cell {
    font-weight: 700;
    color: var(--purple-dark);
    background: #f5f0f8;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Break rows */
.timetable .break-row td {
    background: #fef8e7;
    color: #856404;
    font-weight: 500;
}

.timetable .break-row td:first-child {
    background: #fdf3d5;
    color: #f39c12;
}

.timetable .break-row:hover td {
    background: #fdf3d5;
}

/* Info text */
.info-text { 
    margin-top: 1.2rem; 
    padding-top: 1rem;
    font-size: 0.85rem; 
    color: var(--gray);
    text-align: center;
    border-top: 1px solid var(--gray-light);
}

.info-text i { 
    color: var(--gold); 
    margin: 0 5px;
}





/* Add to your existing CSS */
.timetable .day-cell {
    font-weight: 700;
    color: var(--purple-dark);
    background: #f5f0f8;
    min-width: 100px;
}

.timetable .break-cell {
    background: #fef8e7;
    color: #856404;
    font-weight: 500;
}

.timetable thead th {
    font-size: 0.7rem;
    padding: 0.6rem 0.3rem;
}

.timetable thead th:first-child {
    background: var(--gold);
    min-width: 100px;
}

.timetable tbody td {
    font-size: 0.75rem;
    padding: 0.6rem 0.3rem;
}





/* Responsive */
@media (max-width: 768px) {
    .class-card {
        padding: 1rem;
    }
    
    .timetable {
        font-size: 0.7rem;
        min-width: 600px;
    }
    
    .timetable thead th,
    .timetable tbody td {
        padding: 0.4rem 0.3rem;
    }
    
    .timetable .time-cell {
        font-size: 0.65rem;
        min-width: 70px;
    }
    
    .class-title {
        font-size: 1.2rem;
    }
}

/* Uniform Grid (Parent Info) */
.uniform-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem; 
}

/* Center the third card */
.uniform-grid .uniform-card:last-child {
  grid-column: 1 / -1;  /* Span full width */
  max-width: 50%;       /* Limit width to match other cards */
  justify-self: center; /* Center in the grid */
  margin: 0 auto;       /* Center the card */
}

.uniform-card { 
  background: var(--white); 
  padding: 1.5rem; 
  text-align: center; 
  border-radius: 8px; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); 
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}

.uniform-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
  transform: translateY(-4px);
}

.uniform-card img { 
  width: 100%; 
  height: auto; 
  min-height: 220px; 
  object-fit: cover; 
  border-radius: 4px;
}

.uniform-card h3 { 
  margin-top: 0.8rem; 
  color: var(--purple-dark); 
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
}

.uniform-card p { 
  color: var(--gray); 
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.uniform-card p strong { 
  color: var(--purple-royal); 
}

/* Responsive */
@media (max-width: 768px) {
  .uniform-grid { 
    grid-template-columns: 1fr; 
  }
  
  .uniform-grid .uniform-card:last-child {
    max-width: 100%;
  }
}

/* Portal */
.portal-content { 
  background: var(--white); 
  padding: 2.5rem; 
  border-radius: 8px; 
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); 
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.portal-content:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
}
.portal-text { 
  margin-bottom: 2rem; 
  line-height: 1.8; 
  font-size: 1.05rem; 
  color: var(--charcoal); 
}
.portal-text strong { color: var(--purple-dark); }
.portal-photo-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.5rem; 
}
.portal-photo { 
  overflow: hidden; 
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-light);
}
.portal-photo:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(74, 26, 122, 0.12);
}
.portal-photo img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  transition: transform 0.3s; 
}
.portal-photo:hover img { transform: scale(1.03); }
.portal-photo p { 
  text-align: center; 
  padding: 0.7rem; 
  font-weight: 600;
  color: var(--purple-dark);
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
}

/* ============================================
   KINDERGARTEN / TADIKA PAGE STYLES
   ============================================ */

/* Tadika Backgrounds */
.tadika-page .bg-main-color { 
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-royal) 100%); 
  color: white; 
}
.tadika-page .bg-main-color .section-title { color: white; }
.tadika-page .bg-main-color .section-title::after { background: var(--gold); }
.tadika-page .bg-soft-1 { background: var(--cream); }
.tadika-page .bg-soft-2 { background: var(--gray-bg); }
.tadika-page .bg-soft-3 { background: var(--cream); }

/* Tadika Hero */
.tadika-page .hero-section { 
  text-align: center; 
  padding: 4rem 2rem; 
  background: transparent !important;
}
.tadika-page .hero-section h1 { 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  color: white; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
}
.tadika-page .hero-tagline { 
  font-size: 1.4rem; 
  font-weight: 500; 
  letter-spacing: 1px; 
  color: rgba(255,255,255,0.8); 
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2); 
}

/* Tadika Curriculum */
.tadika-page .curriculum-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  background: white;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 8px;
  border: 1px solid var(--gray-light);
}
.tadika-page .curriculum-category-full {
  background: var(--cream);
  padding: 1.5rem;
  border-left: 6px solid var(--gold);
  transition: all 0.3s ease;
  border-radius: 4px;
}
.tadika-page .curriculum-category-full:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 8px 25px rgba(74, 26, 122, 0.08);
}
.tadika-page .curriculum-category-full h3 { 
  color: var(--purple-dark); 
  margin-bottom: 1.2rem; 
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 5px;
}
.tadika-page .subject-list-full { 
  display: flex; 
  flex-direction: column; 
  gap: 0.6rem; 
  margin-top: 1rem; 
}
.tadika-page .subject-item-full { 
  padding: 0.7rem 1rem; 
  background: white; 
  border-left: 3px solid var(--gold); 
  font-weight: 500; 
  transition: all 0.3s ease; 
  color: var(--charcoal);
  font-size: 0.95rem;
  border-radius: 4px;
}
.tadika-page .subject-item-full:hover { 
  transform: translateX(5px); 
  background: var(--gold-pale); 
}
.tadika-page .sub-group { 
  margin-top: 1rem; 
  padding: 0.5rem 1rem;
  background: rgba(184, 148, 60, 0.08);
  border-radius: 4px;
}
.tadika-page .sub-group-title { 
  font-weight: 700; 
  color: var(--purple-royal); 
  margin: 0.8rem 0 0.4rem 0; 
  font-size: 0.9rem; 
}

/* Tadika Programs */
.tadika-page .programs-grid-2col { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
    align-items: stretch;  /* Make both columns equal height */
}

.tadika-page .program-list { 
    background: white; 
    padding: 2rem;  /* Slightly more padding */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;  /* Make boxes fill the column height */
}

.tadika-page .program-list:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
}

.tadika-page .program-list h3 { 
    color: var(--purple-dark); 
    margin-bottom: 1.2rem; 
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.8rem;
}

.tadika-page .program-list h3 i { 
    color: var(--gold); 
    margin-right: 10px;
}

.tadika-page .program-list ul { 
    list-style: none; 
    padding: 0;
    margin: 0;
    flex: 1;  /* Make list fill remaining space */
}

.tadika-page .program-list li { 
    padding: 0.6rem 0; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.tadika-page .program-list li:last-child { 
    border-bottom: none; 
}

.tadika-page .program-list li i { 
    color: var(--gold); 
    width: 24px;
    font-size: 14px;
    flex-shrink: 0;  /* Prevent icon from shrinking */
}

/* Tadika Gallery */
.tadika-page .image-gallery-4 { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1rem; 
}
.tadika-page .gallery-img { 
  background: white; 
  padding: 0.5rem; 
  text-align: center; 
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.tadika-page .gallery-img:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(74, 26, 122, 0.1);
}
.tadika-page .gallery-img img { 
  width: 100%; 
  height: 150px; 
  object-fit: cover; 
  border-radius: 4px;
}
.tadika-page .gallery-img p { 
  margin-top: 0.5rem; 
  font-size: 0.8rem; 
  color: var(--purple-dark);
  font-weight: 600;
}

/* Add this to your Tadika Schedule CSS */

/* Daily Schedule inside schedule-info */
.tadika-page .daily-schedule {
    margin-top: 0.5rem;
}

.tadika-page .daily-schedule h4 {
    color: var(--purple-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.tadika-page .daily-schedule h4 i {
    color: var(--gold);
    margin-right: 8px;
}

.tadika-page .time-slot {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0.8rem;
    padding: 0.5rem 0.8rem;
    margin-bottom: 0.3rem;
    border-radius: 4px;
    background: #f8f6f9;
    transition: all 0.3s ease;
    align-items: center;
}

.tadika-page .time-slot:hover {
    background: #f0ecf3;
    transform: translateX(5px);
}

.tadika-page .time-slot .time {
    font-weight: 700;
    color: var(--purple-dark);
    font-size: 0.85rem;
    padding: 0.2rem 0.6rem;
    background: white;
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--gray-light);
}

.tadika-page .time-slot .activity {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 0.9rem;
}

.tadika-page .time-slot .activity i {
    color: var(--gold);
    width: 20px;
    font-size: 0.9rem;
}

/* Break slots - different color */
.tadika-page .time-slot.break-slot {
    background: #fef8e7;
    border-left: 3px solid var(--gold);
}

.tadika-page .time-slot.break-slot .activity i {
    color: #f39c12;
}

.tadika-page .time-slot.break-slot:hover {
    background: #fdf3d5;
}

/* Schedule info adjustments */
.tadika-page .schedule-info p {
    margin: 0.8rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.tadika-page .schedule-info p i {
    width: 28px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tadika-page .time-slot {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        text-align: center;
        padding: 0.6rem 0.8rem;
    }
    
    .tadika-page .time-slot .activity {
        justify-content: center;
        font-size: 0.85rem;
    }
    
    .tadika-page .time-slot .time {
        display: inline-block;
        width: auto;
        padding: 0.2rem 1rem;
        font-size: 0.8rem;
    }
    
    .tadika-page .schedule-info p {
        font-size: 0.9rem;
    }
}

/* Tadika Uniform */
/* Tadika Uniform */
.tadika-page .uniform-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem; 
}

/* Center the third item */
.tadika-page .uniform-card:nth-child(3) {
  grid-column: 1 / -1;  /* Make it span full width */
  max-width: 50%;       /* Limit width to match other cards */
  justify-self: center; /* Center it in the grid */
  margin: 0 auto;       /* Center the card */
}

/* OR - Alternative: Center with grid placement */
.tadika-page .uniform-card:nth-child(3) {
  grid-column: 1 / 3;   /* Span both columns */
  justify-self: center;
  width: 50%;           /* Half width */
}

.tadika-page .uniform-card { 
  background: white; 
  padding: 2.5rem 2rem 3rem;
  text-align: center; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 580px;
  display: flex;
  flex-direction: column;
}

.tadika-page .uniform-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
  transform: translateY(-4px);
}

.tadika-page .uniform-card img { 
  width: 100%; 
  height: 590px;
  object-fit: cover; 
  border-radius: 4px;
}

.tadika-page .uniform-card h3 { 
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--purple-dark);
  font-family: 'Playfair Display', serif;
}

.tadika-page .uniform-card p { 
  color: var(--gray); 
  margin-top: 0.5rem;
  line-height: 1.6;
}
/* Tadika CTA */
.tadika-page .cta-section { 
  text-align: center; 
  padding: 4rem 2rem; 
  background: transparent !important;
}
.tadika-page .cta-section h2 { 
  font-size: 2.5rem; 
  margin-bottom: 2rem; 
  color: white; 
}
.tadika-page .cta-section h2 span { color: var(--gold); }
.tadika-page .cta-btn { 
  background-color: var(--gold); 
  color: var(--purple-dark); 
  padding: 1rem 2.5rem; 
  font-size: 1.2rem; 
  font-weight: bold; 
  text-decoration: none; 
  display: inline-block; 
  transition: all 0.3s; 
  border: none; 
  cursor: pointer; 
  font-family: 'Ubuntu', sans-serif; 
  border-radius: 40px;
}
.tadika-page .cta-btn:hover { 
  background-color: var(--gold-light); 
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(184, 148, 60, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) { 
  .header-container { padding: 0.5rem 1rem; gap: 0.5rem; } 
  .nav-btn { padding: 0.35rem 0.5rem; font-size: 0.7rem; } 
  .logo-area h1 { font-size: 0.75rem; } 
  .site-logo { height: 32px; } 
  .register-btn { padding: 0.35rem 0.8rem; font-size: 0.7rem; } 
}
@media (max-width: 900px) { 
  .header-container { flex-wrap: wrap; justify-content: center; } 
  .nav-menu { flex-wrap: wrap; justify-content: center; gap: 0.2rem; } 
  .nav-btn { font-size: 0.65rem; padding: 0.3rem 0.45rem; }
  .forms-grid { grid-template-columns: 1fr; } 
  .hero-section h1 { font-size: 2.2rem; } 
  .hero-tagline { font-size: 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .section-title { font-size: 1.8rem; }
  .cta-section h2 { font-size: 2rem; }
  .profile-section { padding: 2.5rem 1rem; }
  .payment-box, .fees-box, .form-card { padding: 1.5rem; }
  .static-dropdown { padding: 1.5rem; }
  .dropdown-col { min-width: 140px; }
  .uniform-grid { grid-template-columns: 1fr; }
  .portal-photo-grid { grid-template-columns: 1fr; }
  .portal-content { padding: 1.5rem; }
}
@media (max-width: 1000px) { 
  .tadika-page .curriculum-full-grid { grid-template-columns: 1fr; } 
  .tadika-page .programs-grid-2col { grid-template-columns: 1fr; } 
  .tadika-page .uniform-grid { grid-template-columns: 1fr; } 
  .tadika-page .image-gallery-4 { grid-template-columns: repeat(2, 1fr); }
  .tadika-page .hero-section h1 { font-size: 2rem; }
}
@media (max-width: 600px) {
  .hero-section h1 { font-size: 1.8rem; }
  .hero-section { padding: 3rem 1rem; }
  .fee-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
  .fee-label { font-size: 0.95rem; }
  .tadika-page .image-gallery-4 { grid-template-columns: 1fr; }
  .tadika-page .schedule-container { padding: 1rem; }
  .tadika-page .curriculum-full-grid { padding: 1rem; }
}
/* ============================================
   ACADEMICS PAGE STYLES
   Add these to your existing style.css
   ============================================ */

/* ===== ACADEMICS PAGE OVERRIDES ===== */
.academics-page .bg-main-color { 
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-royal) 100%); 
  color: white; 
}
.academics-page .bg-main-color .section-title { color: white; }
.academics-page .bg-main-color .section-title::after { background: var(--gold); }
.academics-page .bg-soft-1 { background: var(--cream); }
.academics-page .bg-soft-2 { background: var(--gray-bg); }

/* ===== ACADEMICS HERO ===== */
.academics-page .hero-section { 
  text-align: center; 
  padding: 4rem 2rem; 
  background: transparent !important;
}
.academics-page .hero-section h1 { 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  color: white; 
}
.academics-page .hero-tagline { 
  font-size: 1.4rem; 
  font-weight: 500; 
  letter-spacing: 1px; 
  color: rgba(255,255,255,0.8); 
}

/* ===== SUBJECTS GRID ===== */
.academics-page .subjects-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
  gap: 1rem; 
  background: var(--white); 
  padding: 2rem; 
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.academics-page .subjects-grid:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
}
.academics-page .subject-item { 
  padding: 0.8rem 1rem; 
  background: var(--cream); 
  border-left: 4px solid var(--gold); 
  font-weight: 500; 
  transition: all 0.3s ease; 
  color: var(--charcoal);
  border-radius: 4px;
}
.academics-page .subject-item:hover { 
  transform: translateX(5px); 
  background: var(--gold-pale); 
}

/* ===== QURAN SECTION ===== */
.academics-page .quran-container { 
  display: flex; 
  gap: 2rem; 
  align-items: center; 
  background: var(--white); 
  padding: 2rem; 
  flex-wrap: wrap;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.academics-page .quran-container:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
}
.academics-page .quran-text { 
  flex: 1; 
}
.academics-page .quran-text p { 
  font-size: 1.2rem; 
  font-weight: 500; 
  color: var(--purple-dark); 
  margin-bottom: 1rem; 
}
.academics-page .quran-text p strong { color: var(--purple-royal); }
.academics-page .quran-text p:last-child { 
  color: var(--gray); 
  font-style: italic; 
  font-weight: 400;
}
.academics-page .quran-img { 
  flex: 1; 
  min-height: 250px; 
  overflow: hidden; 
  border-radius: 8px;
}
.academics-page .quran-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

/* ===== CO-CURRICULUM ===== */
.academics-page .cocuric-grid { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem; 
  margin-top: 1.5rem; 
}
.academics-page .cocuric-list { 
  background: var(--white); 
  padding: 1.5rem; 
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.academics-page .cocuric-list:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
}
.academics-page .cocuric-list h3 { 
  color: var(--purple-dark); 
  margin-bottom: 1rem; 
  font-family: 'Playfair Display', serif;
}
.academics-page .cocuric-list ul { 
  columns: 2; 
  list-style: none; 
}
.academics-page .cocuric-list li { 
  padding: 0.4rem 0; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  color: var(--charcoal);
  font-size: 0.9rem;
}
.academics-page .cocuric-list li i { 
  color: var(--gold); 
  width: 20px; 
}
.academics-page .cocuric-img-col { 
  display: flex; 
  flex-direction: column; 
  gap: 1.5rem; 
}
.academics-page .cocuric-img-box { 
  background: var(--white); 
  padding: 1rem; 
  text-align: center; 
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.academics-page .cocuric-img-box:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
  transform: translateY(-4px);
}
.academics-page .cocuric-img-box img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  border-radius: 4px;
}
.academics-page .cocuric-img-box h4 { 
  margin-top: 0.5rem; 
  color: var(--purple-dark);
  font-family: 'Playfair Display', serif;
}

/* ===== PROGRAMS CONTENT ===== */
.programs-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.programs-content:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
}

.programs-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    text-align: justify;
}

.programs-text > p strong {
    color: var(--purple-dark);
}

/* Program Categories */
.program-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.program-category {
    background: #f8f6f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.program-category:hover {
    background: #f0ecf3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(74, 26, 122, 0.08);
}

.program-category h3 {
    color: var(--purple-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.program-category h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.program-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-category ul li {
    padding: 0.4rem 0;
    color: #444;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-category ul li:last-child {
    border-bottom: none;
}

.program-category ul li::before {
    content: "▸";
    color: var(--gold);
    font-weight: bold;
}

/* Collaborations */
.programs-collaboration {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f6f9 0%, #f0ecf3 100%);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
}

.programs-collaboration h3 {
    color: var(--purple-dark);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.programs-collaboration h3 i {
    color: var(--gold);
    margin-right: 10px;
}

.programs-collaboration > p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.programs-collaboration ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.programs-collaboration ul li {
    padding: 0.6rem 0;
    color: #333;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.programs-collaboration ul li:last-child {
    border-bottom: none;
}

.programs-collaboration ul li i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
    margin-top: 2px;
}

.programs-collaboration ul li strong {
    color: var(--purple-dark);
}

/* Message */
.programs-message {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: var(--purple-dark);
    border-radius: 8px;
    color: white;
    text-align: center;
}

.programs-message p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.programs-message i {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .program-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .programs-content {
        padding: 1.5rem;
    }
    
    .program-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .program-category {
        padding: 1rem;
    }
    
    .programs-collaboration ul li {
        font-size: 0.85rem;
    }
    
    .programs-message {
        padding: 1rem;
    }
    
    .programs-message p {
        font-size: 0.9rem;
    }
}

/* ===== ACADEMICS CTA ===== */
.academics-page .cta-section { 
  text-align: center; 
  padding: 4rem 2rem; 
  background: transparent !important;
}
.academics-page .cta-section h2 { 
  font-size: 2.5rem; 
  margin-bottom: 2rem; 
  color: var(--purple-dark); 
}
.academics-page .cta-section h2 span { color: var(--gold); }
.academics-page .cta-btn { 
  background-color: var(--gold); 
  color: var(--purple-dark); 
  padding: 1rem 2.5rem; 
  font-size: 1.2rem; 
  font-weight: bold; 
  text-decoration: none; 
  display: inline-block; 
  transition: all 0.3s; 
  border: none; 
  cursor: pointer; 
  font-family: 'Ubuntu', sans-serif; 
  border-radius: 40px;
}
.academics-page .cta-btn:hover { 
  background-color: var(--gold-light); 
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(184, 148, 60, 0.3);
}

/* ===== ACADEMICS RESPONSIVE ===== */
@media (max-width: 900px) { 
  .academics-page .cocuric-grid { 
    grid-template-columns: 1fr; 
  } 
  .academics-page .quran-container { 
    flex-direction: column; 
  } 
  .academics-page .hero-section h1 { 
    font-size: 2rem; 
  } 
  .academics-page .subjects-grid { 
    grid-template-columns: 1fr; 
  }
  .academics-page .cocuric-list ul { 
    columns: 1; 
  }
}

/* ============================================
   SCHOOL PROFILE PAGE STYLES
   Add these to your existing style.css
   ============================================ */

/* ===== SCHOOL PROFILE PAGE OVERRIDES ===== */
.profile-page .bg-main-color { 
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-royal) 100%); 
  color: white; 
}
.profile-page .bg-main-color .section-title { color: white; }
.profile-page .bg-main-color .section-title::after { background: var(--gold); }
.profile-page .bg-soft-1 { background: var(--cream); }
.profile-page .bg-soft-2 { background: var(--gray-bg); }

/* ===== SCHOOL PROFILE HERO ===== */
.profile-page .hero-section { 
  text-align: center; 
  padding: 4rem 2rem; 
  background: transparent !important;
}
.profile-page .hero-section h1 { 
  font-size: 3rem; 
  margin-bottom: 1rem; 
  color: white; 
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1); 
}
.profile-page .hero-tagline { 
  font-size: 1.4rem; 
  font-weight: 500; 
  letter-spacing: 1px; 
  color: var(--gold); 
}

/* ===== ABOUT US ===== */
.profile-page .about-text { 
  background: var(--white); 
  padding: 2rem; 
  border-left: 5px solid var(--gold); 
  line-height: 1.8; 
  font-size: 1.05rem; 
  color: var(--charcoal); 
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.profile-page .about-text:hover {
  border-color: var(--purple-royal);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
}

/* ===== HISTORY & PHILOSOPHY ===== */
.profile-page .two-col-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2rem; 
}
.profile-page .history-box, 
.profile-page .philosophy-box { 
  background: var(--white); 
  padding: 1.8rem; 
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.profile-page .history-box:hover,
.profile-page .philosophy-box:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
  transform: translateY(-4px);
}
.profile-page .history-box h3, 
.profile-page .philosophy-box h3 { 
  color: var(--purple-dark); 
  margin-bottom: 1rem; 
  font-family: 'Playfair Display', serif;
}
.profile-page .history-box h3 i,
.profile-page .philosophy-box h3 i {
  color: var(--gold);
  margin-right: 8px;
}
.profile-page .section-img { 
  margin-top: 1.2rem; 
  width: 100%; 
  height: 200px; 
  overflow: hidden; 
  border-radius: 4px;
}
.profile-page .section-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

/* ===== VISION MISSION CHARTER ===== */
.profile-page .vm-charter-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem; 
}
.profile-page .vm-charter-card { 
  background: var(--white); 
  padding: 2rem; 
  text-align: center; 
  border-bottom: 4px solid var(--gold); 
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.profile-page .vm-charter-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
  transform: translateY(-6px);
}
.profile-page .vm-charter-card i { 
  font-size: 2.5rem; 
  color: var(--gold); 
  margin-bottom: 1rem; 
}
.profile-page .vm-charter-card h3 { 
  color: var(--purple-dark); 
  margin-bottom: 1rem; 
  font-family: 'Playfair Display', serif;
}
.profile-page .vm-charter-card p { color: var(--gray); }
.profile-page .charter-text { 
  text-align: left; 
  font-size: 0.85rem; 
  line-height: 1.8; 
  margin-top: 1rem; 
  color: var(--charcoal); 
}
.profile-page .charter-text p { 
  margin: 0.3rem 0; 
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.profile-page .charter-text p:last-child { border-bottom: none; }
.profile-page .charter-text p i { color: var(--gold); margin-right: 6px; }





/* ===== MAKE VISION & MISSION TEXT BIGGER ONLY ===== */
.profile-page .vm-charter-card:first-child p,
.profile-page .vm-charter-card:nth-child(2) p {
  font-size: 1.8rem !important;
}





/* ===== IDENTITY & ADMIN PHOTOS ===== */
.profile-page .identity-photo,
.profile-page .admin-photo { 
  width: 100%; 
  background: var(--cream); 
  min-height: 400px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden; 
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.profile-page .identity-photo:hover,
.profile-page .admin-photo:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
}
.profile-page .identity-photo img,
.profile-page .admin-photo img { 
  width: 100%; 
  height: auto; 
  object-fit: contain; 
  background: var(--white); 
}

/* ===== FACILITIES ===== */
.profile-page .facilities-grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 2rem; 
}
.profile-page .facility-card { 
  background: var(--white); 
  text-align: center; 
  padding-bottom: 1rem; 
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
  overflow: hidden;
}
.profile-page .facility-card:hover { 
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.1);
}
.profile-page .facility-img { 
  width: 100%; 
  height: 200px; 
  overflow: hidden; 
}
.profile-page .facility-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.3s ease;
}
.profile-page .facility-card:hover .facility-img img {
  transform: scale(1.05);
}
.profile-page .facility-card h4 { 
  margin: 1rem 0 0.5rem; 
  color: var(--purple-dark); 
  font-family: 'Playfair Display', serif;
}

/* ===== PROFILE CTA ===== */
.profile-page .cta-section { 
  text-align: center; 
  padding: 4rem 2rem; 
  background: transparent !important;
}
.profile-page .cta-section h2 { 
  font-size: 2.5rem; 
  margin-bottom: 2rem; 
  color: var(--purple-dark); 
}
.profile-page .cta-btn { 
  background-color: var(--gold); 
  color: var(--purple-dark); 
  padding: 1rem 2.5rem; 
  font-size: 1.2rem; 
  font-weight: bold; 
  text-decoration: none; 
  display: inline-block; 
  transition: all 0.3s; 
  border: none; 
  cursor: pointer; 
  font-family: 'Ubuntu', sans-serif; 
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.profile-page .cta-btn:hover { 
  background-color: var(--gold-light); 
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(184, 148, 60, 0.3);
}










/* ===== PROFILE RESPONSIVE ===== */
@media (max-width: 900px) { 
  .profile-page .two-col-grid { 
    grid-template-columns: 1fr; 
  } 
  .profile-page .vm-charter-grid { 
    grid-template-columns: 1fr; 
  } 
  .profile-page .facilities-grid { 
    grid-template-columns: repeat(2, 1fr); 
  } 
  .profile-page .hero-section h1 { 
    font-size: 2rem; 
  } 
}
@media (max-width: 600px) {
  .profile-page .facilities-grid { 
    grid-template-columns: 1fr; 
  }
}
/* ============================================
   HOME PAGE STYLES
   Add these to your existing style.css
   ============================================ */

/* ===== HOME PAGE OVERRIDES ===== */
.home-page .section {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  transition: opacity 0.4s ease-out, filter 0.4s ease-out;
}
.home-page .section:not(.slider-container) {
  height: 70vh;
  min-height: 550px;
}
.home-page .section:first-child {
  height: 100vh;
  min-height: 600px;
}
.home-page .section:nth-child(1) { z-index: 10; }
.home-page .section:nth-child(2) { 
  z-index: 20; 
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-royal) 100%);
}
.home-page .section:nth-child(3) { 
  z-index: 30; 
  background: linear-gradient(135deg, var(--purple-royal) 0%, var(--purple-light) 100%);
}
.home-page .section:nth-child(4) { 
  z-index: 40; 
  background: var(--gray-bg);
}
.home-page .section:nth-child(5) { 
  z-index: 45; 
  background: var(--cream);
}
.home-page .section:nth-child(6) { 
  z-index: 50; 
  background: var(--gray-bg);
}
.home-page .section.fade-out {
  opacity: 0.3;
  filter: blur(8px);
}

/* ===== HOME SLIDER ===== */
.home-page .slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.home-page .slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-page .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.home-page .slide.active { opacity: 1; }
.home-page .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .slide-caption {
  position: absolute;
  bottom: 25%;
  left: 8%;
  right: auto;
  background: linear-gradient(90deg, rgba(74, 26, 122, 0.85) 0%, rgba(74, 26, 122, 0.4) 70%, transparent);
  color: white;
  padding: 20px 40px;
  text-align: left;
  font-size: 2.2rem;
  font-weight: 800;
  border-radius: 12px;
  max-width: 60%;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  font-family: 'Playfair Display', serif;
  border-left: 4px solid var(--gold);
}
.home-page .slide-caption span { color: var(--gold); }
.home-page .scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  animation: bounce 2s infinite;
  cursor: pointer;
  background: rgba(74, 26, 122, 0.8);
  border-radius: 50px;
  padding: 10px 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.home-page .slider-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.home-page .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.home-page .dot.active {
  background: var(--gold);
  width: 25px;
  border-radius: 10px;
}
.home-page .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(74, 26, 122, 0.7);
  color: white;
  border: 2px solid var(--gold);
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.3s ease;
}
.home-page .slider-btn:hover {
  background: var(--gold);
  color: var(--purple-dark);
}
.home-page .prev-btn { left: 20px; }
.home-page .next-btn { right: 20px; }

/* ===== HOME ABOUT SECTION ===== */
.home-page .about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.home-page .about-photo {
  background: url('http://localhost/srip/image/sejarah.jpg') center/cover no-repeat;
  width: 100%;
  height: 100%;
}
.home-page .about-content {
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem;
}
.home-page .about-content h2 {
  color: var(--purple-dark);
  font-size: 2rem;
  margin-bottom: 0.8rem;
  font-family: 'Playfair Display', serif;
}
.home-page .about-content h2 span { color: var(--gold); }
.home-page .about-content p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  color: var(--charcoal);
}
.home-page .about-content .about-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0.5rem 0 1rem 0;
}

/* ===== HOME VISION MISSION ===== */
.home-page .vision-mission-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page .vm-container {
  max-width: 1300px;
  width: 90%;
  display: flex;
  gap: 3rem;
  align-items: stretch;
}
.home-page .vm-card {
  flex: 1;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  text-align: center;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--gray-light);
}
.home-page .vm-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(74, 26, 122, 0.15);
}
.home-page .vm-card i {
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.home-page .vm-card h2 {
  font-size: 2rem;
  color: var(--purple-dark);
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}
.home-page .vm-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.home-page .vm-card ul {
  text-align: left;
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.home-page .vm-card li {
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--charcoal);
}
.home-page .vm-card li i {
  font-size: 1rem;
  color: var(--gold);
  margin: 0;
}

/* ===== HOME MAPS SECTION ===== */
.home-page .maps-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.home-page .location-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  padding: 1.8rem;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s ease;
}
.home-page .location-container:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.08);
}
.home-page .loc-map {
  flex: 2;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  height: 400px;
  border-radius: 8px;
}
.home-page .loc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.home-page .loc-info {
  flex: 1;
}
.home-page .loc-info h2 {
  color: var(--purple-dark);
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
}
.home-page .loc-info h2 span { color: var(--gold); }
.home-page .contact-pill {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1rem;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  transition: all 0.3s ease;
}
.home-page .contact-pill:hover {
  background: var(--gold-pale);
  transform: translateX(5px);
}
.home-page .contact-pill i {
  color: var(--gold);
  width: 20px;
}
.home-page .contact-pill a {
  color: var(--charcoal);
  text-decoration: none;
}
.home-page .contact-pill a:hover {
  color: var(--purple-royal);
}

/* ===== HOME RESPONSIVE ===== */
@media (max-width: 900px) {
  .home-page .about-section {
    grid-template-columns: 1fr;
  }
  .home-page .about-photo {
    height: 300px;
  }
  .home-page .about-content {
    padding: 2rem;
  }
  .home-page .vm-container {
    flex-direction: column;
    align-items: center;
  }
  .home-page .location-container {
    flex-direction: column;
  }
  .home-page .slide-caption {
    font-size: 1.2rem;
    max-width: 80%;
    padding: 12px 20px;
  }
  .home-page .section:not(.slider-container) {
    height: auto;
    min-height: 400px;
    padding: 3rem 0;
  }











  /* ============================================
   SOCIAL MEDIA SECTION - HOME PAGE
   ============================================ */

.social-section {
  background: linear-gradient(135deg, #f8f6f9 0%, #f0ecf3 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  min-height: auto !important;
  height: auto !important;
}

/* Decorative Background */
.social-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(184, 148, 60, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.social-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(74, 26, 122, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.social-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.social-header {
  text-align: center;
  margin-bottom: 45px;
}

.social-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--purple-dark);
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(74, 26, 122, 0.2);
  transition: all 0.3s ease;
}

.social-icon-wrapper:hover {
  transform: scale(1.05) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(74, 26, 122, 0.3);
}

.social-icon-wrapper i {
  font-size: 30px;
  color: var(--gold);
}

.social-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--purple-dark);
  margin: 0 0 5px 0;
  font-family: 'Playfair Display', serif;
}

.social-header h2 span {
  color: var(--gold);
  position: relative;
}

.social-header h2 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.social-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple-light));
  margin: 10px auto;
  border-radius: 3px;
}

.social-header p {
  color: var(--gray);
  font-size: 16px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Social Cards Grid */
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 10px;
}

/* Individual Social Card */
.social-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: 16px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
}

.social-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.social-card-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 25px;
  position: relative;
  z-index: 2;
}

/* Card Shine Effect */
.social-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.social-card:hover .social-card-shine {
  opacity: 1;
}

/* Icon Background */
.social-icon-bg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.social-card:hover .social-icon-bg {
  transform: scale(1.08) rotate(-6deg);
}

/* Info */
.social-info {
  flex: 1;
}

.social-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-dark);
  margin: 0 0 3px 0;
  font-family: 'Playfair Display', serif;
}

.social-info p {
  font-size: 13px;
  color: #8a9aa8;
  margin: 0;
  font-weight: 400;
}

/* Arrow */
.social-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--purple-dark);
  font-size: 14px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.social-card:hover .social-arrow {
  background: var(--gold);
  color: var(--purple-dark);
  transform: translateX(6px);
}

/* Facebook Specific */
.facebook-social {
  border-color: rgba(24, 119, 242, 0.15);
}

.facebook-social .social-icon-bg {
  background: #1877f2;
}

.facebook-social:hover {
  border-color: #1877f2;
  box-shadow: 0 20px 50px rgba(24, 119, 242, 0.15);
}

.facebook-social:hover .social-arrow {
  background: #1877f2;
  color: white;
}

/* Instagram Specific */
.instagram-social {
  border-color: rgba(225, 48, 108, 0.15);
}

.instagram-social .social-icon-bg {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-social:hover {
  border-color: #dc2743;
  box-shadow: 0 20px 50px rgba(225, 48, 108, 0.15);
}

.instagram-social:hover .social-arrow {
  background: #dc2743;
  color: white;
}

/* TikTok Specific */
.tiktok-social {
  border-color: rgba(0, 0, 0, 0.1);
}

.tiktok-social .social-icon-bg {
  background: #000000;
}

.tiktok-social:hover {
  border-color: #000000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tiktok-social:hover .social-arrow {
  background: #000000;
  color: white;
}

/* Footer Stats */
.social-footer-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  padding: 20px 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-light);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-item i {
  font-size: 22px;
  color: var(--gold);
}

.stat-item span {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-dark);
  font-family: 'Playfair Display', serif;
}

.stat-item p {
  font-size: 12px;
  color: #8a9aa8;
  margin: 0;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
}

/* ===== SOCIAL SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .social-section {
    padding: 50px 15px;
  }

  .social-header h2 {
    font-size: 28px;
  }

  .social-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .social-card-inner {
    padding: 18px 20px;
  }

  .social-icon-bg {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 12px;
  }

  .social-info h3 {
    font-size: 16px;
  }

  .social-footer-stats {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .social-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .social-icon-wrapper i {
    font-size: 24px;
  }

  .social-section::before,
  .social-section::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .social-header h2 {
    font-size: 24px;
  }

  .social-header p {
    font-size: 14px;
  }

  .social-card-inner {
    padding: 15px 16px;
    gap: 14px;
  }

  .social-icon-bg {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .social-info h3 {
    font-size: 14px;
  }

  .social-arrow {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
}