/* ============================================
   Buddha College of Pharmacy - Main Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables (Design System) --- */
:root {
  --navy: #003366;
  --navy-light: #0a4a8a;
  --navy-dark: #001f3f;
  --gold: #e6a817;
  --gold-light: #f0c040;
  --gold-dark: #c48f10;
  --white: #ffffff;
  --soft-gray: #f8f9fa;
  --border-color: #e2e8f0;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --destructive: #ef4444;
  --radius: 0.5rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  --navy-gradient: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
  --gold-gradient: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

ul {
  list-style: none;
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-top: 0.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gold-gradient);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.2s ease;
  box-shadow: var(--shadow-md);
}
.btn-gold:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.75rem 0;
}
.navbar.transparent {
  background: transparent;
}
.navbar.solid {
  background: var(--navy-gradient);
  box-shadow: var(--shadow-lg);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar-brand .logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.navbar-brand:hover .logo-circle {
  transform: scale(1.1);
}
.navbar-brand .logo-circle i {
  font-size: 1.25rem;
  color: var(--navy);
}
.navbar-brand .brand-text {
  line-height: 1.2;
}
.navbar-brand .brand-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.navbar-brand .brand-sub {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.navbar-links a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.15);
}

.navbar .btn-apply {
  margin-left: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: var(--gold-gradient);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  border: none;
  transition: opacity 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.navbar .btn-apply:hover {
  opacity: 0.9;
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile Menu */
.navbar-mobile {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.navbar-mobile.open {
  max-height: 400px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.navbar-mobile .container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-mobile a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}
.navbar-mobile a:hover,
.navbar-mobile a.active {
  color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.navbar-mobile .btn-apply-mobile {
  margin-top: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--gold-gradient);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1023px) {
  .navbar-links { display: none; }
  .navbar .btn-apply { display: none; }
  .navbar-toggle { display: block; }
  .navbar-mobile { display: block; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--navy-gradient);
  opacity: 0.75;
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
}
.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(230,168,23,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(230,168,23,0.3);
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 span {
  color: var(--gold);
}
.hero-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 38rem;
  margin: 0 auto 2rem;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  animation: scrollBounce 1.5s infinite;
}
.scroll-indicator .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* --- Page Hero Banner (inner pages) --- */
.page-hero {
  position: relative;
  padding: 7rem 0 4rem;
  background: var(--navy-gradient);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 18rem;
  height: 18rem;
  background: rgba(230,168,23,0.1);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 14rem;
  height: 14rem;
  background: rgba(230,168,23,0.05);
  border-radius: 50%;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  max-width: 38rem;
  margin: 0.75rem auto 0;
  position: relative;
  z-index: 1;
}

/* --- Stats Section --- */
.stats-section {
  background: var(--navy-gradient);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- Section Backgrounds --- */
.bg-soft { background: var(--soft-gray); }
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy-gradient); }

.section-pad { padding: 5rem 0; }

/* --- Card Styles --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: rgba(0,51,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
  font-size: 1.5rem;
  color: var(--navy);
}
.card:hover .card-icon {
  background: var(--gold-gradient);
  color: var(--text-primary);
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.card-title .badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(230,168,23,0.15);
  color: var(--gold-dark);
  font-weight: 600;
  margin-left: 0.75rem;
  vertical-align: middle;
}
.card-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1rem;
  transition: color 0.3s ease;
}
.card-link:hover { color: var(--gold); }

/* Small icon card */
.icon-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: background 0.3s ease;
}
.icon-card:hover { background: var(--soft-gray); }
.icon-card .icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0,51,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: var(--navy);
}
.icon-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.icon-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.max-w-4xl { max-width: 56rem; margin-left: auto; margin-right: auto; }
.max-w-5xl { max-width: 64rem; margin-left: auto; margin-right: auto; }

@media (max-width: 1023px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .page-hero h1 { font-size: 1.75rem; }
}

