/* ==========================================================================
   Career Option - Premium Stylesheet
   Author: Career Option Dev
   Theme : Dark Blue + White + Gradient
   ========================================================================== */

/* -------------------- ROOT VARIABLES -------------------- */
:root {
  --co-navy:      #0a2540;
  --co-navy-2:    #0f2d52;
  --co-navy-deep: #061a32;
  --co-blue:      #1e40af;
  --co-blue-2:    #2563eb;
  --co-cyan:      #06b6d4;
  --co-accent:    #f59e0b;
  --co-pink:      #ec4899;
  --co-bg:        #f7f9fc;
  --co-bg-alt:    #ffffff;
  --co-text:      #0f172a;
  --co-muted:     #64748b;
  --co-border:    rgba(15, 23, 42, 0.08);

  --co-grad-primary: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #06b6d4 100%);
  --co-grad-hero:    linear-gradient(135deg, #061a32 0%, #0a2540 50%, #1e3a8a 100%);
  --co-grad-text:    linear-gradient(90deg, #2563eb, #06b6d4, #f59e0b);

  --co-shadow-sm: 0 4px 14px rgba(10, 37, 64, .08);
  --co-shadow-md: 0 12px 40px rgba(10, 37, 64, .12);
  --co-shadow-lg: 0 24px 60px rgba(10, 37, 64, .18);

  --co-radius:    14px;
  --co-radius-lg: 22px;

  --co-font:      'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --co-font-head: 'Sora', 'Plus Jakarta Sans', sans-serif;
}

/* -------------------- GLOBAL RESET -------------------- */
* { box-sizing: border-box; }

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

body {
  font-family: var(--co-font);
  color: var(--co-text);
  background: var(--co-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--co-font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--co-navy);
}

a { text-decoration: none; transition: all .25s ease; }

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

::selection { background: var(--co-blue); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #e2e8f0; }
::-webkit-scrollbar-thumb { background: var(--co-grad-primary); border-radius: 10px; }

/* -------------------- TEXT GRADIENT -------------------- */
.text-gradient {
  background: var(--co-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* -------------------- BUTTONS -------------------- */
.btn { font-weight: 600; border-radius: 999px; padding: .7rem 1.6rem; transition: all .3s ease; letter-spacing: .01em; }
.btn-lg { padding: .95rem 2rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .875rem; }

.btn-gradient {
  background: var(--co-grad-primary);
  background-size: 200% 200%;
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
  position: relative;
  overflow: hidden;
}
.btn-gradient::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, #06b6d4 0%, #2563eb 50%, #1e40af 100%);
  opacity: 0; transition: opacity .35s ease;
}
.btn-gradient span, .btn-gradient i { position: relative; z-index: 1; }
.btn-gradient:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,99,235,.45); }
.btn-gradient:hover::before { opacity: 1; }

.btn-outline-light {
  border: 2px solid rgba(255,255,255,.7); color: #fff;
  backdrop-filter: blur(10px); background: rgba(255,255,255,.05);
}
.btn-outline-light:hover { background: #fff; color: var(--co-navy); border-color: #fff; transform: translateY(-3px); }

/* -------------------- PRELOADER -------------------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--co-grad-hero);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.loader-wrap { text-align: center; }
.loader-ring {
  width: 70px; height: 70px;
  border: 4px solid rgba(255,255,255,.15);
  border-top-color: var(--co-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text {
  color: #fff; font-family: var(--co-font-head); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  background: var(--co-grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.6;} }

/* -------------------- TOP NOTIFICATION -------------------- */
.top-notification {
  position: fixed; top: -80px; left: 0; right: 0;
  background: rgba(34, 197, 94, .95);
  color: #fff; text-align: center; padding: 1rem;
  font-weight: 600; z-index: 99998;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(34,197,94,.35);
  transition: top .5s ease;
}
.top-notification.show { top: 0; }
.top-notification.error { background: rgba(239, 68, 68, .95); box-shadow: 0 6px 20px rgba(239,68,68,.35); }

/* -------------------- NAVBAR -------------------- */
.main-navbar {
  background: transparent;
  padding: 1.2rem 0;
  transition: all .35s ease;
  z-index: 1030;
}
.main-navbar.scrolled {
  background: rgba(10, 37, 64, .85);
  backdrop-filter: blur(18px);
  padding: .65rem 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}
.navbar-brand { display: flex; align-items: center; gap: .65rem; padding: 0; }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--co-grad-primary);
  color: #fff; font-weight: 800; font-family: var(--co-font-head);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(37,99,235,.4);
  font-size: 1rem;
}
.brand-name {
  color: #fff; font-family: var(--co-font-head);
  font-weight: 700; font-size: 1.4rem; letter-spacing: -.01em;
}
.brand-name span { color: var(--co-cyan); }

.main-navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  padding: .5rem 1rem !important;
  position: relative;
}
.nav-link-anim::after {
  content:''; position: absolute; bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--co-grad-primary);
  transition: all .3s ease;
  transform: translateX(-50%);
}
.nav-link-anim:hover { color: #fff !important; }
.nav-link-anim:hover::after { width: 60%; }

.navbar-toggler { border: none; padding: .5rem; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px 0;
  transition: all .3s ease;
}

/* -------------------- HERO -------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--co-grad-hero);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,.25) 0, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(6,182,212,.2) 0, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23ffffff' stroke-opacity='.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-glow {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: .35; pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.glow-1 { width: 380px; height: 380px; background: var(--co-blue-2); top: 10%; left: -100px; }
.glow-2 { width: 300px; height: 300px; background: var(--co-cyan); bottom: 5%; right: -80px; animation-delay: -4s; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-30px);} }

.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; border-radius: 999px; font-size: .85rem; font-weight: 500;
  backdrop-filter: blur(10px);
  margin-bottom: 1.5rem;
}
.hero-pill i { color: var(--co-accent); }
.hero-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  color: rgba(255,255,255,.78);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; color: rgba(255,255,255,.85); }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars img {
  width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--co-navy);
  object-fit: cover; margin-left: -10px;
}
.hero-trust .avatars img:first-child { margin-left: 0; }
.hero-trust .stars { color: var(--co-accent); font-size: .85rem; }
.hero-trust small { color: rgba(255,255,255,.7); }

.hero-image-wrap { position: relative; padding: 2rem; }
.hero-image {
  width: 100%; border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  border: 6px solid rgba(255,255,255,.08);
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  padding: .9rem 1.2rem;
  border-radius: 16px;
  display: flex; align-items: center; gap: .8rem;
  box-shadow: var(--co-shadow-lg);
  animation: floatY 4s ease-in-out infinite;
}
.floating-card i { font-size: 1.8rem; color: var(--co-blue-2); }
.floating-card strong { display: block; color: var(--co-navy); font-weight: 700; font-size: .95rem; }
.floating-card small { color: var(--co-muted); font-size: .75rem; }
.card-1 { top: 12%; left: -10px; }
.card-2 { bottom: 14%; right: -10px; animation-delay: -2s; }
@keyframes floatY { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

/* -------------------- SECTIONS -------------------- */
.section { padding: 6rem 0; position: relative; }
.section-alt { background: var(--co-bg-alt); }

.section-eyebrow {
  display: inline-block;
  padding: .35rem 1rem;
  background: rgba(37, 99, 235, .1);
  color: var(--co-blue-2);
  border-radius: 999px;
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section-text { color: var(--co-muted); font-size: 1.05rem; }
.text-white-75 { color: rgba(255,255,255,.75) !important; }

/* -------------------- ABOUT -------------------- */
.about-image-stack { position: relative; padding: 1rem; }
.about-img-main {
  width: 100%; border-radius: var(--co-radius-lg);
  box-shadow: var(--co-shadow-lg);
}
.about-img-float {
  position: absolute; bottom: -30px; right: -20px;
  width: 55%; border-radius: var(--co-radius);
  border: 6px solid #fff;
  box-shadow: var(--co-shadow-md);
}
.exp-badge {
  position: absolute; top: 30px; left: -20px;
  background: var(--co-grad-primary);
  color: #fff; padding: 1rem 1.4rem;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(37,99,235,.4);
  text-align: center;
}
.exp-badge strong { display: block; font-size: 1.8rem; font-family: var(--co-font-head); }
.exp-badge span { font-size: .75rem; opacity: .9; letter-spacing: .05em; text-transform: uppercase; }

.about-list { list-style: none; padding: 0; margin-top: 1.5rem; }
.about-list li {
  display: flex; align-items: center; gap: .7rem;
  padding: .55rem 0; color: var(--co-text); font-weight: 500;
}
.about-list i { color: #10b981; font-size: 1.2rem; }

/* -------------------- COUNTERS -------------------- */
.counter-row { margin-top: 4rem; }
.counter-card {
  background: #fff;
  padding: 2rem 1.25rem;
  border-radius: var(--co-radius-lg);
  text-align: center;
  border: 1px solid var(--co-border);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--co-grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.counter-card:hover { transform: translateY(-8px); box-shadow: var(--co-shadow-md); }
.counter-card:hover::before { transform: scaleX(1); }
.counter-card i {
  font-size: 2.2rem;
  background: var(--co-grad-primary);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: .5rem; display: inline-block;
}
.counter-num { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; display: inline-block; color: var(--co-navy); }
.counter-suffix { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: var(--co-navy); }
.counter-card p { margin: .25rem 0 0; color: var(--co-muted); font-weight: 500; font-size: .95rem; }

/* -------------------- TRAINING & STARTUP CARDS -------------------- */
.training-card {
  background: #fff;
  border-radius: var(--co-radius-lg);
  overflow: hidden;
  border: 1px solid var(--co-border);
  transition: all .4s ease;
  height: 100%;
}
.training-card:hover { transform: translateY(-10px); box-shadow: var(--co-shadow-lg); }
.training-img { position: relative; overflow: hidden; height: 240px; }
.training-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.training-card:hover .training-img img { transform: scale(1.08); }
.training-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--co-navy); padding: .35rem .9rem;
  border-radius: 999px; font-size: .75rem; font-weight: 600;
  backdrop-filter: blur(10px);
}
.training-body { padding: 1.75rem; }
.training-body h4 { font-size: 1.35rem; margin-bottom: .65rem; }
.training-body p { color: var(--co-muted); margin-bottom: 1.2rem; }
.btn-learn {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--co-blue-2); font-weight: 600;
}
.btn-learn:hover { color: var(--co-navy); gap: .9rem; }

/* -------------------- ANIMATION COURSE CARDS -------------------- */
.course-card {
  background: #fff;
  border-radius: var(--co-radius-lg);
  overflow: hidden;
  border: 1px solid var(--co-border);
  transition: all .4s ease;
  height: 100%;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-10px); box-shadow: var(--co-shadow-lg); border-color: transparent; }
