/* ================= LUXURY FOOTER ================= */

body {
    overflow-x: hidden;
}

.footer {
     overflow: hidden;
    background: #0a1e27;
    color: #cfcfcf;
    font-size: 14px;
    border-top: 2px solid;
border-image: linear-gradient(to right, #e1c885, #9D806D) 1;
background: linear-gradient(to bottom, #0c2430, #07161d);
}

/* ================= MAIN GRID ================= */

.footer-main {
    padding: 90px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-brand h2 {
    color: #e1c885;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-brand p {
    line-height: 1.8;
    color: #9ca9b3;
}

.footer-logo {
    width: 250px;
    margin-bottom: 10px;
}

/* LINKS */

.footer-links h4,
.footer-subscribe h4 {
    color: #e1c885;
    margin-bottom: 20px;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e1c885;
    padding-left: 5px;
}

/* SUBSCRIBE */

.subscribe-box {
    display: flex;
    margin-top: 15px;
    border: 1px solid rgba(255,255,255,0.15);
}

.subscribe-box input {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: white;
    outline: none;
}

.subscribe-box button {
    background: #e1c885;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    font-weight: bold;
    color: #132F3D;
    transition: 0.3s;
}

.subscribe-box button:hover {
    background: white;
}

.newsletter-form {
    margin-top: 15px;
}

.newsletter-form .subscribe-box {
    margin-top: 0;
    border-radius: 6px;
    overflow: hidden;
    border-color: rgba(225,200,133,0.28);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 13px;
    color: #9ca9b3;
    font-size: 12px;
    line-height: 1.55;
    cursor: pointer;
}

.newsletter-consent input {
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: #e1c885;
}

.newsletter-message {
    margin-top: 12px;
    padding: 10px 11px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.45;
    opacity: 1;
    transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease, max-height .35s ease, margin .35s ease, padding .35s ease;
    max-height: 120px;
    overflow: hidden;
}

.newsletter-message.hide {
    opacity: 0;
    transform: translateY(-6px);
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.newsletter-message.success {
    color: #d7f5e8;
    background: rgba(30,109,78,0.35);
    border: 1px solid rgba(92,205,155,0.22);
}

.newsletter-message.error {
    color: #f5d2d0;
    background: rgba(135,48,45,0.32);
    border: 1px solid rgba(232,113,105,0.25);
}

.newsletter-honeypot,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ================= BOTTOM ================= */

.footer-bottom {
    border-top: 1px solid rgba(225,200,133,0.15);
    padding: 20px 0;
    background: #06161d;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.bottom-links a {
    margin-left: 25px;
    color: #9ca9b3;
    text-decoration: none;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #e1c885;
}

.footer-brand-name {
    color: #e1c885;
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .footer-strip-inner {
        flex-direction: column;
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bottom-links a {
        margin: 0 10px;
    }
}

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Remove vertical dividers on mobile */
    .footer-grid > div::after {
        display: none;
    }

}
/* ================= FOOTER SOCIAL (Contact Style Adapted) ================= */

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    background: rgba(255,255,255,0.04);
    border-left: 3px solid #e1c885; /* same gold */
    padding: 10px 14px;
    border-radius: 6px;
    color: #e1c885;
    font-size: 16px;
    transition: 0.3s ease;
    text-decoration: none;

    display: inline-flex;
align-items: center;
justify-content: center;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 12px rgba(225,200,133,0.3);
}

/* Elegant Vertical Dividers */
.footer-grid > div {
    position: relative;
}

.footer-grid > div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -20px; /* reduced from -30px */
    height: 80%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(225, 200, 133, 0.3),
        transparent
    );
}

/* ================= COOKIE CONSENT ================= */

.cookie-consent {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3000;
    max-width: 980px;
    margin: 0 auto;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #edf5f7;
    background:
        linear-gradient(135deg, rgba(8,26,34,0.98), rgba(15,44,56,0.96)),
        #0f2c38;
    border: 1px solid rgba(225,200,133,0.32);
    border-radius: 12px;
    box-shadow: 0 26px 70px rgba(0,0,0,0.42);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__content {
    max-width: 650px;
}

.cookie-consent__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: #e1c885;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.cookie-consent h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
}

.cookie-consent p {
    margin: 0;
    color: #c7d6dc;
    font-size: 13px;
    line-height: 1.6;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.cookie-btn {
    min-height: 42px;
    padding: 11px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn--primary {
    color: #102833;
    background: #e1c885;
    border: 1px solid #e1c885;
}

.cookie-btn--ghost {
    color: #edf5f7;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(225,200,133,0.34);
}

@media (max-width: 760px) {
    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }

    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-btn {
        width: 100%;
    }
}


