
    @import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,500;1,400&family=JetBrains+Mono:wght@400;500&family=Poppins:wght@400;500;600&display=swap');

body{
    margin:0;
    font-family:Poppins,sans-serif;
    background:#f5f7fb;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== Hero / Badge ===== */
.feedback-hero{
    background:#f8fafc;
    padding:70px 0 40px;
    text-align:center;
}

.badge.bg-primary,
.welcome-badge{
    background:#c97a3d !important;
}

.welcome-badge{
    display:inline-block;
    background:#c97a3d;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.feedback-hero h2{
    font-size:2.4rem;
    font-weight:700;
    color:#212529;
    margin:20px 0 12px;
}

.feedback-hero p{
    font-size:17px;
    color:#6c757d;
    max-width:650px;
    margin:auto;
    line-height:1.8;
}

/* ===== Form Card ===== */
.feedback-section{
    padding:30px 0 70px;
}

.feedback-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #f1f1f1;
    max-width:720px;
    margin:0 auto;
}

.feedback-card label{
    font-weight:600;
    color:#212529;
    margin-bottom:8px;
    display:block;
    font-size:14px;
}

.feedback-card .form-control,
.feedback-card .form-select{
    border-radius:10px;
    border:1px solid #e2e2e2;
    padding:12px 14px;
    font-size:15px;
    margin-bottom:22px;
}

.feedback-card .form-control:focus,
.feedback-card .form-select:focus{
    border-color:#c97a3d;
    box-shadow:0 0 0 .2rem rgba(201,122,61,.18);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

@media(max-width:600px){
    .form-row{
        grid-template-columns:1fr;
    }
    .feedback-card{
        padding:28px 22px;
    }
}

/* ===== Star Rating ===== */
.rating-group{
    margin-bottom:26px;
}

.star-rating{
    display:flex;
    flex-direction:row-reverse;
    justify-content:flex-end;
    gap:6px;
    font-size:34px;
}

.star-rating input{
    display:none;
}

.star-rating label{
    color:#dcdcdc;
    cursor:pointer;
    transition:.2s;
    margin:0;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label{
    color:#c97a3d;
}

/* ===== Submit Button ===== */
.submit-btn{
    display:block;
    width:100%;
    text-align:center;
    background:#c97a3d;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:10px;
    font-weight:600;
    font-size:16px;
    transition:.3s;
    cursor:pointer;
}

.submit-btn:hover{
    background:#b66d33;
    color:#fff;
}

/* ===== Thank you state ===== */
.thank-you{
    display:none;
    text-align:center;
    padding:40px 10px;
}

.thank-you i{
    font-size:56px;
    color:#c97a3d;
    margin-bottom:18px;
}

.thank-you h3{
    font-weight:700;
    color:#212529;
    margin-bottom:10px;
}

.thank-you p{
    color:#6c757d;
}

/* ===== Why feedback matters ===== */
.why-feedback{
    padding:20px 0 80px;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    display:inline-block;
    background:#c97a3d;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:32px;
    color:#222;
    margin-bottom:10px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.why-card{
    background:#fff;
    border-radius:18px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(201,122,61,.18);
}

.icon{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    background:#f8ede4;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    color:#c97a3d;
    transition:.3s;
}

.why-card:hover .icon{
    background:#c97a3d;
    color:#fff;
    transform:rotate(10deg);
}

.why-card h3{
    margin-bottom:10px;
    color:#222;
    font-size:18px;
}

.why-card p{
    color:#666;
    line-height:1.6;
    font-size:14px;
}

.section-title::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#c97a3d;
    margin:15px auto 0;
    border-radius:5px;
}
/* ---------- FOOTER ---------- */
.site-footer{
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 70px 48px 0;
  font-family: 'Poppins', sans-serif;
}
 
.footer-grid{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
 
.footer-brand .brand{
  margin-bottom: 18px;
}
 
.footer-brand p{
  color: var(--paper-dim);
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 340px;
  margin-bottom: 22px;
}
 
.footer-address{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
 
.footer-address i{
  color: var(--copper);
  margin-top: 3px;
  flex-shrink: 0;
}
 
.footer-col h4{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 20px;
}
 
.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.footer-contact a,
.footer-contact .owner-name{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-dim);
  font-size: 14.5px;
  transition: color .25s ease;
}
 
.footer-contact a:hover{
  color: var(--copper);
}
 
.footer-contact i{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,122,61,.12);
  border: 1px solid rgba(201,122,61,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-size: 14px;
  flex-shrink: 0;
}
 
.footer-social h4{
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 20px;
}
.brand-name {
    font-family: Oswald, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--paper);
}
.social-icons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
 
.social-icons a{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(237,232,225,.06);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-size: 17px;
  transition: .3s;
}
 
.social-icons a:hover{
  background: var(--copper);
  color: var(--ink-black);
  border-color: var(--copper);
  transform: translateY(-3px);
}
 
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
}

a {
    text-decoration: auto !important;
}
 
.footer-bottom .copyright{
  color: var(--paper-dim);
  font-size: 13px;
}
 
.footer-bottom .credit{
  color: var(--paper-dim);
  font-size: 12.5px;
  text-align: right;
}
 
.footer-bottom .credit a{
  color: var(--copper);
  transition: color .25s ease;
}
 
.footer-bottom .credit a:hover{
  color: var(--copper-bright);
}
 
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .credit{
    text-align: center;
  }
}