.course-img { position: relative; height: 220px; overflow: hidden; }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.course-card:hover .course-img img { transform: scale(1.1); }
.course-icon {
  position: absolute; bottom: -22px; right: 22px;
  width: 56px; height: 56px;
  background: var(--co-grad-primary);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(37,99,235,.4);
}
.course-body { padding: 2rem 1.75rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.course-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: .8rem; color: var(--co-muted); font-weight: 500;
  margin-bottom: .75rem;
}
.course-meta i { color: var(--co-blue-2); margin-right: .25rem; }
.course-body h4 { font-size: 1.3rem; margin-bottom: .6rem; }
.course-body p { color: var(--co-muted); margin-bottom: 1.5rem; flex: 1; }

/* -------------------- WHY CHOOSE US -------------------- */
.why-section { background: #fff; }
.why-card {
  background: #fff;
  padding: 2.25rem 1.75rem;
  border-radius: var(--co-radius-lg);
  text-align: center;
  border: 1px solid var(--co-border);
  height: 100%;
  transition: all .4s ease;
  position: relative;
}
.why-card:hover { transform: translateY(-8px); border-color: transparent; box-shadow: var(--co-shadow-lg); }
.why-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(37,99,235,.12), rgba(6,182,212,.12));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem; color: var(--co-blue-2);
  transition: all .35s ease;
}
.why-card:hover .why-icon { background: var(--co-grad-primary); color: #fff; transform: scale(1.08) rotate(-6deg); }
.why-card h5 { margin-bottom: .65rem; font-size: 1.15rem; }
.why-card p { color: var(--co-muted); font-size: .95rem; margin: 0; }

/* -------------------- TESTIMONIALS -------------------- */
.testimonial-carousel { max-width: 850px; margin: 0 auto; padding: 0 50px; }
.testimonial-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: var(--co-radius-lg);
  text-align: center;
  border: 1px solid var(--co-border);
  box-shadow: var(--co-shadow-sm);
  position: relative;
}
.testimonial-quote {
  font-size: 4rem;
  background: var(--co-grad-primary);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  position: absolute; top: 14px; left: 30px;
  opacity: .25;
}
.testimonial-text {
  font-size: 1.15rem; color: var(--co-text);
  font-style: italic; line-height: 1.75;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.testimonial-author img {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: var(--co-shadow-sm);
}
.testimonial-author h6 { margin: 0; font-size: 1.05rem; }
.testimonial-author small { color: var(--co-muted); }

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--co-grad-primary);
  top: 50%; transform: translateY(-50%);
  opacity: 1;
}
.testimonial-carousel .carousel-control-prev { left: 0; }
.testimonial-carousel .carousel-control-next { right: 0; }
.testimonial-carousel .carousel-indicators { bottom: -50px; }
.testimonial-carousel .carousel-indicators button {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--co-blue-2); border: none; opacity: .35;
}
.testimonial-carousel .carousel-indicators .active { opacity: 1; width: 30px; border-radius: 6px; }

