*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f5f0;
    color:#222;
}

/* NAVBAR */

.custom-navbar{
    background:#fff;
    padding:14px 0;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.navbar-brand img{
    height:55px;
}

.nav-link{
    color:#222 !important;
    margin-left:22px;
    font-weight:600;
    transition:.3s;
    position:relative;
}

.nav-link:hover{
    color:#b10000 !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#b10000;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* FOOTER */

.footer-section{
    background:#1a0000;
    color:#fff;
    padding:70px 0 20px;
    position:relative;
}

.footer-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:linear-gradient(to right,
    transparent,
    #d4af37,
    transparent);
}

.footer-logo{
    color:#d4af37;
    margin:0;              /* 👈 important */
    font-size:26px;
    white-space:nowrap;
    line-height:1.1;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#d4af37;
    padding-left:5px;
}

.footer-section p{
    color:#ddd;
    line-height:1.8;
}

.footer-section a{
    color:#ddd;
    text-decoration:none;
}

/* Main */

main{
    min-height:100vh;
    padding-top:90px;
}

/* HERO SECTION */

.hero-section{
    background:linear-gradient(rgba(120,0,0,.88),
    rgba(80,0,0,.92)),
    url('/images/banner-bg.jpg');

    background-size:cover;
    background-position:center;

    padding:120px 0 90px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:
    repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.05) 2px,
    transparent 2px,
    transparent 20px
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
}

.hero-badge{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #d4af37;
    border-radius:30px;
    font-size:13px;
    margin-bottom:20px;
    color:#ffd86b;
    font-weight:600;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#d4af37;
}

