/* Dokument Hub - Premium Academic Credential Services */
/* Global Styles */

:root {
  --primary-navy: #1a2744;
  --primary-navy-light: #243454;
  --accent-gold: #c9a227;
  --accent-gold-light: #d4b43a;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --text-muted: #888;
  --bg-light: #f8f9fa;
  --bg-cream: #faf8f5;
  --white: #ffffff;
  --border-color: #e5e5e5;
  --success: #28a745;
  --error: #dc3545;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-navy);
}

a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-gold);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  color: var(--primary-navy);
}

.logo-text span {
  color: var(--accent-gold);
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-navy);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  min-height: 44px;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-navy-light);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--primary-navy);
  color: var(--white);
}

.btn-large {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero-badge span {
  background: var(--accent-gold);
  color: var(--primary-navy);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

.hero-title {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  display: none;
}

/* Authority Section */
.authority-section {
  background: var(--bg-light);
  padding: 1.5rem 1rem;
}

.authority-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.authority-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.authority-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.authority-text h4 {
  font-size: 0.85rem;
  margin-bottom: 0.125rem;
}

.authority-text p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-label {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--primary-navy);
  padding: 0.3rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
}

/* University Cards */
.university-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.university-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.university-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.university-card-image {
  height: 120px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.university-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--accent-gold);
  color: var(--primary-navy);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.university-card-content {
  padding: 1rem;
}

.university-card-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.university-card-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.university-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* Paper Texture */
.paper-texture {
  background: var(--bg-cream);
  position: relative;
}

.paper-texture::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23c9a227' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Process Section */
.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Why Section */
.why-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--white);
}

.why-section .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.why-content h3 {
  color: var(--accent-gold);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.why-features {
  list-style: none;
  margin-top: 1rem;
}

.why-features li {
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.why-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 700;
}

.why-image {
  display: none;
}

/* CTA Section */
.cta-section {
  background: var(--bg-light);
}

.cta-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  font-size: 1.25rem;
  transition: var(--transition);
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-column h4 {
  color: var(--accent-gold);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

.footer-disclaimer {
  margin-top: 1rem;
  padding: 0.875rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--white);
  padding: 2.5rem 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

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

.breadcrumb-separator {
  color: rgba(255,255,255,0.5);
}

.breadcrumb-current {
  color: var(--accent-gold);
}

.page-header-content h1 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-header-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

/* Forms */
.form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.form-group.full-width {
  grid-column: span 1;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group .required {
  color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 16px;
  transition: var(--transition);
  font-family: inherit;
  min-height: 44px;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group.checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 400;
  cursor: pointer;
  font-size: 0.85rem;
}

.form-group.checkbox input {
  width: auto;
  min-height: auto;
  margin-top: 0.2rem;
}

.submit-btn {
  background: var(--accent-gold);
  color: var(--primary-navy);
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  min-height: 48px;
}

.submit-btn:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.875rem;
}

/* Honeypot field - hidden from users */
.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-hours {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.contact-hours h4 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.contact-hours p {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question h3 {
  font-size: 0.95rem;
  margin: 0;
  padding-right: 1rem;
}

.faq-toggle {
  font-size: 1.25rem;
  color: var(--accent-gold);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1rem 1rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* About Page */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-block {
  margin-bottom: 2rem;
}

.about-block h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-block p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Privacy Page */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 1.5rem;
}

.privacy-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.privacy-section p,
.privacy-section ul {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.9rem;
}

.privacy-section ul {
  margin-left: 1.25rem;
  margin-top: 0.5rem;
}

.privacy-section li {
  margin-bottom: 0.4rem;
}

/* University Page Template */
.university-page {
  background: var(--bg-light);
}

.university-hero {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.university-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.university-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.university-hero-info h1 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.university-hero-info p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.university-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.university-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.university-content {
  padding: 1.5rem 0;
}

.university-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.university-sidebar {
  order: 1;
}

.university-main {
  order: 2;
}

.university-main h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent-gold);
}

.university-main h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.university-main p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 0.9rem;
}

.university-main ul {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.university-main li {
  margin-bottom: 0.4rem;
}

/* Message Box */
.message-box {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  text-align: center;
}

.message-box p {
  color: rgba(255,255,255,0.95);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Info Box */
.info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.info-box h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.875rem;
}

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

.info-item span:first-child {
  color: var(--text-light);
}

.info-item span:last-child {
  font-weight: 600;
  color: var(--primary-navy);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.blog-card-image {
  height: 140px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card-content {
  padding: 1rem;
}

.blog-card-meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.blog-card-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card-content p {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.read-more {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.85rem;
}

.read-more:hover {
  color: var(--primary-navy);
}

/* Blog Post */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.blog-post-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-post-header h1 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.blog-post-content h2 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.blog-post-content h3 {
  font-size: 1.1rem;
  margin: 1.25rem 0 0.5rem;
}

.blog-post-content p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.blog-post-content li {
  margin-bottom: 0.4rem;
}

/* Homepage Search Form */
.search-form-section {
  background: var(--bg-cream);
  padding: 2rem 0;
}

.search-form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.search-form-container h2 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.search-form-container > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.search-form .form-group.full-width {
  grid-column: span 1;
}

/* Related Universities */
.related-universities {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.related-universities h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.related-link {
  display: block;
  padding: 0.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  text-align: center;
  transition: var(--transition);
}

.related-link:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

/* Tablet Styles */
@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 5rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

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

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

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

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

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

  .form-group.full-width {
    grid-column: span 2;
  }

  .page-header-content h1 {
    font-size: 2rem;
  }

  .university-hero-info h1 {
    font-size: 1.5rem;
  }

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .header-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo-icon {
    font-size: 1.75rem;
  }

  .nav {
    gap: 2rem;
  }

  .nav-link {
    font-size: 0.95rem;
  }

  .header-cta {
    gap: 0.75rem;
  }

  .hero {
    padding: 6rem 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    max-width: 600px;
  }

  .section {
    padding: 4rem 0;
  }

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

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

  .university-card-image {
    height: 140px;
  }

  .university-card-content h3 {
    font-size: 1.1rem;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-image {
    display: flex;
  }

  .why-image-icon {
    font-size: 8rem;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  .university-grid-layout {
    grid-template-columns: 1fr 1.5fr;
  }

  .university-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    order: 2;
  }

  .university-main {
    order: 1;
  }

  .university-hero-content {
    flex-direction: row;
    text-align: left;
  }

  .university-logo {
    width: 120px;
    height: 120px;
    font-size: 3rem;
  }

  .university-hero-info h1 {
    font-size: 1.75rem;
  }

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

  .blog-post {
    padding: 2.5rem;
  }

  .cta-box {
    padding: 2.5rem;
  }

  .search-form-container {
    padding: 2rem;
  }

  .search-form-container h2 {
    font-size: 1.5rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .hero-scroll,
  .cta-section {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  .section {
    padding: 1rem 0;
  }
}