/* -------------------- CONTACT -------------------- */
.contact-section {
  background: var(--co-grad-hero);
  position: relative;
  overflow: hidden;
}
.contact-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37,99,235,.25) 0, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(6,182,212,.2) 0, transparent 45%);
  pointer-events: none;
}
.contact-info-list { list-style: none; padding: 0; margin-top: 2rem; }
.contact-info-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem; color: rgba(255,255,255,.85);
}
.contact-info-list i {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--co-cyan); font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-info-list strong { display: block; color: #fff; font-weight: 600; margin-bottom: .15rem; }
.contact-info-list span { color: rgba(255,255,255,.7); font-size: .95rem; }

/* Glassmorphism Form */
.contact-form-glass {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--co-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.form-title { color: #fff; margin-bottom: 1.5rem; font-size: 1.5rem; }
.contact-form-glass .form-label { color: rgba(255,255,255,.85); font-weight: 500; font-size: .9rem; margin-bottom: .4rem; }
.glass-input {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: .85rem 1rem !important;
  transition: all .3s ease;
}
.glass-input::placeholder { color: rgba(255,255,255,.5); }
.glass-input:focus {
  background: rgba(255,255,255,.12) !important;
  border-color: var(--co-cyan) !important;
  box-shadow: 0 0 0 3px rgba(6,182,212,.2) !important;
  color: #fff !important;
}
select.glass-input option { background: var(--co-navy-deep); color: #fff; }

/* -------------------- FAQ -------------------- */
.faq-section { background: var(--co-bg); }
.faq-accordion .accordion-item {
  background: #fff;
  border: 1px solid var(--co-border);
  border-radius: var(--co-radius) !important;
  margin-bottom: .85rem;
  overflow: hidden;
  box-shadow: var(--co-shadow-sm);
}
.faq-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  color: var(--co-navy);
  padding: 1.15rem 1.4rem;
  border: none;
  font-size: 1.02rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.05));
  color: var(--co-blue-2);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\F4FE';
  font-family: 'bootstrap-icons';
  transform: rotate(0);
  transition: transform .3s ease;
  width: auto; height: auto;
}
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(45deg); content: '\F4FE'; }
.faq-accordion .accordion-body { color: var(--co-muted); padding: 0 1.4rem 1.25rem; line-height: 1.75; }

