:root{
  --rms-blue:#0B3D91;
  --rms-blue-2:#1F6FEB;
  --rms-accent:#00A8A8;
  --rms-dark:#0F172A;
  --rms-light:#F7F9FC;
  --rms-border:#E5E7EB;
  --rms-text:#1F2937;
  --rms-muted:#6B7280;
  --shadow:0 12px 32px rgba(15,23,42,.10);
  --shadow-strong:0 20px 50px rgba(2,6,23,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--rms-light);
  color:var(--rms-text);
  line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

header{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--rms-border);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:76px;
  gap:1rem;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  color:var(--rms-blue);
}

.brand img{
  width:48px;
  height:48px;
  object-fit:contain;
  background:white;
  border-radius:12px;
  padding:3px;
  box-shadow:0 8px 20px rgba(11,61,145,.08);
}

.brand small{
  display:block;
  color:var(--rms-muted);
  font-size:12px;
  font-weight:600;
}

.menu{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.menu a{
  font-weight:600;
  color:#333;
}

.menu a:hover{
  color:var(--rms-blue);
}

.lang-switch{
  display:flex;
  gap:8px;
  align-items:center;
}

.lang-switch a{
  padding:6px 10px;
  border:1px solid var(--rms-border);
  border-radius:999px;
  background:#fff;
  font-size:12px;
  font-weight:700;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  font-weight:bold;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--rms-blue-2),var(--rms-blue));
  color:white;
  box-shadow:0 12px 24px rgba(31,111,235,.24);
}

.btn-light{
  background:white;
  color:var(--rms-blue);
  border-color:var(--rms-border);
}

.btn-danger{
  background:linear-gradient(135deg,#c1121f,#9b0d17);
  color:white;
}

.hero{
  background:
    radial-gradient(circle at 15% 20%, rgba(31,111,235,.18), transparent 32%),
    radial-gradient(circle at 85% 22%, rgba(0,168,168,.18), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(11,61,145,.18), transparent 32%),
    linear-gradient(135deg,#09162e,#0F172A 55%,#12244b);
  color:white;
  padding:84px 0 70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:16px;
}

.hero h1{
  font-size:48px;
  line-height:1.1;
  margin:0 0 18px;
}

.hero p{
  margin:0 0 20px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  max-width:700px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.hero-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow-strong);
}

.hero-box img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:16px;
}

.schedule-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:16px 18px;
  font-size:15px;
}

.schedule-box ul{
  margin:10px 0 0;
  padding-left:18px;
}

section{
  padding:64px 0;
}

.section-title{
  margin-bottom:24px;
}

.section-title h2{
  margin:0 0 8px;
  font-size:34px;
  color:var(--rms-dark);
}

.section-title p{
  margin:0;
  color:var(--rms-muted);
  max-width:760px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}

.card h3{
  margin-top:0;
  color:var(--rms-dark);
}

.card p{
  color:var(--rms-muted);
  margin-bottom:0;
}

.program-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  transition:.25s ease;
}

.program-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(0,0,0,.18);
}

.program-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.program-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  height:100%;
}

.tag{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(11,61,145,.08);
  color:var(--rms-blue);
  font-size:12px;
  font-weight:700;
  margin-bottom:12px;
  border:1px solid rgba(11,61,145,.10);
}

.program-body h3{
  margin:0 0 8px;
  color:var(--rms-dark);
  font-size:20px;
  line-height:1.3;
}

.program-body p{
  margin:0 0 14px;
  color:var(--rms-muted);
}

.meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}

.meta div{
  background:#F8FAFC;
  border:1px solid var(--rms-border);
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
}

