:root {
    /* Color Palette */
    --orange: #ef9920;
    --dark: #0F1729;
    --text-main: #374151;
    --text-muted: #6B7280;

    /* Backgrounds */
    --white: #ffffff;
    --bg-light: #F9FAFB;
    /* Warm Gray for Case */
    --bg-cool: #F1F5F9;
    /* Cool Gray for Impact */

    /* Borders */
    --border: #E5E7EB;

    /* Accents */
    --red-bg: #FEF2F2;
    --red-text: #EF4444;
    --green-bg: #ECFDF5;
    --green-text: #10B981;
    --blue-bg: #EFF6FF;
    --blue-text: #3B82F6;
    --orange-bg: #FFF7ED;
    --gray-bg: #F3F4F6;
}

.ta-case-study-inner-revamp * {
    box-sizing: border-box;
}

.ta-case-study-inner-revamp {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}




.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 60px auto;
}


.bg-white {
    background-color: var(--white);
}

.bg-light-gray {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.bg-cool-gray {
    background-color: var(--bg-cool);
}

.text-dark {
    color: var(--dark);
    font-weight: 700;
}

.center {
    justify-content: center;
}

.center-text {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 1. Hero Section --- */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(239.16deg, rgba(255, 255, 255, 0.05) 28.89%, rgba(255, 255, 255, 0.9) 63.56%),
        url('https://images.unsplash.com/photo-1513530534585-c7b1394c6d51');
    background-position: top;
    background-size: cover;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.06), transparent 70%);
    pointer-events: none;
}

.tag-brand {
    background: var(--orange-bg);
    color: var(--orange);
    font-size: 16px;
    padding: 6px 14px;
    border: 1px solid var(--orange);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-block;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark);
}

.hero-client {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* --- Headers & Icons --- */
.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--dark);
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.icon-circle.gray {
    background: var(--gray-bg);
}

.icon-circle.red {
    background: var(--red-bg);
}

.icon-circle.orange {
    background: var(--orange-bg);
}

.icon-circle.blue {
    background: var(--blue-bg);
}

/* --- 2. Overview --- */
.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.text-body {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.overview-grid p {
    margin-bottom: 16px;
}

.cta-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    background-color: #FBFBFB;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--orange);
}

.cta-card p {
    font-size: 1rem;
    color: var(--dark);
    margin: 12px 0 20px;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.btn-orange:hover {
    transform: translateY(-2px);
    background: #ef9920;
}

/* --- 3. The Case (Parallax) --- */
.parallax-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=2070');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 14, 19, 0.8);
    z-index: 1;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.case-feature-block {
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 60px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.case-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.text-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 30px 0;
    opacity: 0.6;
}

.text-body.small {
    font-size: 1.05rem;
    color: var(--text-muted);
}


@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        padding: 80px 0;
    }

    .case-feature-block {
        padding: 30px;
    }

    .text-highlight {
        font-size: 1.25rem;
    }
}

/* --- 4 & 5. Challenge & Solution --- */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease-out;
    margin-bottom: 16px;
}

.image-wrapper img {
    width: 100%;
    border-radius: 16px;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-in;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.img-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.list-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
}

.list-card p {
    color: var(--dark);
    font-size: 1.05rem;
}

/* Interactive Hover States */
.list-card.red-hover:hover {
    border-color: var(--red-text);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.1);
    transform: translateX(5px);
}

.list-card.green-hover:hover {
    border-color: var(--green-text);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
}

.icon-badge.red {
    background: var(--red-bg);
    color: var(--red-text);
}

.icon-badge.green {
    background: var(--green-bg);
    color: var(--green-text);
}

/* --- 6. Impact --- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-item-right {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.stat-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.4;
}

/* --- 7. Testimonial --- */
.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.quote-mark {
    font-size: 10rem;
    color: var(--border);
    position: absolute;
    top: -80px;
    left: -60px;
    opacity: 0.4;
    font-family: serif;
    pointer-events: none;
}

blockquote {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.author-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.avatar {
    width: 64px;
    height: 64px;
    background: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.author-info strong {
    display: block;
    color: var(--dark);
    font-size: 1.2rem;
    text-align: left;
}

.author-info span {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: left;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 41, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}


.modal-card {
    background: var(--white);
    width: 100%;
    max-width: 540px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    animation: slideUp 0.3s forwards 0.1s;
}

.modal-header {
    text-align: center;
    border: none;
    flex-direction: column;
    padding: 0;
}



.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-header p {
    font-size: 1rem;
    color: var(--text-muted);
}


.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--dark);
}


.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(254, 123, 2, 0.1);
}


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

