
.footer {
    background: linear-gradient(135deg, #065f46, #047857);
    color: #e5e7eb;
    padding: 50px 20px 20px;
    font-size: 14px;
}

/* CONTAINER */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo img {
    width: 90px;
}

.footer-logo span {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}

/* HEADINGS */
.footer-col h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
    position: relative;
}

.footer-col h4::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #22c55e;
    display: block;
    margin-top: 5px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #d1fae5;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #22c55e;
    padding-left: 5px;
}

/* CONTACT TEXT */
.footer-col p {
    margin-bottom: 8px;
}

/* SOCIAL ICONS */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 8px;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #22c55e;
    transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-bottom img {
    vertical-align: middle;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media(max-width: 480px){
    .footer-container {
        grid-template-columns: 1fr;
    }
}



  #ins24-testi-root {
    --ins24-green: #198754;
    --ins24-green-dark: #0d6e40;
    --ins24-green-light: #e8f5ed;
    --ins24-green-pale: #f0faf4;
    --ins24-text-dark: #1a3c28;
    --ins24-text-mid: #3d5a47;
    --ins24-text-muted: #7a9e8a;
    --ins24-gold: #f5a623;
    font-family: 'Segoe UI', Arial, sans-serif;
    box-sizing: border-box;
  }
  #ins24-testi-root *, #ins24-testi-root *::before, #ins24-testi-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  #ins24-testi-wrap {
    background: linear-gradient(155deg, #f0faf4 0%, #e8f5ed 50%, #f7fbf0 100%);
    padding: 64px 24px 60px;
    position: relative;
    overflow: hidden;
  }
  #ins24-testi-wrap::before {
    content: '';
    position: absolute;
    top: -90px; right: -90px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(25,135,84,0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  #ins24-testi-wrap::after {
    content: '';
    position: absolute;
    bottom: -70px; left: -70px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(25,135,84,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  #ins24-testi-header {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
  }
  #ins24-testi-badge {
    display: inline-block;
    background: rgba(25,135,84,0.1);
    color: var(--ins24-green-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(25,135,84,0.2);
    margin-bottom: 14px;
  }
  #ins24-testi-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--ins24-text-dark);
    line-height: 1.2;
    margin-bottom: 10px;
  }
  #ins24-testi-title span { color: var(--ins24-green); }
  #ins24-testi-sub {
    font-size: 14px;
    color: var(--ins24-text-muted);
    font-weight: 400;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
  }
  #ins24-carousel-outer {
    position: relative;
    max-width: 1020px;
    margin: 0 auto 40px;
    z-index: 1;
  }
  #ins24-carousel-viewport {
    overflow: hidden;
    border-radius: 20px;
  }
  #ins24-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .ins24-slide {
    flex: 0 0 100%;
    padding: 4px 8px;
  }
  .ins24-cards-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 700px) {
    .ins24-cards-inner { grid-template-columns: 1fr; }
  }
  @media (min-width: 701px) and (max-width: 900px) {
    .ins24-cards-inner { grid-template-columns: repeat(2, 1fr); }
  }
  .ins24-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px 24px;
    border: 1px solid rgba(25,135,84,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .ins24-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(25,135,84,0.13);
  }
  .ins24-card.ins24-featured {
    background: var(--ins24-green);
    border-color: var(--ins24-green);
  }
  .ins24-quote-mark {
    position: absolute;
    top: 18px; right: 22px;
    font-size: 52px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(25,135,84,0.13);
    font-style: normal;
    pointer-events: none;
  }
  .ins24-card.ins24-featured .ins24-quote-mark { color: rgba(255,255,255,0.13); }
  .ins24-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
  }
  .ins24-star {
    width: 13px; height: 13px;
    background: #f5a623;
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
    display: inline-block;
    flex-shrink: 0;
  }
  .ins24-card.ins24-featured .ins24-star { background: #ffd37a; }
  .ins24-review {
    font-size: 13.5px;
    color: var(--ins24-text-mid);
    line-height: 1.75;
    margin-bottom: 22px;
    font-weight: 400;
  }
  .ins24-card.ins24-featured .ins24-review { color: rgba(255,255,255,0.87); }
  .ins24-reviewer {
    display: flex;
    align-items: center;
    gap: 11px;
    border-top: 1px solid rgba(25,135,84,0.08);
    padding-top: 18px;
  }
  .ins24-card.ins24-featured .ins24-reviewer { border-top-color: rgba(255,255,255,0.15); }
  .ins24-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 15px;
    flex-shrink: 0;
    color: #fff;
  }
  .ins24-rname {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ins24-text-dark);
    margin-bottom: 2px;
  }
  .ins24-card.ins24-featured .ins24-rname { color: #fff; }
  .ins24-rloc {
    font-size: 11.5px;
    color: var(--ins24-text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .ins24-card.ins24-featured .ins24-rloc { color: rgba(255,255,255,0.6); }
  .ins24-locdot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ins24-green);
    display: inline-block;
    flex-shrink: 0;
  }
  .ins24-card.ins24-featured .ins24-locdot { background: rgba(255,255,255,0.55); }
  #ins24-btn-prev, #ins24-btn-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(25,135,84,0.2);
    color: var(--ins24-green);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
    line-height: 1;
    outline: none;
  }
  #ins24-btn-prev:hover, #ins24-btn-next:hover {
    background: var(--ins24-green);
    color: #fff;
    border-color: var(--ins24-green);
    box-shadow: 0 6px 20px rgba(25,135,84,0.25);
  }
  #ins24-btn-prev { left: -22px; }
  #ins24-btn-next { right: -22px; }
  #ins24-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 44px;
  }
  .ins24-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(25,135,84,0.22);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
    outline: none;
  }
  .ins24-dot.ins24-active {
    background: var(--ins24-green);
    width: 24px;
    border-radius: 4px;
  }
  #ins24-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .ins24-stat {
    text-align: center;
    padding: 0 40px;
  }
  .ins24-stat-num {
    font-size: 30px;
    font-weight: 700;
    color: var(--ins24-green);
    display: block;
    line-height: 1.1;
  }
  .ins24-stat-label {
    font-size: 11px;
    color: var(--ins24-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
  }
  .ins24-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(25,135,84,0.15);
    flex-shrink: 0;
  }