.program-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:auto;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.highlight-box{
  background:linear-gradient(135deg, rgba(11,61,145,.04), rgba(0,168,168,.08));
  border:1px solid rgba(11,61,145,.10);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.highlight-box h3{
  margin-top:0;
  color:var(--rms-dark);
}

.bullet-list{
  margin-top:18px;
}

.bullet-item{
  margin-bottom:12px;
  color:var(--rms-text);
}

.contact-wrap{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:start;
}

.contact-panel,
form{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

form{
  display:grid;
  gap:16px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

label{
  display:block;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
}

input,select,textarea{
  width:100%;
  border:1px solid #D1D5DB;
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
}

textarea{
  min-height:150px;
  resize:vertical;
}

.notice{
  padding:14px 16px;
  border-radius:14px;
  font-size:15px;
  display:none;
}

.success{
  background:rgba(16,185,129,.10);
  color:#065F46;
  border:1px solid rgba(16,185,129,.25);
}

.error{
  background:rgba(239,68,68,.10);
  color:#991B1B;
  border:1px solid rgba(239,68,68,.25);
}

.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.social-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--rms-border);
  font-weight:700;
  color:var(--rms-blue);
}

.faculty-grid,
.cert-grid,
.outcomes-grid,
.testimonial-grid,
.partners-grid{
  display:grid;
  gap:22px;
}

.faculty-grid{
  grid-template-columns:repeat(3,1fr);
}

.faculty-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.faculty-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.faculty-body{
  padding:18px;
}

.faculty-body h3{
  margin:0 0 10px;
  color:var(--rms-dark);
}

.faculty-body p{
  margin:0;
  color:var(--rms-muted);
}

.cert-grid{
  grid-template-columns:repeat(5,1fr);
}

.cert-card{
  background:linear-gradient(135deg, rgba(11,61,145,.06), rgba(31,111,235,.10));
  border:1px solid rgba(11,61,145,.10);
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.cert-card h3{
  margin:0 0 8px;
  color:var(--rms-blue);
  font-size:18px;
  line-height:1.3;
}

.cert-card p{
  margin:0;
  color:#4B5563;
}

.outcomes-grid{
  grid-template-columns:repeat(5,1fr);
}

.outcome-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.outcome-card h3{
  margin:0 0 12px;
  color:var(--rms-dark);
}

.outcome-card ul{
  margin:0;
  padding-left:18px;
}

.outcome-card li{
  margin-bottom:8px;
  color:#4B5563;
}

.testimonial-grid{
  grid-template-columns:repeat(3,1fr);
}

.testimonial-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.testimonial-text{
  margin:0 0 18px;
  color:#374151;
  font-size:16px;
  font-style:italic;
}

.testimonial-author{
  color:#6B7280;
  font-size:14px;
}

.partners-grid{
  grid-template-columns:repeat(4,1fr);
}

.partner-card{
  background:linear-gradient(135deg,#ffffff,#f9fbff);
  border:1px solid var(--rms-border);
  border-radius:20px;
  padding:22px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.partner-card h3{
  margin:0 0 10px;
  color:var(--rms-dark);
  font-size:18px;
}

.partner-card p{
  margin:0;
  color:#6B7280;
}

.site-footer{
  background:linear-gradient(180deg,#08101d 0%,#0b1628 100%);
  color:white;
  padding:46px 0 20px;
  margin-top:40px;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:24px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
  max-width:620px;
}

.footer-brand img{
  width:64px;
  height:64px;
  object-fit:contain;
  background:white;
  border-radius:12px;
  padding:4px;
}

.footer-brand h3{
  margin:0 0 6px;
  font-size:22px;
}

.footer-brand p{
  margin:0;
  color:rgba(255,255,255,.75);
}

.footer-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-social a{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:white;
  font-weight:700;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1.3fr;
  gap:24px;
}

.footer-grid h4{
  margin:0 0 12px;
  font-size:16px;
}

.footer-grid ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-grid li{
  margin-bottom:8px;
}

.footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:rgba(255,255,255,.72);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.legal-page{
  padding:48px 0 70px;
}

.legal-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
  margin-bottom:20px;
}

.legal-card h2{
  margin-top:0;
  color:var(--rms-dark);
}

@media (max-width:1100px){
  .hero-grid,
  .grid-4,
  .grid-3,
  .split,
  .contact-wrap,
  .footer-grid,
  .faculty-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .cert-grid,
  .outcomes-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .partners-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .form-grid,
  .meta,
  .cert-grid,
  .outcomes-grid,
  .partners-grid{
    grid-template-columns:1fr;
  }

  .nav{
    align-items:flex-start;
  }

  .menu{
    width:100%;
  }

  .hero h1{
    font-size:36px;
  }
}

:root{
  --rms-blue:#0B3D91;
  --rms-blue-2:#1F6FEB;
  --rms-accent:#00A8A8;
  --rms-dark:#0F172A;
  --rms-light:#F7F9FC;
  --rms-border:#E5E7EB;
  --rms-text:#1F2937;
  --rms-muted:#6B7280;
  --shadow:0 12px 32px rgba(15,23,42,.10);
  --shadow-strong:0 20px 50px rgba(2,6,23,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--rms-light);
  color:var(--rms-text);
  line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* Header */
.site-header-wrap{
  min-height:76px;
}

header.site-header{
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--rms-border);
  position:sticky;
  top:0;
  z-index:1000;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:76px;
  gap:1rem;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  color:var(--rms-blue);
}

.brand img{
  width:48px;
  height:48px;
  object-fit:contain;
  background:white;
  border-radius:12px;
  padding:3px;
  box-shadow:0 8px 20px rgba(11,61,145,.08);
}

.brand small{
  display:block;
  color:var(--rms-muted);
  font-size:12px;
  font-weight:600;
}

.menu{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.menu a{
  font-weight:600;
  color:#333;
}

.menu a:hover{
  color:var(--rms-blue);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  border-radius:999px;
  font-weight:bold;
  border:1px solid transparent;
  transition:.2s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--rms-blue-2),var(--rms-blue));
  color:white;
  box-shadow:0 12px 24px rgba(31,111,235,.24);
}

.btn-light{
  background:white;
  color:var(--rms-blue);
  border-color:var(--rms-border);
}

.btn-danger{
  background:linear-gradient(135deg,#c1121f,#9b0d17);
  color:white;
}

/* Hero */
.hero{
  background:
    radial-gradient(circle at 15% 20%, rgba(31,111,235,.18), transparent 32%),
    radial-gradient(circle at 85% 22%, rgba(0,168,168,.18), transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(11,61,145,.18), transparent 32%),
    linear-gradient(135deg,#09162e,#0F172A 55%,#12244b);
  color:white;
  padding:84px 0 70px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  padding:7px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:16px;
}

.hero h1{
  font-size:48px;
  line-height:1.1;
  margin:0 0 18px;
}

.hero p{
  margin:0 0 20px;
  color:rgba(255,255,255,.88);
  font-size:18px;
  max-width:700px;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:22px;
}

.hero-box{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow-strong);
}

.hero-box img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:16px;
}

/* Generic sections */
section{
  padding:64px 0;
}

.section-title{
  margin-bottom:24px;
}

.section-title h2{
  margin:0 0 8px;
  font-size:34px;
  color:var(--rms-dark);
}

.section-title p{
  margin:0;
  color:var(--rms-muted);
  max-width:760px;
}

.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}

.card h3{
  margin-top:0;
  color:var(--rms-dark);
}

.card p{
  color:var(--rms-muted);
  margin-bottom:0;
}

/* Program cards */
.program-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  transition:.25s ease;
}

.program-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(0,0,0,.18);
}

