/* =============================
   The Providers Global - Optimized CSS
   ============================= */

/* CSS Variables (Custom Properties) */
:root {
  /* Colors */
  --primary-color: #000000;
  --accent-color: #F97316;
  --secondary-color: #FFFFFF;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-muted: #6c757d;
  --navbar-height: 76px;
  
  /* Spacing & Layout */
  --section-padding: 100px 0;
  --border-radius: 8px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  
  /* Shadows */
  --box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  --box-shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
  --box-shadow-card: 0 10px 30px rgba(0,0,0,0.1);
  --box-shadow-card-hover: 0 20px 40px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.25s ease;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent-color) 0%, #e65c00 100%);
  --gradient-dark: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
  --gradient-orange: linear-gradient(135deg, #ff6f00 0%, #ffa000 100%);
}

/* =============================
   Base Styles & Reset
   ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100%;
}

/* Global offset so content doesn't slide under fixed navbar */
main {
  padding-top: var(--navbar-height);
}

/* =============================
   Typography
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
}

/* =============================
   Buttons
   ============================= */
.btn-orange {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-orange:hover,
.btn-orange:focus {
  background-color: #e65c00;
  color: #fff;
}

/* Disabled button state */
.btn:disabled {
  background-color: #ff7f50;
  opacity: 0.6;
  color: white;
  cursor: not-allowed;
}

/* Hero buttons - sleeker, on-brand */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .2s ease, color .2s ease;
}
.btn-hero i { font-size: 1.05em; }

/* Size adjustments */
.btn-hero.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.95rem;
  gap: 8px;
}
.btn-hero.btn-sm i { font-size: 1em; }

.btn-hero.btn-lg {
  padding: 1rem 1.5rem;
}

.btn-hero-primary {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 10px 28px rgba(249,115,22,0.32);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-hero-primary:hover,
.btn-hero-primary:focus { 
  background: #ea6c07;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(249,115,22,0.42);
}

.btn-hero-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-hero-ghost:hover,
.btn-hero-ghost:focus {
  background: rgba(255,255,255,0.18);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

@media (max-width: 576px) {
  .btn-hero { width: 100%; justify-content: center; }
}

/* =============================
   Navigation
   ============================= */
.custom-navbar {
  background: linear-gradient(90deg, #1f2937, #111827);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: var(--transition);
  padding: 1rem 0;
  font-weight: 600;
}

.custom-navbar.scrolled {
  background: #111827;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.navbar-nav .nav-link {
  color: #fff !important;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0.75rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-brand i {
  color: var(--accent-color);
  transition: var(--transition);
}

.navbar-brand:hover i,
.navbar-brand:focus i {
  color: #ea580c;
}

/* =============================
   Hero Sections
   ============================= */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.blog-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  color: #fff;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
  opacity: 0.9;
}

.hero-buttons .btn {
  margin: 0 0.5rem;
}

/* =============================
   Page Headers
   ============================= */
.page-header {
  background: var(--gradient-orange);
  color: #fff;
  padding: 150px 0 100px;
  text-align: center;
  margin-top: 0;
  border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
  box-shadow: 0 8px 30px rgba(255,111,0,0.25);
}

/* =============================
   Animations
   ============================= */
.fade-in {
  animation: fadeIn 1s ease-in;
}

.fade-in-delay {
  animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.5s;
}

.fade-in-up.delay-2 {
  animation-delay: 1s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================
   Layout & Spacing
   ============================= */
.section-padding {
  padding: var(--section-padding);
}

/* =============================
   Cards & Components
   ============================= */
/* Base card styles */
.card-base {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-card);
  transition: var(--transition);
  height: 100%;
}

.card-base:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-card-hover);
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Step cards */
.step-card {
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-10px);
}

.step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary-color);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  margin: 0 2rem;
}

.testimonial-card blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* =============================
   Services
   ============================= */
.service-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid var(--accent-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: #fff;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text-muted);
}