.promo-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid #4caf50;
}
.promo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}
.promo-icon {
    width: 50px;
    height: 50px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}
.promo-label {
    font-weight: 600;
    color: #2e7d32;
    font-size: 14px;
    margin: 0;
}
/* Icon specific styles */
.safe .promo-icon { background: #2196f3; }
.safe .promo-label { color: #1976d2; }
.expert .promo-icon { background: #ff9800; }
.expert .promo-label { color: #f57c00; }
.best .promo-icon { background: #9c27b0; }
.best .promo-label { color: #7b1fa2; }
.payment .promo-icon { background: #4caf50; }
.payment .promo-label { color: #388e3c; }
.assured .promo-icon { background: #f44336; }
.assured .promo-label { color: #d32f2f; }


  .overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.45); z-index: 9999;
    align-items: center; justify-content: center;
  }
  .overlay.active { display: flex; }

  .modal {
    display: none; background: #fff; border-radius: 20px;
    overflow: hidden; width: 680px; max-width: 95vw;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: popIn 0.3s ease; position: relative;
  }
  .modal.active { display: flex; }

  @keyframes popIn {
    from { opacity: 0; transform: scale(0.94) translateY(14px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
  }

  .img-panel {
    width: 240px; min-width: 240px; background: #c8e6d4;
    display: flex; align-items: center; justify-content: center;
  }
  .img-placeholder { font-size: 5rem; }

  .form-panel {
    flex: 1; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 16px;
  }

  .close {
    position: absolute; top: 12px; right: 16px;
    font-size: 1.3rem; cursor: pointer;
    background: none; border: none; color: #888;
  }

  .modal-title { font-size: 1.5rem; font-weight: 700; color: #1a2e22; }
  .modal-sub   { font-size: 0.88rem; color: #6b8878; }

  .modal input[type="tel"] {
    width: 100%; padding: 12px 15px;
    border: 1.5px solid #c8e6d4; border-radius: 10px;
    font-size: 0.95rem; outline: none; background: #f4fbf7;
  }
  .modal input[type="tel"]:focus {
    border-color: #2e7d4f;
    box-shadow: 0 0 0 3px rgba(46,125,79,0.12);
  }

  .action-btn {
    width: 100%; background: #2e7d4f; color: #fff;
    border: none; border-radius: 10px; padding: 13px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    letter-spacing: 0.05em;
  }
  .action-btn:hover { background: #256840; }

  .otp-row { display: flex; gap: 10px; justify-content: center; }
  .otp-box {
    width: 52px; height: 56px; border: 1.5px solid #c8e6d4;
    border-radius: 10px; text-align: center;
    font-size: 1.3rem; font-weight: 700; background: #f4fbf7; outline: none;
  }
  .otp-box:focus { border-color: #2e7d4f; box-shadow: 0 0 0 3px rgba(46,125,79,0.12); }

  .resend { font-size: 0.83rem; color: #6b8878; text-align: center; cursor: pointer; }
  .resend a { color: #2e7d4f; font-weight: 600; }

  .user-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
  .user-card {
    border: 1.5px solid #c8e6d4; border-radius: 12px;
    padding: 16px 8px; text-align: center; cursor: pointer; background: #f4fbf7;
    transition: border-color 0.2s, background 0.2s;
  }
  .user-card:hover, .user-card.selected { border-color: #2e7d4f; background: #e8f5ee; }
  .user-card .icon { font-size: 1.8rem; margin-bottom: 5px; }
  .user-card .name { font-size: 0.8rem; font-weight: 600; color: #1a3a28; }

  @media (max-width: 560px) { .img-panel { display: none; } }


