@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;
}

.welcome-badge,
.badge.bg-primary{
    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;
}

.section-title::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:#c97a3d;
    margin:15px auto 0;
    border-radius:5px;
}

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

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

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

/* ===== Story Section ===== */
.story-section{
    padding:70px 0;
}

.story-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.story-img{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.story-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

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

.story-text h2{
    font-size:32px;
    font-weight:700;
    color:#212529;
    margin-bottom:18px;
}

.story-text p{
    color:#666;
    line-height:1.9;
    font-size:15.5px;
    margin-bottom:16px;
}

@media(max-width:768px){
    .story-grid{
        grid-template-columns:1fr;
    }
    .story-img{
        order:-1;
    }
}

/* ===== Stats ===== */
.stats-section{
    background:#c97a3d;
    padding:50px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
    text-align:center;
}

.stat-item h3{
    font-size:38px;
    font-weight:700;
    color:#fff;
    margin-bottom:6px;
}

.stat-item p{
    color:rgba(255,255,255,.85);
    font-size:15px;
    font-weight:500;
    margin:0;
}

/* ===== Mission / Vision ===== */
.mv-section{
    padding:80px 0;
}

.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:36px;
    color:#222;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

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

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

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

.mv-card .icon{
    width:60px;
    height:60px;
    background:#f8ede4;
    color:#c97a3d;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    margin-bottom:18px;
    transition:.3s;
}

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

.mv-card h3{
    font-weight:700;
    color:#212529;
    margin-bottom:12px;
    font-size:20px;
}

.mv-card p{
    color:#666;
    line-height:1.7;
    font-size:15px;
}

/* ===== Why Us (reused style) ===== */
.why-us-section{
    padding:80px 0;
    background:#f8fafc;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,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:70px;
    height:70px;
    margin:0 auto 20px;
    background:#f8ede4;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#c97a3d;
    transition:.3s;
}

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

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

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

/* ===== CTA ===== */
.about-cta{
    padding:70px 0;
    text-align:center;
}

.cta-box{
    background:#fff;
    border-radius:22px;
    padding:55px 30px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid #f1f1f1;
    max-width:800px;
    margin:auto;
}

.cta-box h2{
    font-weight:700;
    color:#212529;
    margin-bottom:12px;
    font-size:28px;
}

.cta-box p{
    color:#666;
    margin-bottom:26px;
}

.cta-btn{
    display:inline-block;
    background:#c97a3d;
    color:#fff;
    text-decoration:none;
    padding:14px 34px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

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

/* ---------- FOOTER ---------- */
.site-footer{
  /* Fix: these variables were never defined anywhere before,
     so text/border/icon colors were invalid and defaulted to
     black-on-black (invisible). Defining them here fixes it. */
  --ink-black: #0d0d0d;
  --line: rgba(237,232,225,.12);
  --paper: #f5f0e8;
  --paper-dim: #b8b2a8;
  --copper: #c97a3d;
  --copper-bright: #e08f4f;

  background: var(--ink-black);
  border-top: 1px solid var(--line);
  padding: 70px 48px 0;
  font-family: 'Poppins', sans-serif;
  color: var(--paper);
}

.footer-grid{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .brand{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}


.brand-name{
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--paper);
}

.brand-name span{
  color: var(--copper);
}

.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;
  text-decoration: none;
  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;
}

.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 90px 22px 0;   /* extra right padding clears the floating call button */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
}

.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);
  text-decoration: none;
  transition: color .25s ease;
}

.footer-bottom .credit a:hover{
  color: var(--copper-bright);
}

a {
    text-decoration: auto !important;
}

@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom{
    flex-direction: column;
    text-align: center;
    padding-right: 0;   /* stack layout, button no longer overlaps */
    padding-bottom: 90px; /* room for floating button below text */
  }
  .footer-bottom .credit{
    text-align: center;
  }
}
.site-footer,
.site-footer *{
  opacity: 1 !important;
}