/* ============================================
   Travel Oceans - Main Stylesheet
   ============================================ */

:root {
  --primary: #0a4d8c;
  --primary-dark: #073a6b;
  --secondary: #f5a623;
  --accent: #00b3a4;
  --dark: #0d1b2a;
  --gray: #6c757d;
  --light-bg: #f6f9fc;
  --danger: #dc3545;
  --gradient-primary: linear-gradient(135deg, #0a4d8c 0%, #1d6cb5 50%, #2596be 100%);
  --gradient-warm: linear-gradient(135deg, #f5a623 0%, #e88a17 100%);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color:var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark);
}

h1.aos-init {  
  background: rgba(0, 0, 0, 0.5);
}
p.aos-init { 
  background: rgba(0, 0, 0, 0.5);
}

.brand-name {
  font-weight: 600;
  font-size: 3rem;
  color: var(--primary-dark);
  margin-bottom: -1.5rem;
}
.brand-tag {
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--danger);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: -1.5rem;
}

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

/* Top bar */
.top-bar { font-size: 0.85rem; }
.top-bar a:hover { color: var(--secondary) !important; }

/* Navbar */
.navbar { padding-top: 0.075rem; padding-bottom: 0.075rem; }
.navbar .nav-link {
  font-weight: 500;
  color: var(--dark);
  padding: 0.6rem 1rem;
  position: relative;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--primary);
}
.navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 0.75rem;
  min-width: 240px;
}
.dropdown-item {
  border-radius: 6px;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
}
.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
}

