﻿/* Card Design */
.policy-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,248,248,0.92));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,175,55,0.18); 
    border-radius: 28px;
    box-shadow: 0 10px 35px rgba(10,15,25,0.10);
    transition: transform .35s ease, box-shadow .35s ease;
    position: relative;
}

    /* Hover Effect */
    .policy-card:hover {
        transform: translateY(-10px) scale(1.015);
        box-shadow: 0 25px 65px rgba(10,15,25,0.22);
    }

    /* Left Gold Bar*/
    .policy-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 7px;
        height: 100%;
        background: linear-gradient(180deg,#d4af37,#ffd87a,#d4af37); 
        transition: background .45s ease, box-shadow .45s ease;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        opacity: 1;
    }

    .policy-card:hover::before {
        background: linear-gradient(180deg,#ff8c00,#ffb347,#ff8c00); 
        box-shadow: 0 0 14px rgba(255,120,0,0.55);
    }


/* Header Gold Line */
.gold-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg,#d4af37,#ffd87a,#b88a24);
    border-radius: 10px;
    transition: .35s ease;
}

.policy-card:hover .gold-line {
    width: 260px;
}

/* Titles */
.title-gold {
    color: #b88a24;
    letter-spacing: .6px;
}

.section-title {
    font-size: 1.35rem;
    color: #222;
    border-left: 6px solid rgba(212,175,55,0.95);
    padding-left: 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}

/* Text */
p, li {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-link {
    color: #212529;
    font-weight: 600;
}

    .contact-link:hover {
        color: #b88a24;
    }

/* Section Fade Animation */
.fade-item {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp .6s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Premium Info Box */
.info-box {
    background: linear-gradient(135deg,#fff8e1,#ffeebb);
    border-left: 6px solid #d4af37;
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin: 20px 0;
}

.info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #b88a24;
}

/* Mobile Optimization */
@media (max-width:576px) {
    .policy-card {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .section-title {
        font-size: 1.15rem;
        border-left-width: 4px;
    }
}