/* -------------------- FOOTER -------------------- */
.footer {
  background: var(--co-navy-deep);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
  position: relative;
}
.footer::before {
  content:''; position: absolute; top:0; left:0; right:0; height: 3px;
  background: var(--co-grad-primary);
}
.footer-brand { display: flex; align-items: center; gap: .65rem; margin-bottom: 1.25rem; }
.footer-text { line-height: 1.75; margin-bottom: 1.5rem; max-width: 320px; }
.footer-heading {
  color: #fff; font-size: 1.05rem; font-weight: 700;
  margin-bottom: 1.25rem; position: relative; padding-bottom: .65rem;
}
.footer-heading::after {
  content:''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--co-grad-primary); border-radius: 3px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .95rem; }
.footer-links a:hover { color: var(--co-cyan); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex; gap: .75rem; margin-bottom: .85rem;
  font-size: .9rem; line-height: 1.6;
}
.footer-contact i { color: var(--co-cyan); flex-shrink: 0; margin-top: 4px; }
.footer-socials { display: flex; gap: .65rem; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem;
  border: 1px solid rgba(255,255,255,.1);
}
.footer-socials a:hover { background: var(--co-grad-primary); border-color: transparent; transform: translateY(-3px); }
.footer-bottom {
  margin-top: 3rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; font-size: .9rem;
}
.footer-bottom p { margin: 0; }