.parallax-contact {
  position: relative;
  padding: 120px 0;
  background-image:
    linear-gradient(
      120deg,
      rgb(10, 15, 30, 0.9),
      rgba(10, 15, 30, 0.8)
    ),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* ===========================
   CONTACT LAYOUT
=========================== */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  color: #ffffff;
}

/* LEFT CONTENT */

.contact-info .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}

.contact-info h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info h2 span {
  color: #ef9920;
}

.contact-info p {
  max-width: 420px;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* ===========================
   GLASS CONTACT CARDS
=========================== */

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.contact-glass-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-glass-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 89, 0.5);
}

.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.74);
  color: #ff7a59;
}

.card-text span {
  font-size: 13px;
  opacity: 0.75;
}

.card-text strong {
  display: block;
  font-size: 15px;
  margin-top: 2px;
}

.arrow {
  margin-left: auto;
  font-size: 18px;
  color: #ef9920;
  opacity: 0.8;
}


/* ===========================
   CONTACT FORM
=========================== */

.contact-form {
  background: #ffffff;
  color: #111111;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.contact-form h3 {
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: #777;
  margin-bottom: 24px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef9920, #ef9920);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 122, 89, 0.4);
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}


.contact-form select {
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 44px; /* space for arrow */
  background-color: #fff;
}


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
  .container {
    padding: 0 24px;
  }

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

  .contact-info h2 {
    font-size: 34px;
  }

  .parallax-contact {
    background-attachment: scroll;
  }
}


@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}


/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .overview-grid,
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

    .hero-title {
        font-size: 2.75rem;
    }

    blockquote {
        font-size: 1.5rem;
    }
}


@media (max-width: 480px) {
    .modal-card {
        padding: 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }
}


/* Header */


/* Header Base */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Main Container */
/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "poppins", Helvetica, sans-serif;
}

/* LINKS */
.navbar  a,
.dropbtn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #1f2a44;
  cursor: pointer;
  padding: 8px 0;
  font-family: "poppins", Helvetica, sans-serif;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
  z-index: 1000;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 10px 18px;
  color: #1f2a44;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #f5f7fa;
}

/* SHOW DROPDOWN */
.dropdown.active > .dropdown-content {
  display: block;
}

/* SUB MENU */
.has-sub {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
}

.has-sub.active > .sub-menu {
  display: block;
}

/* CARET SPACING */
.dropbtn i,
.has-sub i {
  margin-left: 6px;
  font-size: 12px;
}

/* CTA */
.cta-wrapper {
  margin-left: 24px;
}

.cta-btn {
  background: linear-gradient(90deg, #ff8a00, #ef9920);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 24px;
  cursor: pointer;
}

.cta-btn span {
  margin-left: 6px;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 520px;
  background: #fff;
  display: none;
  grid-template-columns: 1fr auto 1fr;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 1000;
}

/* ACTIVE STATE */
.dropdown.active .mega-menu {
  display: grid;
}

/* COLUMNS */
.menu-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.menu-column a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
}

/* .menu-column a:hover {
  color: #ff7a18;
} */

/* DIVIDER */
.menu-divider {
  width: 1px;
  background: #e6e6e6;
  margin: 0 20px;
}


/* FOOTER */
.menu-footer {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 18px;
}

.view-all-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  background: #ef9920;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* BTN*/
/* From Uiverse.io by adamgiebl */ 
.cssbuttons-io-button {
  background: #ef9920;
  color: white;
  font-family: "poppins", Helvetica, sans-serif;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #ef9920;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #ef9920;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #ef9920;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

/*end BTN*/

/* Footer */

/* footer*/
/* ---------- GLOBAL CONTAINER ---------- */
/* ---------- FOOTER BASE ---------- */
.footer {
  background: #0b1220;
  color: #cbd5e1;
  font-family: "poppins", Helvetica, sans-serif;
}

.footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: #ef9920;
}

/* ---------- FOOTER TOP ---------- */
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding: 70px 0 50px;
}

/* ---------- BRAND SECTION ---------- */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand img {
  max-width: 140px;
}

.footer-brand h4 {
  font-size: 18px;
  color: #fff;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 420px;
}

/* ---------- SOCIAL ICONS ---------- */
.social {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.social img {
  width: 56px;
  height: 56px;
  padding: 8px;
  background: #111827;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.social img:hover {
  background: #ff7a45;
}

/* ---------- BADGES ---------- */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.badges img {
  height: 36px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ---------- FOOTER LINKS ---------- */
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

/* ---------- FOOTER BOTTOM ---------- */
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 13px;
}

.legal {
  display: flex;
  gap: 18px;
}