/* ================= ROOT VARIABLES ================= */

:root {
  --azania-accent: #ff8c00;
  --azania-gold: #b48a44;
  --azania-blue: #1b3456;
}

/* ================= GLOBAL ================= */

body {
  padding-top: 80px;
  font-family: "Playfair Display", Georgia, serif;
}

/* ================= BOOTSTRAP ICON FIX (CRITICAL) ================= */

.bi::before {
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  line-height: 1;
}

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;

  background-image:
    linear-gradient(
      to right,
      rgba(248, 246, 242, 0.92) 0%,
      rgba(248, 246, 242, 0.78) 45%,
      rgba(255, 255, 255, 0.15) 75%
    ),
    url("images/azania-hero-backgrond.png");

  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

/* Title */
.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
  max-width: 640px;
}

.hero-title span {
  color: var(--azania-gold);
}

/* Text */
.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1f2933;
  margin-bottom: 34px;
  max-width: 520px;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Buttons */
.btn-gold {
  background-color: var(--azania-gold);
  color: #ffffff;
  border: none;
}

.btn-gold:hover {
  background-color: #9c7435;
  color: #ffffff;
}

/* ================= HERO MOBILE REFINEMENT ================= */

@media (max-width: 767px) {

  /* Stop flex centering at section level */
  .hero-section {
    min-height: 90vh;
    background-position: center right;
    padding-top: 32px;
    padding-bottom: 32px;
    display: block; /* CRITICAL FIX */
  }

  /* Override Bootstrap align-items-center (!important required) */
  .hero-section .row {
    align-items: flex-start !important;
  }

  /* Push content down from top */
  .hero-content {
    padding-top: 56px;
  }

  /* Eyebrow */
  .hero-eyebrow {
    display: inline-block;
    margin-top: 50px;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    width: 100%;
    text-align: center !important;
  }

  /* Heading */
  .hero-title {
    text-align: center;
    font-size: 2.25rem;
    line-height: 1.25;
    margin-top: 30px;
  }

  .hero-title span {
    text-align: center;
    display: block;
    font-size: 1.9rem;
    margin-top: 10px;
  }

  /* Hide long paragraph */
  .hero-text-desktop {
    display: none;
  }

  /* CTA buttons */
  .hero-actions {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    font-size: 0.95rem;
    padding: 11px 20px;
  }
}




/* ================= HERO TEXT ANIMATION ================= */

/* Initial hidden state */
.animate {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s ease-out forwards;
}

/* Stagger delays */
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

/* Keyframes */
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ================= ABOUT SECTION ================= */

.about-section {
  position: relative;
  background-image:
    linear-gradient(
      to right,
      rgba(250, 249, 247, 0.97) 0%,
      rgba(250, 249, 247, 0.94) 60%,
      rgba(255, 255, 255, 0.98) 100%
    ),
    url("images/azania-about-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Eyebrow / badge */
.about-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b48a44;
  font-weight: 600;
}

/* Title */
.about-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.2;
}

.about-title span {
  color: #1b3456;
}

/* Lead paragraph */
.about-lead {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #1f2933;
}

/* Supporting text */
.about-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 24px;
}

/* Feature list */
.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.about-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #1f2933;
}

.about-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #b48a44;
  font-weight: 700;
}

/* Button */
.about-btn {
  padding: 10px 26px;
  font-size: 0.95rem;
}

/* Image wrapper */
.about-image-wrapper {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease;
}

.about-image-wrapper img {
  width: 100%;
  display: block;
}

/* Subtle lift on hover */
.about-image-wrapper:hover {
  transform: translateY(-6px);
}

/* Mobile refinement */
@media (max-width: 991px) {
  .about-title {
    font-size: 2rem;
  }
}


/* ================= SERVICES ================= */

.services-section {
  background: #f8f9fb;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

/* Image */
.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.service-body {
  padding: 22px 22px 26px;
}

/* Header */
.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-header h5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Icon */
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 140, 0, 0.15);
  color: var(--azania-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* Description */
.service-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 14px;
}

/* Tags */
.service-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags li {
  background: #f1f5f9;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 999px;
  font-weight: 500;
  color: #1f2933;
}

/* Link */
.service-link {
  font-weight: 600;
  color: #1b3456;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

/* Mobile tweaks */
@media (max-width: 767px) {
  .service-image {
    height: 200px;
  }

  .service-body {
    padding: 20px;
  }
}


/* ================= WHY SECTION ================= */

.why-section {
  background: linear-gradient(to right, #0f1c2d, #162a44);
  padding: 80px 0 0;
  position: relative;
}

.why-title {
  color: #ffffff;
  margin-bottom: 60px;
  font-size: 2.4rem;
  font-weight: 600;
}

/* ================= TRUST BAR ================= */
/* Trust icon (Bootstrap Icons) */
.trust-icon {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: var(--azania-gold);
  line-height: 1;
}


.trust-bar {
  background: #faf9f7;
  border-radius: 16px;
  overflow: hidden;
}

.trust-item {
  display: flex;
  gap: 14px;
  padding: 22px 20px;
  background: transparent;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--azania-gold);
}

.trust-content h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2933;
}

.trust-content p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

/* ================= TESTIMONIALS PANEL ================= */

.testimonials-panel {
  background: #faf9f7;
  margin: 30px 0;
  border-radius: 32px 32px 0 0;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

/* Header: icon + name */
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.testimonial-icon {
  font-size: 2.2rem;
  color: var(--azania-gold);
  line-height: 1;
}

.testimonial-person-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2933;
}

/* Quote */
.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #1f2933;
  margin-bottom: 18px;
}

/* Role */
.testimonial-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
}

/* ================= ANIMATIONS ================= */

.animate {
  opacity: 0;
  transform: translateY(18px);
  animation: testimonialFadeUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.animate-delay-4 { animation-delay: 0.8s; }

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

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ================= CONTACT SECTION ================= */

.contact-card,
.contact-card * {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Slight refinement for headings */
.contact-section .section-title {
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-section .section-subtitle {
  font-weight: 400;
  opacity: 0.9;
}

.contact-section {
  background: linear-gradient(to right, #0f1c2d, #162a44);
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  backdrop-filter: blur(6px);
}

/* Contact details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.contact-row i {
  color: var(--azania-gold);
  font-size: 1.1rem;
  line-height: 1;
}

/* Social icons (clean + circular) */
.contact-socials {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.25s ease;
}

.social-icon i {
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--azania-gold);
  border-color: var(--azania-gold);
  color: #0f1c2d;
}

/* Mobile refinement */
@media (max-width: 767px) {
  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .contact-socials {
    align-self: center;
  }
}


/* ================= FOOTER ================= */

.footer-section {
  background: #0c1726;
  padding: 30px 0;
}

.footer-text {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #9ca3af;
  max-width: 520px;
}




