/* -- Footer Reset & Base -- */
.pf-footer {
    background: #f7f1e9; /* Deep Onyx Black */
    color: #e0e0e0; /* Crisp Off-White */
    font-family: 'DM Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Luxurious Gradient Overlay */
.pf-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(205,165,87,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle top border with gold shine */
.pf-footer-border-top {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(205,165,87,0.4), transparent);
    width: 100%;
}

/* -- Orb glow decorations (more subtle & elegant) -- */
.pf-footer__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}
.pf-footer__orb--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(205,165,87,0.1) 0%, transparent 70%);
    top: -150px; left: -150px;
}
.pf-footer__orb--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(205,165,87,0.06) 0%, transparent 70%);
    bottom: -50px; right: -100px;
}

/* -- Main content wrapper -- */
.pf-footer__body {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

/* -- Brand column -- */
.pf-brand__logo {
    margin-bottom: 25px;
}
.pf-brand__logo img {
    max-height: 58px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}
.pf-brand__logo img:hover { transform: scale(1.02); }

.pf-brand__desc {
    font-size: 14.5px;
    line-height: 1.8;
    /* color: #a0a0a0; */
    color: #666;
    margin-bottom: 30px;
    max-width: 300px;
}

/* Social icons - Modern Gold Outline */
.pf-social {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pf-social__item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(205,165,87,0.3);
    background: transparent;
    color: #cda557;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pf-social__item a:hover {
    background: #cda557;
    border-color: #cda557;
    color: #080808;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(205,165,87,0.25);
}

/* -- Widget columns -- */
.pf-widget__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #080808; /* Bright white for titles */
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}
.pf-widget__title::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 35px; height: 2px;
    background: #cda557;
}

.pf-widget__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pf-widget__links li {
    margin-bottom: 12px;
}
.pf-widget__links li a {
    font-size: 14px;
    /* color: #999999; */
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.pf-widget__links li a:hover {
    color: #cda557;
    padding-left: 5px;
}

/* -- Contact info -- */
.pf-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #b0b0b0;
}
.pf-contact-item i {
    color: #cda557;
    font-size: 16px;
    width: 20px;
}
.pf-contact-item a {
    /* color: inherit; */
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.pf-contact-item a:hover {
    color: #ffffff;
}

.pf-contact-item span{
    color: #666;
}

/* -- Newsletter -- */
.pf-newsletter__text {
    font-size: 14px;
    /* color: #a0a0a0; */
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
}
.pf-newsletter__form {
    display: flex;
    background: rgb(225 220 220 / 40%);
    border: 1px solid #e4e2e2;
    border-radius: 4px;
    padding: 5px;
    transition: all 0.3s;
}
.pf-newsletter__form:focus-within {
    border-color: #cda557;
    background: rgba(255,255,255,0.08);
}
.pf-newsletter__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 8px 12px;
    font-size: 14px;
    color: #ffffff;
}
.pf-newsletter__input::placeholder { color: #666; }
.pf-newsletter__btn {
    background: #cda557;
    color: #080808;
    border: none;
    padding: 0 20px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}
.pf-newsletter__btn:hover {
    background: #dbb96a;
}

/* -- Bottom bar -- */
.pf-footer__bottom {
    background: #f7f0e7; /* Even darker black */
    padding: 25px 0;
    border-top: 1px solid #e4e2e2;
    position: relative;
    z-index: 2;
}
.pf-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.pf-copyright {
    font-size: 13px;
    color: #666;
}
.pf-copyright a {
    color: #999;
    text-decoration: none;
}
.pf-copyright a:hover { color: #cda557; }

.pf-bottom-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pf-bottom-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.pf-bottom-links a:hover { color: #ffffff; }

.pf-payment img {
    max-height: 25px;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: all 0.3s;
}
.pf-payment img:hover {
    filter: none;
    opacity: 1;
}

/* -- Responsive -- */
@media (max-width: 991px) {
    .pf-footer__body { padding: 60px 0 40px; }
}
@media (max-width: 767px) {
    .pf-footer__bottom-inner { flex-direction: column; text-align: center; }
    .pf-bottom-links { justify-content: center; }
}
