/* Rocky Driving Schools - AA Kenya Style */

/* ===== CSS Variables ===== */
:root {
  /* RTAC brand colors: Navy primary, Red accent */
  --green-dark: #0b2a4a;   /* Primary navy */
  --green-medium: #123a62; /* Hover/secondary navy */
  --green-light: #e31e24;  /* Accent red */
  --yellow: #e31e24;       /* Replace yellow accents with red */
  --yellow-dark: #b3171c;  /* Darker red for hover states */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --dark-grey: #333333;
  --light-grey: #6c757d;
}

/* ===== Global Styles ===== */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
}

/* ===== Checkered Pattern ===== */
.checkered-border {
  height: 20px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px,
    var(--yellow) 20px,
    var(--green-dark) 20px,
    var(--green-dark) 40px
  );
}

.checkered-border-thin {
  height: 10px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--yellow) 0px,
    var(--yellow) 10px,
    var(--green-dark) 10px,
    var(--green-dark) 20px
  );
}

/* ===== Top Bar ===== */
.top-bar {
  background-color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.top-bar .navbar-toggler {
  border-color: var(--green-dark);
  background-color: var(--green-dark);
  padding: 0.25rem 0.5rem;
}

.top-bar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.top-bar .social-icons a {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.top-bar .social-icons a:hover {
  color: var(--yellow-dark);
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo:hover {
  color: var(--green-dark);
}

.brand-logo .logo-icon {
  background: var(--yellow);
  color: var(--green-dark);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ===== Main Navbar ===== */
.main-nav {
  background-color: var(--green-dark);
  padding: 0;
}

.main-nav .navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link.active {
  background-color: var(--green-medium);
  color: var(--yellow);
}

.main-nav .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.main-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Updated hero background to driving-related stock photo */
  background: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&h=800&fit=crop") center / cover
    no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 42, 74, 0.55) 0%,
    rgba(227, 30, 36, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 3rem 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* ===== Service Icons Grid (Hero) ===== */
.service-icons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.service-icon-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 140px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-icon-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.service-icon-box img,
.service-icon-box .icon-placeholder {
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 8px;
  object-fit: cover;
}

.icon-placeholder {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.service-icon-box h6 {
  font-size: 0.85rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.service-icon-box .btn-sm {
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 4px;
}

/* ===== About Section ===== */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-label {
  font-size: 0.9rem;
  color: var(--light-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-grey);
  margin-bottom: 1.5rem;
}

.about-section p {
  color: var(--light-grey);
  line-height: 1.8;
}

.about-section .btn-outline-dark {
  border: 2px solid var(--dark-grey);
  padding: 10px 25px;
  font-weight: 500;
  border-radius: 4px;
}

.about-section .btn-outline-dark:hover {
  background: var(--dark-grey);
  color: var(--white);
}

/* About section with background image and overlay */
.about-section.about-bg {
  position: relative;
  background: url("../img/about.jpg") center / cover no-repeat;
}

.about-section.about-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.90) 100%);
}

.about-section.about-bg .container {
  position: relative;
  z-index: 1;
}

.about-section.about-bg h2,
.about-section.about-bg p,
.about-section.about-bg .about-label {
  color: var(--dark);
}

.about-section.about-bg .btn-outline-dark {
  border-color: var(--dark);
  color: var(--dark);
}

.about-section.about-bg .btn-outline-dark:hover {
  background: var(--white);
  color: var(--dark-grey);
}

/* ===== App Section ===== */
.app-section {
  background: var(--green-dark);
  padding: 60px 0;
  position: relative;
}

.app-content {
  color: var(--white);
}

.app-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.app-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.app-badges img {
  height: 40px;
}

.app-badges .badge-btn {
  background: var(--dark-grey);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.85rem;
}

.app-badges .badge-btn:hover {
  background: #222;
}

/* ===== Stats Section (Bento Grid) ===== */
.stats-section {
  padding: 60px 0;
  background: var(--off-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

.stat-box {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-box.yellow-bg {
  background: var(--yellow);
}

.stat-box.large {
  grid-column: span 2;
  grid-row: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.stat-box.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-box .stat-icon {
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.stat-box .stat-label {
  font-size: 0.85rem;
  color: var(--light-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.stat-box .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-grey);
}

.stat-box.yellow-bg .stat-number {
  color: var(--white);
}

.stat-box.cta-box {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-box.cta-box h4 {
  font-size: 1rem;
  color: var(--light-grey);
  margin-bottom: 5px;
}

.stat-box.cta-box h3 {
  font-size: 1.5rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.stat-box.cta-box .btn {
  width: fit-content;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box.large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 300px;
  }
}

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

  .stat-box.large {
    grid-column: span 1;
  }
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  padding: 30px 0;
}

.cta-banner h3 {
  color: var(--yellow);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.cta-banner p {
  color: var(--white);
  margin-bottom: 0;
}

/* ===== Partners Section ===== */
.partners-section {
  padding: 60px 0;
  background: var(--white);
}

.partners-section h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

.partners-dots {
  text-align: center;
  margin-bottom: 40px;
}

.partners-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 4px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partners-logos img {
  height: 40px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partners-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== Membership CTA Section ===== */
.membership-section {
  background: var(--green-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.membership-content {
  color: var(--white);
  text-align: center;
}

.membership-content .logo-large {
  margin-bottom: 20px;
}

.membership-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.membership-content p {
  font-family: "Georgia", serif;
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--yellow);
}

.membership-content .btn-warning {
  padding: 12px 30px;
  font-weight: 600;
}

/* ===== Footer ===== */
footer {
  background: var(--green-dark);
  color: var(--white);
}

footer .footer-nav {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

footer .footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 15px;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

footer .footer-nav a:hover {
  color: var(--yellow);
}

footer .footer-social {
  padding: 20px 0;
}

footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 5px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

footer .footer-social a.facebook {
  background: #1877f2;
  color: white;
}
footer .footer-social a.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}
footer .footer-social a.youtube {
  background: #ff0000;
  color: white;
}
footer .footer-social a.linkedin {
  background: #0077b5;
  color: white;
}
footer .footer-social a.tiktok {
  background: #000;
  color: white;
}

footer .footer-social a:hover {
  transform: scale(1.1);
}

footer .footer-info {
  padding: 30px 0;
  text-align: center;
}

footer .footer-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

footer .footer-logo {
  margin-bottom: 20px;
}

footer .payment-methods {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

footer .payment-methods img {
  height: 30px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--yellow);
}

/* ===== Page Header ===== */
.page-header {
  /* Updated gradient to use red */
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  padding: 60px 0;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.breadcrumb-item a {
  color: var(--yellow);
  text-decoration: none;
}

/* ===== Cards ===== */
.service-card,
.course-card,
.branch-card,
.blog-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover,
.course-card:hover,
.branch-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Courses Grid ===== */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.course-card .card-body {
  padding: 24px;
}

.course-card h4 {
  line-height: 1.3;
}

.course-meta .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--yellow-dark);
  white-space: nowrap;
}

.course-desc.clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-desc.expanded {
  -webkit-line-clamp: initial;
}

.course-readmore {
  font-weight: 600;
  text-decoration: none;
}

.course-readmore:hover {
  text-decoration: underline;
}

/* ===== Icons ===== */
.service-icon,
.benefit-icon,
.course-icon,
.branch-icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--yellow);
  font-size: 1.8rem;
}

.benefit-icon {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--green-dark);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== Buttons ===== */
.btn-warning {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: var(--yellow-dark);
  border-color: var(--yellow-dark);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--dark-grey);
  font-weight: 500;
}

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

.btn-outline-green {
  color: var(--green-dark);
  border-color: var(--green-dark);
  font-weight: 500;
}

.btn-outline-green:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* ===== Text Colors ===== */
.text-green {
  color: var(--green-dark) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.bg-green {
  background-color: var(--green-dark) !important;
}

/* ===== Benefit Section ===== */
.benefit-item {
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: var(--off-white);
}

/* ===== CTA Section ===== */
.cta-section {
  /* Updated gradient to use red */
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--white);
}

/* ===== Form Styles ===== */
.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 0.2rem rgba(27, 94, 32, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: #198754;
}

/* ===== Blog Cards ===== */
.blog-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

/* ===== Pagination ===== */
.page-link {
  color: var(--green-dark);
  border: none;
  margin: 0 4px;
  border-radius: 8px !important;
}

.page-link:hover {
  background-color: var(--off-white);
  color: var(--green-dark);
}

.page-item.active .page-link {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

/* ===== Courses Page Layout ===== */
.courses-hero-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.courses-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1477414348463-c0eb7f1359b6?w=1600&h=800&fit=crop")
      center/cover no-repeat;
  z-index: -2;
}

.courses-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.75) 100%);
  z-index: -1;
}

.course-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 0;
  background: var(--off-white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.course-feature-card--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
}

.course-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-feature-content {
  padding: 2.5rem 2.5rem 2.5rem 2.75rem;
}

.course-feature-content ul {
  padding-left: 1.2rem;
}

.course-feature-content ul li {
  margin-bottom: 0.25rem;
}

.course-table-wrapper table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  table-layout: fixed;
}

.course-table-wrapper thead th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.course-table-wrapper tbody td {
  font-size: 0.9rem;
  word-wrap: break-word;
  white-space: normal;
}

@media (max-width: 575.98px) {
  .course-table-wrapper {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .course-feature-card,
  .course-feature-card--reverse {
    grid-template-columns: 1fr;
  }

  .course-feature-content {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .courses-hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .course-feature-content {
    padding: 1.75rem 1.25rem;
  }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .service-icon-box {
    width: 120px;
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .service-icons-grid {
    gap: 10px;
  }

  .service-icon-box {
    width: 100px;
    padding: 12px;
  }

  .service-icon-box h6 {
    font-size: 0.75rem;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .stat-box .stat-number {
    font-size: 2rem;
  }
}

/* ===== Animation ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  animation: fadeIn 0.5s ease forwards;
}

/* Redesigned Footer */
.site-footer {
  color: var(--white);
  background: linear-gradient(180deg, var(--green-medium) 0%, var(--green-dark) 100%);
}
.site-footer .container {
  position: relative;
  z-index: 1;
}
.site-footer .footer-cta {
  background: var(--off-white);
  color: var(--dark-grey);
  padding: 18px 0;
  border-top: 4px solid var(--green-dark);
  border-bottom: 1px solid #e9ecef;
}
.site-footer .footer-main {
  padding: 40px 0 24px;
}
.site-footer .footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  font-size: 0.85rem;
}
.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.site-footer .footer-bottom a:hover {
  color: var(--yellow);
}
.site-footer .footer-bottom .sep {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}
.site-footer .footer-heading {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--yellow);
  margin-bottom: 12px;
}
.site-footer .footer-brand .footer-logo-img {
  height: 48px;
}
.site-footer .text-muted-light {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-links li {
  margin-bottom: 8px;
}
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-links a:hover {
  color: var(--yellow);
}
.site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.site-footer .footer-contact a:hover {
  color: var(--yellow);
}
.site-footer .footer-social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.site-footer .footer-social-row a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: all 0.2s ease;
}
.site-footer .footer-social-row a:hover {
  background: var(--yellow);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.site-footer .accepted-heading {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.site-footer .payment-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer .payment-logos img {
  height: 26px;
  filter: none;
  background: var(--white);
  border-radius: 4px;
  padding: 2px 4px;
}
@media (max-width: 991px) {
  .site-footer .footer-main {
    padding: 32px 0 16px;
  }
}
@media (max-width: 575px) {
  .site-footer .footer-cta {
    text-align: center;
  }
}

.whatsapp-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  text-decoration: none;
  font-size: 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}
