*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#ffffff;
     
   
}

/* BASE */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
    opacity:0;
    transition:all 0.8s ease;
}

/* DEFAULT (BOTTOM TO TOP) */
.reveal{
    transform:translateY(60px);
}

/* LEFT */
.reveal-left{
    transform:translateX(-80px);
}

/* RIGHT */
.reveal-right{
    transform:translateX(80px);
}

/* ZOOM */
.reveal-zoom{
    transform:scale(0.8);
}

/* ACTIVE (WHEN VISIBLE) */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-zoom.active{
    opacity:1;
    transform:translate(0,0) scale(1);
}

/* ===== COLORS ===== */
:root{
    --gold1:#c9a227;
    --gold2:#f5d76e;
    --gold3:#fff3b0;
    --red1:#f31818;
    --red2:#fe3a3af3;
    --dark:#1a1a1a; /* dark text color */
    --secondary:#555555; /* secondary text */
    --section-bg:#fffdf0; /* light cream background */
}

/* ================= FOOTER ================= */

.footer {
    background: #050505;
    color: #fff;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

/* SUBTLE GOLD GLOW */
.footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,215,110,0.08), transparent);
    top: -150px;
    right: -100px;
    z-index: 0;
}

/* CONTAINER GRID */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    padding: 0 6%;
    position: relative;
    z-index: 1;
}

/* ================= LOGO ================= */
.footer-logo {
    height: 70px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px var(--red2));
}

/* ================= TEXT ================= */
.footer-col p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= HEADINGS ================= */
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--red2);
    position: relative;
}

/* underline effect */
.footer-col h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: var(--red2);
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* ================= LINKS ================= */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--red2);
    transform: translateX(5px);
}

/* ================= CONTACT INFO ================= */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
    font-size: 14px;
}

.footer-contact i {
    color: var(--red2);
    font-size: 16px;
    min-width: 20px;
}

/* clickable links */
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a:hover {
    color: var(--gold2);
}

/* ================= SOCIAL ICONS ================= */
.footer-socials {
    margin-top: 20px;
    margin-left:1px;
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(237, 20, 20, 0.905);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */
.footer-socials a:hover {
    background: linear-gradient(90deg,var(--red1),var(--red2));
    color: #ffffff;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 0 15px rgba(245,215,110,0.6);
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
    text-align: center;
    padding: 20px 10px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.171);
    font-size: 14px;
    color: #aaa;
}
.qiro-link {
    color: #ff0000; /* golden color */
    text-decoration: none;
    font-weight: bold;
}

.qiro-link:hover {
    text-decoration: underline;
}
  .footer::after{
        content: "";
        position: absolute;
        inset: 0;
        margin-top: 20px;

        background: url("../images/Classic_Logo-removebg.png") center no-repeat;
        background-size: 800px;

        opacity: 0.1;
        pointer-events: none;
        z-index: 0;
    }

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width: 992px){
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}
/* ================= MOBILE (CENTERED CLEAN) ================= */
@media(max-width:600px){

    .footer{
        padding: 60px 0 25px;
        text-align: left; /* ✅ LEFT */
    }

    .footer-container{
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 25px; /* ✅ SPACE FROM LEFT */
        text-align: left;
    }

    /* LOGO */
    .footer-logo{
        height: 60px;
        margin-bottom: 10px;
    }

    /* TEXT */
    .footer-col p{
        font-size: 14px;
        line-height: 1.6;
        color: #aaa;
        margin: 0;
    }

    /* HEADINGS */
    .footer-col h3{
        font-size: 20px;
        margin: 25px 0 15px;
        letter-spacing: 0.5px;
        text-align: left;
    }

    .footer-col h3::after{
        left: 0;               /* ✅ move underline left */
        transform: none;
        width: 30px;
        height: 2px;
    }

    /* LINKS */
    .footer-col ul{
        padding: 0;
    }

    .footer-col ul li{
        margin-bottom: 8px;
    }

    .footer-col ul li a{
        font-size: 16px;
        display: inline-block;
    }

    /* CONTACT */
    .footer-contact li{
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px;

        font-size: 15px;
        color: #ccc;

        padding: 8px 0;
    }

    .footer-contact i{
        font-size: 14px;
        width: 28px;
        height: 28px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);

        color: var(--red2);
    }

    .footer-contact a{
        color: #ccc;
        text-decoration: none;
        text-align: left;
    }

    /* SOCIAL */
    .footer-socials{
        justify-content: flex-start; /* ✅ LEFT */
        margin-top: 15px;
        gap: 12px;
    }

    .footer-socials a{
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    /* FOOTER BOTTOM */
    .footer-bottom{
        margin-top: 35px;
        font-size: 12px;
        text-align: left; 
        color: #888;
    }

    /* WATERMARK */
    .footer::after{
        content: "";
        position: absolute;
        inset: 0;

        background: url("../images/Classic_Logo-removebg.png") center no-repeat;
        background-size: 500px;

        opacity: 0.05;
        pointer-events: none;
        z-index: 0;
    }

}
