/* Custom Modern Aesthetic Styling for Ultimate School Company Profile */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-gradient: linear-gradient(135deg, #0d6efd 0%, #4f46e5 100%);
  --secondary-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --dark-gradient: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  --glass-bg: rgba(255, 255, 255, 0.96);
  --glass-border: rgba(226, 232, 240, 0.8);
  --shadow-hover: 0 20px 40px rgba(13, 110, 253, 0.15);
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #334155;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Outfit', sans-serif;
}

/* Single Row Glassmorphism Navbar */
.navbar-compro {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.navbar-compro .navbar-brand {
  font-size: 1.25rem;
}

.navbar-compro .nav-link {
  color: #475569;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.4rem 0.6rem !important;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.navbar-compro .nav-link:hover,
.navbar-compro .nav-link.active {
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.08);
}

/* Dropdown Menu Styling */
.navbar-compro .dropdown-menu {
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  padding: 8px;
  background: #ffffff;
  min-width: 200px;
  animation: fadeIn 0.2s ease-in-out;
}

.navbar-compro .dropdown-item {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #475569;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-compro .dropdown-item:hover {
  background: rgba(13, 110, 253, 0.08);
  color: #0d6efd;
  transform: translateX(4px);
}

.navbar-compro .btn-nav-action {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  white-space: nowrap;
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: var(--primary-gradient);
  padding: 100px 0 140px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-title {
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
}

.floating-stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Feature & Facility Cards */
.feature-card {
  border: none;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.icon-blue { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.icon-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.icon-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

/* Image Hover Zoom */
.img-zoom-container {
  overflow: hidden;
  border-radius: 16px;
}

.img-zoom-container img {
  transition: transform 0.5s ease;
}

.img-zoom-container:hover img {
  transform: scale(1.08);
}

/* Section Titles */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tag-blue { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.tag-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* Program Cards */
.program-card {
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
  transform: translateY(-5px);
}

.program-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* FAQ Accordion */
.accordion-compro .accordion-item {
  border: none;
  border-radius: 16px !important;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.accordion-compro .accordion-button {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  color: #1e293b;
}

.accordion-compro .accordion-button:not(.collapsed) {
  background: rgba(13, 110, 253, 0.05);
  color: #0d6efd;
  box-shadow: none;
}

/* Floating Contact CTA */
.floating-back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0d6efd;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-back-top:hover {
  background: #0a58ca;
  color: white;
  transform: scale(1.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
