@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --navy: #003580;
  --blue: #0057B8;
  --gold: #D4AF37;
  --amber: #F59E0B;
  --white: #FFFFFF;
  --light: #F8FAFF;
  --gray: #64748B;
  --dark: #1E293B;
  --success: #10B981;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Nunito', sans-serif;
  --shadow: 0 4px 24px rgba(0, 53, 128, 0.10);
  --radius: 16px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-b);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-h);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

.section-title {
  text-align: center;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--light);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 87, 184, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 87, 184, 0.45);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 53, 128, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  height: 90px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--amber)) !important;
  color: var(--dark) !important;
  padding: 0.55rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 800 !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.08) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 8rem 1.5rem 4rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero h1 {
  color: white;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '↓';
  font-size: 1.4rem;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  color: white;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 53, 128, 0.15);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  background: var(--light);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-title {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}

.card-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray);
}

.card-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.include-badge {
  background: rgba(0, 87, 184, 0.08);
  color: var(--blue);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}

.badge-hot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-new {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
}

.card-relative {
  position: relative;
}

/* ── GRIDS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── BENEFITS ── */
.benefit-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--gold);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.08), rgba(0, 87, 184, 0.13));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--navy);
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
}

.benefit-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  color: white;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.25);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
}

.author-loc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: linear-gradient(135deg, #001f4d, var(--navy));
  padding: 5rem 0;
}

.newsletter-box {
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-box h2 {
  color: white;
  margin-bottom: 1rem;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.9rem 1.3rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-family: var(--font-b);
  outline: none;
}

/* ── SERVICES PAGE ── */
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  transition: var(--transition);
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 53, 128, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.08), rgba(0, 87, 184, 0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-info h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-info p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── SERVICE MINI CARDS ── */
.service-mini-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.service-mini-card:hover {
  border-bottom-color: var(--gold);
}

.service-mini-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 53, 128, 0.08), rgba(0, 87, 184, 0.13));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--navy);
  transition: var(--transition);
}

.service-mini-card:hover .service-mini-icon {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
}

.service-mini-card h4 {
  color: var(--navy);
  font-size: 0.92rem;
  font-family: var(--font-b);
  font-weight: 700;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--amber));
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--gold);
  position: relative;
  z-index: 1;
}

.step-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 53, 128, 0.2);
}

.about-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(245, 158, 11, 0.18));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--navy);
}

.value-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ── FILTERS ── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-b);
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: white;
}

/* ── BLOG ── */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: white;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 53, 128, 0.15);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-body {
  padding: 1.5rem;
}

.blog-cat {
  display: inline-block;
  background: rgba(0, 87, 184, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.blog-title {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.blog-excerpt {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-read {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-read:hover {
  color: var(--navy);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 0.95rem;
  transition: var(--transition);
  background: white;
  color: var(--dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.info-card h4 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.info-card p,
.info-card a {
  color: var(--gray);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  color: var(--dark);
  font-weight: 600;
}

.social-link:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 25px rgba(0, 53, 128, 0.12);
}

.social-link span:first-child {
  font-size: 1.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
}

.page-hero h1 {
  color: white;
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: var(--gold);
}

/* ── PARTNER SECTION ── */
.partner-section {
  background: linear-gradient(135deg, var(--light), white);
}

.partner-box {
  background: white;
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  border-left: 6px solid var(--gold);
}

.partner-logo {
  font-size: 3rem;
}

.partner-box h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.partner-item {
  background: rgba(0, 53, 128, 0.07);
  color: var(--navy);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  height: 70px;
  width: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.footer-logo-name {
  font-family: var(--font-h);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 0.25rem;
}

footer h4 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--font-b);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-social-links { display: flex; flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }

.social-pill {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.social-pill:hover {
  color: white;
  transform: translateX(4px);
}

.social-pill svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: var(--transition);
}

.social-pill:hover svg {
  opacity: 1;
}

.social-pill.instagram:hover {
  background: rgba(225, 48, 108, 0.2);
  border-color: rgba(225, 48, 108, 0.4);
  color: #f58bba;
}

.social-pill.facebook:hover {
  background: rgba(24, 119, 242, 0.2);
  border-color: rgba(24, 119, 242, 0.4);
  color: #7fb3f5;
}

.social-pill.threads:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.social-pill.linktree:hover {
  background: rgba(68, 211, 143, 0.15);
  border-color: rgba(68, 211, 143, 0.35);
  color: #6ee7b7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 28, 80, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    backdrop-filter: blur(12px);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .partner-box {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy);
}

/* ── SCROLL TO TOP ── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#scroll-top:hover {
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.7);
  transform: translateY(-3px);
}