.program-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.program-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  height:100%;
}

.tag{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(11,61,145,.08);
  color:var(--rms-blue);
  font-size:12px;
  font-weight:700;
  margin-bottom:12px;
  border:1px solid rgba(11,61,145,.10);
}

.program-body h3{
  margin:0 0 8px;
  color:var(--rms-dark);
  font-size:20px;
  line-height:1.3;
}

.program-body p{
  margin:0 0 14px;
  color:var(--rms-muted);
}

.meta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:14px;
}

.meta div{
  background:#F8FAFC;
  border:1px solid var(--rms-border);
  border-radius:12px;
  padding:10px 12px;
  font-size:14px;
}

.program-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:auto;
}

.schedule-box{
  background:rgba(11,61,145,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:16px 18px;
  font-size:15px;
}

.schedule-box ul{
  margin:10px 0 0;
  padding-left:18px;
}

/* Split blocks */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}

.highlight-box{
  background:linear-gradient(135deg, rgba(11,61,145,.04), rgba(0,168,168,.08));
  border:1px solid rgba(11,61,145,.10);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.highlight-box h3{
  margin-top:0;
  color:var(--rms-dark);
}

.bullet-list{
  margin-top:18px;
}

.bullet-item{
  margin-bottom:12px;
  color:var(--rms-text);
}

/* Contact */
.contact-wrap{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:24px;
  align-items:start;
}

.contact-panel,
form.contact-form{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:22px;
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-form{
  display:grid;
  gap:16px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

label{
  display:block;
  font-size:14px;
  font-weight:700;
  margin-bottom:6px;
}

input,select,textarea{
  width:100%;
  border:1px solid #D1D5DB;
  border-radius:12px;
  padding:12px 14px;
  font:inherit;
}

textarea{
  min-height:150px;
  resize:vertical;
}

.notice{
  padding:14px 16px;
  border-radius:14px;
  font-size:15px;
  display:none;
}

.success{
  background:rgba(16,185,129,.10);
  color:#065F46;
  border:1px solid rgba(16,185,129,.25);
}

.error{
  background:rgba(239,68,68,.10);
  color:#991B1B;
  border:1px solid rgba(239,68,68,.25);
}

.social-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.social-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--rms-border);
  font-weight:700;
  color:var(--rms-blue);
}

/* Faculty */
.faculty-grid,
.cert-grid,
.outcomes-grid,
.testimonial-grid,
.partners-grid{
  display:grid;
  gap:22px;
}

.faculty-grid{
  grid-template-columns:repeat(3,1fr);
}

.faculty-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.faculty-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.faculty-body{
  padding:18px;
}

.faculty-body h3{
  margin:0 0 10px;
  color:var(--rms-dark);
}

.faculty-body p{
  margin:0;
  color:var(--rms-muted);
}

/* Certifications */
.cert-grid{
  grid-template-columns:repeat(5,1fr);
}

.cert-card{
  background:linear-gradient(135deg, rgba(11,61,145,.06), rgba(31,111,235,.10));
  border:1px solid rgba(11,61,145,.10);
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.cert-card h3{
  margin:0 0 8px;
  color:var(--rms-blue);
  font-size:18px;
  line-height:1.3;
}

.cert-card p{
  margin:0;
  color:#4B5563;
}

/* Career outcomes */
.outcomes-grid{
  grid-template-columns:repeat(5,1fr);
}

.outcome-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:18px;
  padding:20px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.outcome-card h3{
  margin:0 0 12px;
  color:var(--rms-dark);
}

.outcome-card ul{
  margin:0;
  padding-left:18px;
}

.outcome-card li{
  margin-bottom:8px;
  color:#4B5563;
}

/* Testimonials */
.testimonial-grid{
  grid-template-columns:repeat(3,1fr);
}

.testimonial-card{
  background:white;
  border:1px solid var(--rms-border);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--shadow);
}

.testimonial-text{
  margin:0 0 18px;
  color:#374151;
  font-size:16px;
  font-style:italic;
}

.testimonial-author{
  color:#6B7280;
  font-size:14px;
}

/* Partners */
.partners-grid{
  grid-template-columns:repeat(4,1fr);
}

.partner-card{
  background:linear-gradient(135deg,#ffffff,#f9fbff);
  border:1px solid var(--rms-border);
  border-radius:20px;
  padding:22px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

.partner-card h3{
  margin:0 0 10px;
  color:var(--rms-dark);
  font-size:18px;
}

.partner-card p{
  margin:0;
  color:var(--rms-muted);
}

/* Footer */
footer.site-footer{
  background:linear-gradient(180deg,#08101d 0%,#0b1628 100%);
  color:white;
  padding:46px 0 20px;
  margin-top:40px;
}

.footer-top{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:24px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  gap:14px;
  align-items:flex-start;
  max-width:620px;
}

.footer-brand img{
  width:64px;
  height:64px;
  object-fit:contain;
  background:white;
  border-radius:12px;
  padding:4px;
}

.footer-brand h3{
  margin:0 0 6px;
  font-size:22px;
}

.footer-brand p{
  margin:0;
  color:rgba(255,255,255,.75);
}

.footer-social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.footer-social a{
  padding:10px 14px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background:rgba(255,255,255,.05);
  color:white;
  font-weight:700;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr 1.3fr;
  gap:24px;
}

.footer-grid h4{
  margin:0 0 12px;
  font-size:16px;
}

.footer-grid ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-grid li{
  margin-bottom:8px;
}

.footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:13px;
  color:rgba(255,255,255,.72);
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width:1100px){
  .hero-grid,
  .grid-4,
  .grid-3,
  .split,
  .contact-wrap,
  .footer-grid,
  .faculty-grid,
  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .cert-grid,
  .outcomes-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .partners-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .form-grid,
  .meta,
  .cert-grid,
  .outcomes-grid,
  .partners-grid{
    grid-template-columns:1fr;
  }

  .nav{
    align-items:flex-start;
  }

  .menu{
    width:100%;
  }

  .hero h1{
    font-size:36px;
  }

  .footer-top,
  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

.site-header {

position: sticky;
top: 0;
z-index: 1000;

background: #ffffff;

box-shadow: 0 2px 10px rgba(0,0,0,0.08);

}

.site-header .nav {

display: flex;
align-items: center;
justify-content: space-between;

}

.footer-social{
display:flex;
gap:12px;
align-items:center;
margin-top:10px;
flex-wrap:wrap;
}

.social-btn{
display:flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
background:#f5f5f5;
border-radius:8px;
transition:all .2s ease;
}

.social-btn img{
width:22px;
height:22px;
}

.social-btn:hover{
background:#0B3D91;
transform:translateY(-2px);
}

.social-btn:hover img{
filter:brightness(0) invert(1);
}

.testimonials-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
margin-top:30px;
}

.testimonial-card{
background:#fff;
padding:25px;
border-radius:8px;
box-shadow:0 6px 15px rgba(0,0,0,0.08);
font-style:italic;
}

.testimonial-card strong{
display:block;
margin-top:15px;
font-style:normal;
color:#0B3D91;
}

@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    padding: 14px;
  }

  input, select {
    font-size: 16px;
  }

}


.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Couleurs par réseau */
.social-btn:nth-child(1) { background-color: #0A66C2; } /* LinkedIn */
.social-btn:nth-child(2) { background-color: #1877F2; } /* Facebook */
.social-btn:nth-child(3) { background-color: #E4405F; } /* Instagram */
.social-btn:nth-child(4) { background-color: #000000; } /* X */
.social-btn:nth-child(5) { background-color: #FF0000; } /* YouTube */
.social-btn:nth-child(6) { background-color: #25D366; } /* WhatsApp */
.social-btn:nth-child(7) { background-color: #6c757d; } /* Email */

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
}


/* ============================= */
/* RMS DESIGN SYSTEM EXTENSION   */
/* SAFE MODE — NO REGRESSION     */
/* ============================= */

/* Variables globales */
:root {
  --rms-primary: #0B3D91;
  --rms-primary-dark: #061F4A;
  --rms-accent: #E63946;
  --rms-light: #f8f9fa;
  --rms-text: #1a1a1a;
}

/* ============================= */
/* Buttons upgrade               */
/* ============================= */

.btn {
  border-radius: 8px;
  font-weight: 600;
  padding: 10px 18px;
  transition: all 0.25s ease;
}

/* bouton principal */
.btn-primary {
  background: var(--rms-primary);
  border: none;
}

.btn-primary:hover {
  background: var(--rms-primary-dark);
  transform: translateY(-2px);
}

/* bouton light */
.btn-light {
  background: #ffffff;
  border: 1px solid #ddd;
}

.btn-light:hover {
  background: var(--rms-light);
}

/* bouton danger (déjà utilisé en B2B) */
.btn-danger {
  background: var(--rms-accent);
  border: none;
}

.btn-danger:hover {
  background: #c1121f;
}

/* ============================= */
/* Cards amélioration douce      */
/* ============================= */

.card,
.program-card,
.highlight-box {
  border-radius: 12px;
  transition: all 0.25s ease;
}

.card:hover,
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ============================= */
/* Sections spacing fix          */
/* ============================= */

section {
  padding: 60px 0;
}

/* ============================= */
/* Hero text amélioration        */
/* ============================= */

.hero h1 {
  font-weight: 700;
}

.hero p {
  font-size: 1.05rem;
  color: #555;
}


.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch.center {
  margin: 0 auto;
}

.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-switch img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rms-blue);
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--rms-blue-2);
  transform: translateY(-3px);
}

/* ============================================ */
/* ACCESSIBILITY IMPROVEMENTS */
/* ============================================ */

/* Focus styles for keyboard navigation */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #1F6FEB;
  outline-offset: 2px;
}

/* Skip link */
.skip-link:focus {
  top: 0;
}

/* ============================================ */
/* BREADCRUMBS */
/* ============================================ */

.breadcrumbs {
  padding: 15px 0;
  font-size: 14px;
  color: #6B7280;
}

.breadcrumbs a {
  color: #0B3D91;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ============================================ */
/* FLOATING CTA (mobile) */
/* ============================================ */

.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
  display: none;
  padding: 10px;
  background: rgba(255,255,255,0.95);
  border-top: 1px solid #E5E7EB;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .floating-cta {
    display: block;
  }
  .floating-cta a {
    width: 90%;
    margin: 0 auto;
  }
}

/* ============================================ */
/* COMPARISON TABLE */
/* ============================================ */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E5E7EB;
}

.comparison-table th {
  background: #0B3D91;
  color: white;
  font-weight: 600;
}

.comparison-table tr:hover {
  background: #F9FAFB;
}

.comparison-table a {
  color: #0B3D91;
  text-decoration: none;
  font-weight: 600;
}

.comparison-table a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
}