/* Buttons */
.btn {
  font-weight: 600;
  border-radius: 30px;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-secondary {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: #e88a17;
  border-color: #e88a17;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-light:hover { color: var(--primary); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* Hero / Slider */
.hero {
  position: relative;
  width: 100%;
  background: var(--gradient-primary);
  overflow: hidden;
  color: #fff;
}
.hero .owl-stage-outer,
.hero .owl-stage,
.hero .owl-item {
  display: block;
}
.hero-slider {
  width: 100%;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23ffffff10" d="M0 320 Q300 240 600 320 T1200 320 V600 H0 Z"/></svg>') bottom/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #f8f7fa;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6) !important;
}
.hero .lead {
  font-size: 1.15rem;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
}
.hero .badge-soft {
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px);
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
}
.hero-img-wrap img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}
.hero .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0; right: 0;
  text-align: center;
}
.hero .owl-dot span {
  width: 30px !important;
  height: 4px !important;
  background: rgba(255,255,255,0.4) !important;
}
.hero .owl-dot.active span {
  background: var(--secondary) !important;
}
.hero-slide {
  min-height: 620px;
  height: 620px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  background-color: var(--primary);
  background-blend-mode: normal;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.hero-slide[style*="background-image"] {
  background-color: transparent !important;
}
.hero-slide[style*="background-image"] .hero-content {
  max-width: 820px;
}
.hero-slide[style*="background-image"] h1 {
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.hero-slide[style*="background-image"] .lead {
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-slide[style*="background-image"] .badge-soft {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

h3 span{
  background: rgba(0, 0, 0, 0.5) !important;
  padding: 0.2rem 0.5rem; 
  border-radius: 4px;
}

p.lead span{
  background: rgba(0, 0, 0, 0.5) !important;
  padding: 0.2rem 0.5rem; 
  border-radius: 4px;
}

/* Sections */
.section {
  padding: 80px 0;
}
.section-light { background: var(--light-bg); }
.section-dark { background: var(--dark); color: #ff0000; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}
.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-title p {
  color: var(--gray);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-block;
  background: rgba(10,77,140,0.1);
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(10,77,140,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: var(--primary);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.service-card:hover .icon-wrap {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: scale(1.1);
}
.service-card h5 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  position: relative;
  z-index: 1;
}
.service-card ul li {
  padding: 0.25rem 0;
  font-size: 0.88rem;
  color: var(--gray);
  position: relative;
  padding-left: 1.4rem;
  transition: color 0.3s ease;
}
.service-card ul li::before {
  content: '\F633';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 0.9rem;
}
.service-card:hover h5,
.service-card:hover ul li { color: #fff; }
.service-card:hover ul li::before { color: var(--secondary); }
.service-card > * { position: relative; z-index: 1; }

/* Service Detail */
.service-detail {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary);
}
.service-detail h3 { color: var(--primary); }
.service-detail .features-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 0.5rem 1.5rem;
}
.service-detail .features-list li {
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.service-detail .features-list li::before {
  content: '\F633';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Reasons / Why choose cards */
.reason-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
}
.reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.reason-card .icon-circle {
  width: 60px; height: 60px;
  background: rgba(10,77,140,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.reason-card h5 { font-size: 1.1rem; }

/* Testimonial */
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  margin: 0 0.5rem;
}
.testimonial-card .quote {
  font-size: 3rem;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-card p { font-style: italic; color: #444; }
.testimonial-card .stars { color: var(--secondary); margin-bottom: 0.75rem; }
.testimonial-card .client {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.testimonial-card .avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
  font-size: 1.1rem;
}
.testimonial-card .client strong { display: block; }
.testimonial-card .client span { color: var(--gray); font-size: 0.85rem; }

/* Stats */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}
.stat-box .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
}
.stat-box .label {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* CTA */
.cta-banner {
  background: var(--gradient-primary);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; font-size: 2.2rem; }
.cta-banner p { color: rgba(255,255,255,0.9); }

/* Page header */
.page-header {
  background: url('../../assets/images/img_6a3d5540269175.96883500.png') fixed bottom/cover no-repeat;
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0.8;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60"><path fill="%23ffffff" d="M0 60 Q600 0 1200 60 Z"/></svg>') center/cover no-repeat;
}
.page-header h1 {
  color: #ffffff;
  font-size: 2.6rem;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  font-size: 1.6rem !important;
}
.breadcrumb-wrapper {
  background: #fff;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eef2f6;
}
.breadcrumb-wrapper .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}
.breadcrumb-wrapper .breadcrumb a {
  color: var(--primary);
}
.breadcrumb-wrapper .breadcrumb-item.active {
  color: var(--gray);
}

/* Forms */
.form-control, .form-select {
  border-radius: 10px;
  padding: 0.65rem 1rem;
  border: 1px solid #dde3eb;
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(10,77,140,0.15);
}
.form-label { font-weight: 500; color: var(--dark); }

.contact-info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.contact-info-card .icon-circle {
  width: 50px; height: 50px;
  background: rgba(10,77,140,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-right: 1rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-info-card strong { display: block; color: var(--dark); }
.contact-info-card a { color: var(--gray); }

/* Programs */
.program-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.program-card .program-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.program-card .program-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}
.program-card .program-img h4 {
  position: relative;
  color: #fff;
  margin: 0;
  z-index: 2;
}
.program-card .flag-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.9);
  padding: 0.3rem 0.7rem;
  border-radius: 30px;
  font-size: 1.4rem;
  z-index: 2;
}
.program-card .program-body {
  padding: 1.5rem;
}
.program-card .feature-row {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed #eee;
  font-size: 0.92rem;
}
.program-card .feature-row:last-child { border-bottom: none; }
.program-card .feature-row i { color: var(--secondary); }

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(10,77,140,0.08);
  color: var(--primary);
  border-radius: 30px;
  font-size: 0.85rem;
  margin: 0.2rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0d1b2a 0%, #07101a 100%);
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: all 0.2s;
}
.footer-links a:hover {
  color: var(--secondary);
  padding-left: 4px;
}
.important-notice {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
}
.social-icons a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: var(--secondary);
  color: #fff !important;
  transform: translateY(-3px);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 999;
  animation: pulse-wa 2s infinite;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 30px; left: 30px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  cursor: pointer;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary-dark); }

/* Portugal destination */
.portugal-feature {
  text-align: center;
  padding: 1rem;
}
.portugal-feature .pf-icon {
  width: 70px; height: 70px;
  background: rgba(245,166,35,0.12);
  color: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.7rem;
}
.portugal-feature h6 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.portugal-feature p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

/* Accent gradients per program */
.accent-spain { background: linear-gradient(135deg, #aa1518 0%, #c60b1e 100%); }
.accent-germany { background: linear-gradient(135deg, #000000 0%, #dd0000 100%); }
.accent-berlin { background: linear-gradient(135deg, #ffce00 0%, #dd0000 100%); }

/* Admin styles */
.admin-wrap {
  display: flex;
  min-height: 100vh;
  background: #f4f6fa;
}
.admin-sidebar {
  width: 260px;
  background: #1e2a3a;
  color: #fff;
  flex-shrink: 0;
}
.admin-sidebar .brand {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  font-size: 1.1rem;
}
.admin-sidebar .brand i { color: var(--secondary); margin-right: 0.4rem; }
.admin-sidebar .nav-link {
  display: flex;
  align-items: center;
  padding: 0.7rem 1.5rem;
  color: rgba(255,255,255,0.75);
  border-left: 3px solid transparent;
  font-size: 0.95rem;
}
.admin-sidebar .nav-link:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.admin-sidebar .nav-link.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-left-color: var(--secondary);
}
.admin-sidebar .nav-link i { width: 22px; margin-right: 0.6rem; }
.admin-content {
  flex: 1;
  padding: 0;
}
.admin-header {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-main {
  padding: 2rem;
}
.stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-card .icon-bg {
  width: 56px; height: 56px;
  background: rgba(10,77,140,0.1);
  color: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.stat-card .value { font-size: 1.7rem; font-weight: 800; color: var(--dark); display: block; }
.stat-card .label { color: var(--gray); font-size: 0.85rem; }
.data-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.data-table .table {
  margin: 0;
}
.data-table .table th {
  background: #f8fafc;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.data-table .table td {
  vertical-align: middle;
}
.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.login-wrap {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.login-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.login-card .brand-name { font-size: 1.5rem; }


/* Team Cards */
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eef2f6;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.06);
}
.team-initials {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2px;
  font-family: 'Poppins', sans-serif;
}
.team-social {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(-5px);
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}
.team-social:hover {
  background: var(--primary);
  color: #fff;
}
.team-body {
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.team-body h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.team-designation {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.85rem;
}
.team-bio {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.team-contact {
  padding-top: 0.75rem;
  border-top: 1px dashed #eef2f6;
  font-size: 0.82rem;
}
.team-contact a:hover { color: var(--primary) !important; }


/* Training page */
.training-stat {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 130px;
}
.training-stat .stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.training-stat .stat-lbl {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.training-stat .stat-lbl-full {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Partner card */
.partner-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.partner-logo-wrap {
  height: 140px;
  background: linear-gradient(135deg,#f6f9fc 0%, #eef2f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eef2f6;
}
.partner-logo {
  max-width: 60%;
  object-fit: contain;
}
.partner-logo-placeholder {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.partner-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.partner-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.partner-location {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.partner-tagline {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.partner-desc {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

/* Important update alert */
.alert-update {
  background: linear-gradient(135deg,#fff8e1 0%, #ffeaa7 100%);
  border-left: 5px solid #f5a623;
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.alert-update-icon {
  width: 60px;
  height: 60px;
  background: #f5a623;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.alert-update-title {
  color: #b8651a;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.alert-update-text {
  color: #5a4019;
  margin: 0;
  line-height: 1.7;
}


/* Misc utilities */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
  margin: 2rem 0;
}
.alert-toast {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  min-width: 280px;
}

/* Mobile */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-slide { min-height: 480px; }
  .section { padding: 60px 0; }
  .section-title h2 { font-size: 1.8rem; }
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 0.5rem;
    box-shadow: var(--shadow-sm);
  }
  .admin-sidebar {
    position: fixed;
    left: -260px;
    top: 0;
    bottom: 0;
    z-index: 1000;
    transition: left 0.3s ease;
  }
  .admin-sidebar.show { left: 0; }
  .admin-main { padding: 1.25rem; }
  .admin-header { padding: 1rem; }
}
@media (max-width: 575px) {
  .hero h1 { font-size: 1.8rem; }
  .hero .lead { font-size: 1.25rem; }
  .page-header h1 { font-size: 1.9rem; }
  .section-title h2 { font-size: 1.5rem; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }
}