.hero-content p{
    font-size:18px;
    color:#f5f5f5;
    max-width:700px;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.btn-gold{
    background:#d4af37;
    color:#111;
    padding:14px 30px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
    border:2px solid #d4af37;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.btn-gold:hover{
    background:#b88d1f;
    color:#fff;
    border-color:#b88d1f;
}

.btn-outline-light{
    border:2px solid #fff;
    color:#fff;
    padding:14px 30px;
    border-radius:10px;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.btn-outline-light:hover{
    background:#fff;
    color:#111;
}

.hero-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.feature-box{
    border:1px solid rgba(255,255,255,.2);
    padding:18px;
    border-radius:12px;
    text-align:center;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(5px);
}

/* FEATURED SECTION */

.featured-section{
    padding:80px 0;
}

.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.section-header small{
    color:#b10000;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:5px;
}

.section-header h2{
    font-size:48px;
    font-weight:700;
}

.section-header a{
    color:#b10000;
    text-decoration:none;
    font-weight:600;
}

/* FABRIC CARD */

.fabric-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    border:1px solid #f1e6d6;
}

.fabric-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* IMAGE AREA */
.fabric-top{
    height:170px;
    background:linear-gradient(135deg,#fff3e6,#ffe9d6);
    position:relative;
    overflow:hidden;
}

.fabric-top::after{
    content:"RT";
    position:absolute;
    right:15px;
    bottom:10px;
    font-size:40px;
    color:rgba(200,0,0,.15);
    font-weight:700;
}

/* TAG */
.fabric-top span{
    position:absolute;
    top:12px;
    left:12px;
    background:#d4af37;
    color:#111;
    padding:5px 12px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
}

/* BODY */
.fabric-body{
    padding:18px;
}

.fabric-body h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.fabric-body p{
    font-size:13px;
    color:#666;
    margin-bottom:15px;
}

/* INFO ROWS */
.fabric-info div{
    display:flex;
    justify-content:space-between;
    padding:6px 0;
    font-size:13px;
    border-bottom:1px solid #f3f3f3;
}

.fabric-info strong{
    color:#333;
}

/* RATE BOX */
.rate-btn{
    width:100%;
    background:#fff7e6;
    border:1px dashed #d4af37;
    color:#a06b00;
    padding:10px;
    border-radius:10px;
    font-size:12px;
    font-weight:600;
    margin:12px 0;
}

/* BUTTONS */
.card-buttons{
    display:flex;
    gap:10px;
}

.btn-wa, .btn-call{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:9px;
    border-radius:8px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    color:#fff;
    transition:.3s;
}

/* WhatsApp */
.btn-wa{
    background:#25d366;
}

.btn-wa:hover{
    background:#1faa52;
}

/* Call */
.btn-call{
    background:#e53935;
}

.btn-call:hover{
    background:#c62828;
}

/* ICON FIX */
.card-buttons i{
    font-size:14px;
}

/* CTA */

.bottom-cta{
    margin-top:50px;
    background:linear-gradient(to right,#a10000,#d91f1f);
    padding:35px;
    border-radius:18px;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.bottom-cta h3{
    font-size:38px;
    margin-bottom:10px;
}

.bottom-cta a{
    background:#d4af37;
    color:#111;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-callnow{
    background:#c60000;
    color:#fff !important;
    padding:10px 18px;
    border-radius:8px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.btn-callnow:hover{
    background:#ff0000;
    transform:scale(1.05);
}

.featured-section .row{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.featured-section .col-lg-3{
    flex:1 1 calc(25% - 18px);
}

.brand-text{
    font-size:20px;
    font-weight:600;
    color:#111;
}

.brand-text b{
    color:#b10000;
    font-weight:700;
}

.footer-tagline{
    color:#d4af37;
    font-weight:600;
    margin-bottom:10px;
}

.footer-desc{
    color:#ccc;
    font-size:14px;
    line-height:1.6;
}

.footer-col h5{
    color:#d4af37;
    margin-bottom:15px;
    font-size:14px;
    letter-spacing:1px;
}

.footer-col p{
    color:#ccc;
    font-size:14px;
    margin-bottom:8px;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:15px;
    border-top:1px solid rgba(255,255,255,0.1);
    font-size:13px;
    color:#aaa;
}

/* =========================
   FIXED FOOTER SYSTEM
========================= */

.footer-section .container{
    max-width:1200px;
}

.footer-section .row{
    margin:0;
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:space-between;
    align-items:flex-start;
}

.footer-section .col-lg-4{
    flex:0 0 32%;
    max-width:32%;
}

/* LOGO FIX */
.footer-logo-wrap{
    display:flex;
    align-items:center;
    gap:0;
    margin-bottom:12px;
}

.footer-brand{
    margin-left:-8px;
}

.footer-logo-wrap img{
    height:65px;
}

/* PREVENT STRETCH ISSUE */
.footer-section{
    overflow:hidden;
}

.footer-title-gold{
    color:#d4af37 !important;
    font-weight:700;
}

/* ================= FOOTER FIX PATCH ================= */

/* logo + tagline alignment */
.footer-brand{
    display:flex;
    flex-direction:column;
}

.footer-tagline{
    color:#d4af37;
    font-size:13px;
    margin-top:2px;
}

/* gold headings */
.footer-title-gold{
    color:#d4af37 !important;
    font-weight:700;
    margin-bottom:10px;
}

/* make quick links + visit same row */
.footer-flex{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    align-items:flex-start;
}

/* visit box alignment */
.footer-visit{
    min-width:180px;
}

/* remove broken bottom spacing issue */
.footer-section p{
    margin-bottom:8px;
}

/* prevent footer break issue */
.footer-section .row{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

/* ================= FINAL FOOTER ALIGN FIX ================= */

/* REMOVE EXTRA GAP BETWEEN LOGO + TAGLINE */
.footer-brand h3{
    margin-bottom:2px !important;
}

.footer-tagline{
    margin-top:0 !important;
    margin-bottom:8px !important;
    line-height:1.2;
}

/* FORCE QUICK LINKS + VISIT IN SAME LINE */
.footer-flex{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:nowrap;   /* 👈 THIS IS KEY */
    gap:30px;
}

/* LEFT & RIGHT STRICT WIDTH CONTROL */
.footer-flex ul{
    flex:1;
    min-width:140px;
}

.footer-visit{
    flex:1;
    min-width:200px;
}

/* ================= FINAL VISIT ALIGN FIX ================= */

/* Make Quick Links + Visit behave as strict 2-column row */
.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;   /* IMPORTANT: top alignment */
    flex-wrap: nowrap;         /* prevent breaking into next line */
    gap: 40px;
}

/* LEFT SIDE (Quick Links) */
.footer-flex ul {
    flex: 1;
    min-width: 140px;
}

/* RIGHT SIDE (Visit Us) */
.footer-visit {
    flex: 1;
    min-width: 200px;
    margin-top: 0 !important;   /* REMOVE OLD PUSH */
    align-self: flex-start;     /* force top alignment */
}

/* Visit heading fix */
.footer-visit h6 {
    margin-top: 0;
    margin-bottom: 10px;
}

/* MOBILE RESPONSIVE FIX */
@media(max-width:768px){
    .footer-flex{
        flex-wrap:wrap; /* mobile me stack allow */
    }
}