/* ============================================ */
/* NEWSLETTER FORM */
/* ============================================ */

.newsletter-form input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #1F6FEB;
  background: rgba(255,255,255,0.15);
}

/* ============================================ */
/* TRUST BADGES */
/* ============================================ */

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.trust-badges span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

/* ============================================ */
/* LAZY LOAD YOUTUBE */
/* ============================================ */

.youtube-lazy {
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.youtube-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

.youtube-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0,0,0,0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.youtube-play-btn:hover {
  background: #0B3D91;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Delivery Methods Section */
.delivery-methods {
  background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
  padding: 60px 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.method-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11,61,145,0.1);
  border-color: rgba(11,61,145,0.2);
}

.method-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.method-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0B3D91;
}

.method-card p {
  margin: 0;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* TRUST COUNTERS SECTION */
/* ============================================ */

.trust-counters {
  background: linear-gradient(135deg, #0B3D91 0%, #1F6FEB 100%);
  padding: 40px 0;
  color: white;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  padding: 20px;
}

.counter-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 768px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .counter-number {
    font-size: 36px;
  }
  .counter-label {
    font-size: 14px;
  }
}

/* ============================================ */
/* DELIVERY METHODS SECTION */
/* ============================================ */

.delivery-methods {
  background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
  padding: 60px 0;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.method-card {
  background: white;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11,61,145,0.1);
  border-color: rgba(11,61,145,0.2);
}

.method-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.method-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0B3D91;
}