.service-features li:before {
  content: '✓';
  color: var(--accent-color);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* =============================
   Process & Steps
   ============================= */
.process-step {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.process-content h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

/* =============================
   Specializations & Values
   ============================= */
.specialization-item {
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--border-radius);
  transition: var(--transition);
  height: 100%;
}

.specialization-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.value-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

/* =============================
   Team
   ============================= */
.team-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255,111,0,0.3);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-social a {
  color: var(--text-muted);
  margin: 0 0.5rem;
  font-size: 1.2rem;
  transition: var(--transition);
}

.team-social a:hover {
  color: var(--accent-color);
}

/* =============================
   Stats
   ============================= */
.stats-section {
  background: var(--gradient-orange);
  padding: var(--section-padding);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1.25rem;
  font-weight: 600;
}

/* =============================
   Contact
   ============================= */
.contact-form-wrapper {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: auto;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(249,115,22,0.25);
}

.contact-info {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: fit-content;
  position: sticky;
  top: 100px;
  border: 1px solid #eaeaea;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 1rem;
  font-size: 1.4rem;
  transition: filter 0.3s ease;
}

.contact-icon:hover {
  filter: brightness(85%);
  cursor: pointer;
}

.contact-details h5 {
  margin-bottom: 0.25rem;
  color: var(--primary-color);
  font-weight: 600;
}

.contact-details a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: #ff6f00;
  text-decoration: underline;
}

.map-section {
  margin: 50px 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--border-radius);
}

/* =============================
   Blog Components
   ============================= */
.blog-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.read-more:hover {
  color: #ea6c07;
}

/* Featured article */
.featured-article {
  background: #fff;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 3rem;
}

.article-meta .badge {
  font-size: 0.8rem;
}

/* =============================
   Newsletter
   ============================= */
.newsletter-section {
  background: var(--gradient-dark);
  padding: 80px 0;
}

.newsletter-section .input-group {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.newsletter-section .form-control {
  border: none;
  padding: 15px 20px;
}

/* =============================
   Privacy
   ============================= */
.privacy-content {
  background: #fff;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.privacy-content h3 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.privacy-content h5 {
  color: var(--accent-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  margin-bottom: 1.5rem;
}

.privacy-content li {
  margin-bottom: 0.5rem;
}

/* =============================
   Footer
   ============================= */
footer {
  background: #111827;
  color: #d1d5db;
}

footer p, footer li, footer a, footer small {
  color: #d1d5db;
}

footer a {
  text-decoration: none;
  transition: var(--transition-fast);
}

footer a:hover, footer a:focus {
  color: var(--accent-color);
  opacity: 1;
}

footer h5, footer h6 {
  color: #fff;
  letter-spacing: 0.2px;
}

/* Social icons */
footer .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition-fast);
}

footer .social-link:hover,
footer .social-link:focus {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Lists */
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer .small, footer small {
  font-size: 0.925rem;
}

/* Divider */
footer hr {
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* Bottom bar */
footer .bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

/* Utility: tint icon colors in footer */
footer .text-warning {
  color: var(--accent-color) !important;
}

footer .text-success {
  color: #22c55e !important;
}

/* =============================
   Blog Page Specific Styles
   ============================= */
/* Modern Blog Cards */
.modern-blog-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow-card);
  transition: var(--transition);
  height: 100%;
}

.modern-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-card-hover);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.modern-blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-blog-card:hover .blog-overlay {
  opacity: 1;
}

