/* Wrapper (for spacing like your red section) */
.footer-wrapper {
    padding: 0px 20px;
}

/* CARD */
.yellow-footer-card {
    max-width: 1300px;
    margin: auto;
    background: #F4C430; /* yellow */
    padding: 60px;
    position: relative;
    overflow: hidden;

    /* 🔥 shadow like card */
    /*box-shadow: 0 20px 0 #000;*/
}

/* Pattern overlays */
.yellow-footer-card::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: url(assets/Home-bg6.svg) no-repeat center / contain;
    top: -225px;
    left: 13%;
    opacity: 1.2;
}

.yellow-footer-card::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: url(assets/Home-bg7.svg) no-repeat center / contain;
    bottom: -193px;
    right: -138px;
    opacity: 1.2;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* TEXT */
.footer-col h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col li {
    font-size: 16px;
    line-height: 1.6;
}

.label {
    opacity: 0.7;
}

.bold {
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    /*font-weight: 600;*/
}

/* ========================= */
/* 📱 RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .yellow-footer-card {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .yellow-footer-card {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .footer-col h3 {
        font-size: 22px;
    }
}
.footer-bottom {
    text-align: center;
    padding: 25px 10px;
    color: #333;
    font-size: 16px;
}
.footer-col a {
    color: #000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

  .sticky-cta{
  position:fixed;
  bottom:-120px;   /* hidden below screen */
  left:0;
  width:100%;
  background:#f05256;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 60px;
  z-index:999;
  box-shadow:0 -2px 10px rgba(0,0,0,0.15);
  transition:bottom 0.4s ease;
}

.sticky-cta.show{
  bottom:0;   /* slide up */
}

.sticky-text{
  color:white;
  font-size:32px;
}

.sticky-btn{
  background:#fff;
  color:#e54b4b;
  padding:14px 28px;
  text-decoration:none;
  font-weight:600;
  border-radius:3px;
  box-shadow:0 4px 0 rgba(0,0,0,0.2);
  transition:all .2s ease;
}

.sticky-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 0 rgba(0,0,0,0.25);
}

.sticky-btn:active{
  transform:translateY(2px);
  box-shadow:0 2px 0 rgba(0,0,0,0.2);
}
@media (max-width: 768px){

  .sticky-cta{
    padding:12px 16px;
    justify-content:space-between;
  }

  .sticky-text{
    font-size:16px;
  }

  .sticky-btn{
    padding:8px 16px;
    font-size:12px;
  }

}


/* OPEN BUTTON */
.contact-open-btn {
    padding: 12px 30px;
    border-radius: 40px;
    background: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 0 #000;
}

/* MODAL BACKDROP */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 20px;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

/* MODAL BOX */
.modal-content {
    width: 100%;
    max-width: 520px;
    max-height: 85vh;

    background: #f8f8f8;
    border-radius: 18px;
    padding: 30px;

    overflow-y: auto;

    position: relative;

    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    animation: popup 0.3s ease;
}

/* POPUP ANIMATION */
@keyframes popup {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* TITLE */
.modal-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* FIELD */
.field {
    margin-bottom: 18px;
}

/* LABEL */
.field label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
}

/* INPUTS */
.field input,
.field textarea,
.field select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    font-size: 15px;
    background: transparent;
    outline: none;
}

/* FOCUS */
.field input:focus,
.field textarea:focus,
.field select:focus {
    border-bottom: 1px solid #000;
}

/* TEXTAREA */
.field textarea {
    min-height: 70px;
}

/* BUTTON */
.contact-btn {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    border-radius: 40px;
    background: #fff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 0 #000;
    transition: 0.2s;
}

.contact-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 4px 0 #000;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    font-size: 22px;
    cursor: pointer;
}

/* SCROLLBAR CLEAN */
.modal-content::-webkit-scrollbar {
    width: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 600px) {
    .modal-content {
        padding: 25px 18px;
    }

    .modal-content h2 {
        font-size: 20px;
    }
}