.method-card p {
  margin: 0;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* PROGRAM CODE STYLES */
/* ============================================ */

.program-code {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  color: #0B3D91;
  background: rgba(11,61,145,0.1);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ============================================ */
/* CERTIFICATION BADGES CAROUSEL */
/* ============================================ */

.certification-badges {
  background: #FFFFFF;
  padding: 60px 0;
  overflow: hidden;
}

.badges-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
}

.badges-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

.badge-item {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 15px;
  transition: all 0.3s ease;
}

.badge-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(11,61,145,0.15);
}

.badge-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.badge-item:hover img {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.badges-carousel:hover .badges-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .badge-item {
    width: 100px;
    height: 70px;
    padding: 10px;
  }
  .badge-item img {
    max-height: 40px;
  }
  .badges-track {
    gap: 20px;
  }
}

.badge-item img {
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #6B7280;
}

/* ============================================ */
/* INDUSTRY-SPECIFIC TRAINING TRACKS */
/* ============================================ */

.industry-tracks {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFF 100%);
  padding: 60px 0;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.track-card {
  background: white;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #0B3D91, #1F6FEB);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.track-card:hover::before {
  transform: scaleX(1);
}

.track-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(11,61,145,0.12);
  border-color: rgba(11,61,145,0.2);
}

.track-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.track-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #0B3D91;
}