.read-more-btn {
  background: var(--accent-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.read-more-btn:hover {
  background: #e65c00;
  color: #fff;
  transform: translateY(-2px);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-meta .category {
  background: var(--accent-color);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-meta .date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.read-time {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.read-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.read-link:hover {
  color: #e65c00;
}

/* Category Cards */
.category-card-modern {
  background: #fff;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--box-shadow-card);
  transition: var(--transition);
  height: 100%;
}

.category-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-card-hover);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #fff;
}

.category-card-modern h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.category-card-modern p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.article-count {
  background: var(--light-bg);
  color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* =============================
   Caribbean Blog Specific
   ============================= */
.caribbean-blog-post {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--box-shadow-card);
  overflow: hidden;
}

.blog-post-header {
  border-bottom: 2px solid var(--light-bg);
  padding-bottom: 2rem;
}

.category-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.blog-post-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-post-content h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--light-bg);
}

.blog-post-content .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Benefit Cards */
.benefit-card {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: #fff;
}

.benefit-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-card p {
  color: var(--text-muted);
  margin: 0;
}

/* University Grid */
.university-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.university-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.university-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.university-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.university-info {
  padding: 1.5rem;
}

.university-info h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.university-info .location {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.university-info .specialty {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Programs List */
.programs-list {
  display: grid;
  gap: 1.5rem;
}

.program-item {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
}

.program-item h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.program-item p {
  color: var(--text-muted);
  margin: 0;
}

/* Cost Breakdown */
.cost-breakdown {
  margin-top: 2rem;
}

.cost-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.cost-card h6 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.cost-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cost-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-bg);
  color: var(--text-muted);
}

.cost-card li:last-child {
  border-bottom: none;
}

/* Application Steps */
.application-steps {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
  color: var(--text-muted);
  margin: 0;
}

/* Cultural Highlights */
.cultural-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 10px;
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-2px);
}

.highlight-item i {
  font-size: 1.2rem;
}

.highlight-item span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Scholarship List */
.scholarship-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.scholarship-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--light-bg);
  color: var(--text-muted);
}

.scholarship-list li:last-child {
  border-bottom: none;
}

/* Career Opportunities */
.career-opportunities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.career-field {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
}

.career-field h6 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.career-field p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

/* =============================
   Utilities
   ============================= */
.text-orange {
  color: var(--accent-color) !important;
}

.bg-orange {
  background-color: var(--accent-color) !important;
}

/* =============================
   Responsive Design
   ============================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .contact-info {
    position: static;
    margin-top: 2rem;
  }
  
  .team-image {
    height: 200px;
  }
  
  .testimonial-card {
    margin: 0 1rem;
    padding: 2rem;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .process-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  /* Blog responsive */
  .blog-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .blog-hero .hero-title {
    font-size: 2.5rem;
  }
  
  .featured-article-card {
    padding: 2rem;
  }
  
  .featured-title {
    font-size: 1.8rem;
  }
  
  .blog-post-title {
    font-size: 2rem;
  }
  
  .blog-post-meta {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .university-grid {
    grid-template-columns: 1fr;
  }
  
  .cultural-highlights {
    grid-template-columns: 1fr;
  }
  
  .career-opportunities {
    grid-template-columns: 1fr;
  }
  
  .newsletter-card {
    padding: 2rem;
  }
  
  /* Footer responsive */
  footer .bottom-bar {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-buttons .btn {
    margin: 0.5rem 0;
    display: block;
    width: 100%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .contact-form-wrapper,
  .contact-info,
  .privacy-content,
  .featured-article {
    padding: 1.5rem;
  }
  
  .service-card,
  .value-card {
    padding: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem 1rem;
  }
  
  /* Blog responsive */
  .blog-hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .blog-hero .hero-title {
    font-size: 2rem;
  }
  
  .featured-article-card {
    padding: 1.5rem;
  }
  
  .caribbean-blog-post {
    padding: 1.5rem;
  }
  
  .blog-post-title {
    font-size: 1.8rem;
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto 1rem;
  }
  
  .section-padding {
    padding: 40px 0;
  }
}

/* =============================
   Print Styles
   ============================= */
@media print {
  .navbar,
  .hero-section,
  .cta-section,
  .newsletter-section,
  .stats-section {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .section-padding {
    padding: 20px 0;
  }
}

/* =============================
   Accessibility
   ============================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

.btn:focus,
.form-control:focus,
.form-select:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

.nav-link:focus {
  outline: none;
  box-shadow: none;
}

.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(249,115,22,0.35);
  border-radius: var(--border-radius);
}