/* -------------------- FLOATING BUTTONS -------------------- */
.float-whatsapp,
.float-scroll-top {
  position: fixed; right: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  z-index: 1020;
  border: none;
  transition: all .3s ease;
}
.float-whatsapp {
  bottom: 24px;
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  animation: pulseRing 2.5s ease infinite;
}
.float-whatsapp:hover { color: #fff; transform: scale(1.1); }
@keyframes pulseRing {
  0% { box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.6); }
  70%{ box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
  100%{ box-shadow: 0 8px 24px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}
.float-tooltip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--co-navy); color: #fff;
  padding: .4rem .8rem; border-radius: 8px;
  font-size: .8rem; white-space: nowrap;
  opacity: 0; visibility: hidden; transition: all .25s ease;
}
.float-whatsapp:hover .float-tooltip { opacity: 1; visibility: visible; right: 70px; }

.float-scroll-top {
  bottom: 90px;
  background: var(--co-grad-primary); color: #fff;
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
  opacity: 0; visibility: hidden; transform: translateY(20px);
}
.float-scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.float-scroll-top:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,99,235,.5); }

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 991.98px) {
  .main-navbar { background: rgba(10, 37, 64, .95); backdrop-filter: blur(18px); padding: .75rem 0; }
  .navbar-collapse { padding: 1rem 0; }
  .main-navbar .nav-link { padding: .75rem 0 !important; }
  .section { padding: 4rem 0; }
  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .contact-form-glass { padding: 1.75rem; }
  .testimonial-carousel { padding: 0 20px; }
  .testimonial-carousel .carousel-control-prev,
  .testimonial-carousel .carousel-control-next { display: none; }
  .about-img-float, .exp-badge { position: static; width: auto; margin-top: 1rem; }
  .floating-card { display: none; }
}
@media (max-width: 575.98px) {
  .hero-cta-group .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: flex-start; }
  .testimonial-card { padding: 2rem 1.5rem; }
  .contact-form-glass { padding: 1.5rem 1.25rem; }
  .float-whatsapp, .float-scroll-top { width: 48px; height: 48px; right: 16px; font-size: 1.3rem; }
  .float-scroll-top { bottom: 78px; }
}