.track-card p {
  margin: 0 0 15px;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
}

.track-code {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #0B3D91;
  background: rgba(11,61,145,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.track-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #0B3D91;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.track-link:hover {
  gap: 8px;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .tracks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tracks-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* WHY CHOOSE US - 6 FEATURES */
/* ============================================ */

.why-choose-us {
  background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11,61,145,0.1);
  border-color: rgba(11,61,145,0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0B3D91;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.brochure-download {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

.brochure-download .btn {
  background: white;
  color: #0B3D91;
  border: 2px solid #0B3D91;
}

.brochure-download .btn:hover {
  background: #0B3D91;
  color: white;
}

/* ============================================ */
/* PROGRAM DETAILS PAGE STYLES */
/* ============================================ */

.program-details {
  padding: 40px 0 80px;
  background: #F7F9FC;
}

.detail-card {
  background: white;
  border-radius: 24px;
  margin-bottom: 40px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.detail-card:hover {
  box-shadow: 0 20px 40px rgba(11,61,145,0.1);
  border-color: rgba(11,61,145,0.2);
}

.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F0F2F5;
}

.detail-header h2 {
  margin: 10px 0 8px;
  font-size: 26px;
  color: #0B3D91;
}

.detail-header p {
  margin: 0;
  color: #6B7280;
  font-size: 16px;
}

.detail-code {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #0B3D91;
  background: rgba(11,61,145,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.detail-section h3 {
  margin: 0 0 15px;
  font-size: 18px;
  color: #0B3D91;
  font-weight: 600;
}

.detail-section ul {
  margin: 0;
  padding-left: 20px;
}

.detail-section li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .detail-card {
    padding: 24px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-header h2 {
    font-size: 22px;
  }
}

/* ============================================ */
/* ENHANCED PROGRAM DETAILS PAGE STYLES */
/* ============================================ */

.program-details {
  padding: 40px 0 80px;
  background: #F7F9FC;
}

.detail-card {
  background: white;
  border-radius: 28px;
  margin-bottom: 50px;
  padding: 32px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
}

.detail-card:hover {
  box-shadow: 0 20px 40px rgba(11,61,145,0.1);
  border-color: rgba(11,61,145,0.2);
}

/* Header with image */
.detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F0F2F5;
}

.detail-header-content {
  flex: 2;
  min-width: 250px;
}

.detail-header-image {
  flex: 1;
  min-width: 180px;
  max-width: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.detail-header-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.detail-card:hover .detail-header-image img {
  transform: scale(1.03);
}

.detail-header h2 {
  margin: 10px 0 8px;
  font-size: 26px;
  color: #0B3D91;
}

.detail-header p {
  margin: 0;
  color: #6B7280;
  font-size: 16px;
  line-height: 1.5;
}

.detail-code {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #0B3D91;
  background: rgba(11,61,145,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Info grid */
.detail-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #F8FAFF;
  padding: 18px 24px;
  border-radius: 16px;
  margin-bottom: 25px;
}

.info-item {
  flex: 1;
  min-width: 100px;
}

.info-label {
  display: block;
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #0B3D91;
}

/* Description */
.detail-description {
  background: linear-gradient(135deg, #F8FAFF 0%, #FFFFFF 100%);
  padding: 20px 24px;
  border-radius: 16px;
  margin-bottom: 30px;
  border-left: 4px solid #0B3D91;
}

.detail-description p {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

/* Detail grid */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 30px;
}

.detail-section h3 {
  margin: 0 0 15px;
  font-size: 18px;
  color: #0B3D91;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.detail-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #0B3D91;
  border-radius: 2px;
}

.detail-section ul {
  margin: 0;
  padding-left: 20px;
}

.detail-section li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.4;
}

/* Footer buttons */
.detail-footer {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}

.detail-footer .btn {
  min-width: 160px;
}

@media (max-width: 1000px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail-header {
    flex-direction: column;
    text-align: center;
  }
  .detail-header-image {
    max-width: 100%;
  }
  .detail-header-image img {
    height: 180px;
  }
  .detail-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .detail-card {
    padding: 24px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-info-grid {
    flex-direction: column;
    gap: 12px;
  }
  .detail-footer {
    flex-direction: column;
  }
  .detail-footer .btn {
    width: 100%;
    text-align: center;
  }
}

/* Hero Info Badges */
.hero-info-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.info-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  font-size: 18px;
}

.badge-label {
  color: white;
}

.hero-description {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-description strong {
  color: #FFD966;
  font-weight: 700;
}

/* Visual separator between cards */
.detail-card:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0B3D91, #1F6FEB, transparent);
}

/* Contact fee styling */
.info-value.contact-fee {
  color: #E63946;
  font-size: 16px;
}

/* Description box icon */
.detail-description {
  position: relative;
}

.detail-description::before {
  content: '📘';
  position: absolute;
  left: -12px;
  top: 20px;
  font-size: 24px;
  background: white;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}