/* --- Principal Section --- */
.principal-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}
.principal-img-wrapper {
  position: relative;
}
.principal-img-wrapper::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 100%;
  height: 100%;
  background: rgba(230,168,23,0.2);
  border-radius: var(--radius);
}
.principal-img-wrapper img {
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 24rem;
  margin: 0 auto;
  object-fit: cover;
}
.principal-content blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1.25rem;
}
.principal-content blockquote p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.principal-content .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
}
.principal-content .designation {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@media (max-width: 1023px) {
  .principal-section { grid-template-columns: 1fr; text-align: center; }
  .principal-content blockquote { text-align: left; }
}

/* --- CTA Section --- */
.cta-section {
  background: var(--navy-gradient);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 32rem;
  margin: 0 auto 2rem;
}

/* --- Course Detail Card --- */
.course-detail {
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 2rem;
}
.course-detail-header {
  background: var(--navy-gradient);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.course-detail-header .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: rgba(230,168,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}
.course-detail-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.course-detail-header p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.course-detail-body {
  padding: 1.5rem 2rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.info-box {
  background: var(--soft-gray);
  border-radius: var(--radius);
  padding: 1rem;
}
.info-box .label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.info-box .value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.course-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.course-lists h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}
.course-lists h3 i { color: var(--gold); }
.course-lists ul { list-style: none; }
.course-lists ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.course-lists ul li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.highlights-list li::before { background: var(--gold); }
.careers-list li::before { background: var(--navy); }

@media (max-width: 767px) {
  .info-grid { grid-template-columns: 1fr; }
  .course-lists { grid-template-columns: 1fr; }
}

/* --- Vision Mission Cards --- */
.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.vm-card .vm-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.vm-card .vm-icon.navy-bg {
  background: rgba(0,51,102,0.1);
  color: var(--navy);
}
.vm-card .vm-icon.gold-bg {
  background: rgba(230,168,23,0.15);
  color: var(--gold-dark);
}
.vm-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.vm-card p, .vm-card li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.vm-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.vm-card ul li i {
  color: var(--gold);
  margin-top: 0.2rem;
}

/* --- Timeline --- */
.timeline {
  max-width: 40rem;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.timeline-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  font-size: 1rem;
  color: var(--text-primary);
}
.timeline-connector {
  width: 2px;
  flex: 1;
  background: var(--border-color);
  margin-top: 0.5rem;
}
.timeline-content {
  padding-top: 0.375rem;
}
.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gold-dark);
}
.timeline-text {
  color: var(--text-primary);
  margin-top: 0.25rem;
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--soft-gray);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.contact-info-card .icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(0,51,102,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-info-card .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
}
.contact-info-card .value {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-top: 0.125rem;
}
.contact-info-card a.value:hover { color: var(--gold); }

.map-placeholder {
  background: var(--soft-gray);
  border-radius: var(--radius);
  height: 12rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
  border: 1px solid var(--border-color);
  margin-top: 1rem;
}

.form-card {
  background: var(--white);
  border-radius: 0.75rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}
.form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,51,102,0.1);
}
.form-group textarea { resize: none; }
.form-error {
  color: var(--destructive);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: none;
}
.form-error.visible { display: block; }

.form-success {
  text-align: center;
  padding: 3rem 0;
  display: none;
}
.form-success.visible { display: block; }
.form-success i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--text-secondary);
}
.form-success button {
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s;
}
.form-success button:hover { opacity: 0.9; }

@media (max-width: 1023px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .form-row { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.footer {
  background: var(--navy-gradient);
  color: var(--white);
}
.footer-content {
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.875rem;
}
.footer p, .footer li, .footer a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.footer a:hover { color: var(--gold); }
.footer-brand .logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: 1.25rem;
}
.footer-brand .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}
.footer-brand .brand-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-contact li i {
  color: var(--gold);
  margin-top: 0.2rem;
  width: 1rem;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Animate On Scroll --- */
.aos-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.aos-item.visible {
  opacity: 1;
  transform: translateY(0);
}
