/* ===================================================
   FOOTER STYLES (MAROON #590d0d & GOLD #d4af37)
   =================================================== */

.site-footer-wrapper {
    position: relative;
    width: 100%;
    margin-top: 140px; /* Offset for floating card */
    background: transparent;
    font-family: inherit;
    color: #ffffff;
}

/* Floating Card Container */
.footer-cta-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    top: 60px; /* Overlaps into the maroon section */
    z-index: 10;
}

/* Floating Card with Maroon Depth & Gold Border */
.footer-cta-card {
    background: radial-gradient(circle at 15% 20%, #400808 0%, #290505 55%, #180303 100%);
    border: 2px solid #d4af37;
    border-radius: 28px;
    padding: 60px 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.cta-content {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.cta-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    color: #f1d8ab; /* Light champagne gold */
    font-size: 17px;
    margin: 0 0 28px 0;
}

/* Gold CTA Button */
.cta-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #2b0606;
    padding: 13px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    background-color: #ffffff;
    color: #590d0d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.35);
}

/* Glow Graphic inside CTA Card */
.cta-visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
}

.cta-graphic-glow {
    position: absolute;
    right: -40px;
    top: -20px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

/* ===================================================
   MAIN FOOTER BODY (Maroon #590d0d)
   =================================================== */

.footer-main-body {
    background-color: #590d0d; /* Matching header background */
    border-radius: 35px 35px 0 0;
    padding: 120px 40px 40px 40px;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    column-gap: 50px;
    row-gap: 40px;
}

/* Brand & Address */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-logo .logo-icon {
    font-size: 20px;
    color: #d4af37;
}

.footer-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
}

.footer-address {
    font-style: normal;
    color: #f7e6e6;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 30px;
    opacity: 0.85;
}

.footer-contacts {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 13px;
    color: #d4af37; /* Gold label */
    font-weight: 600;
}

.contact-val {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-val:hover {
    color: #d4af37;
}

/* Column Headings & Links */
.col-heading {
    color: #d4af37; /* Gold section headings */
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list li a {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-link-list li a:hover {
    color: #d4af37;
    opacity: 1;
    transform: translateX(3px);
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    max-width: 1200px;
    margin: 70px auto 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    text-align: center;
}

.footer-bottom-bar p {
    color: #f7e6e6;
    opacity: 0.7;
    font-size: 13px;
    margin: 0;
}

/* ===================================================
   RESPONSIVE (TABLET & MOBILE)
   =================================================== */

@media (max-width: 992px) {
    .footer-content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .company-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .site-footer-wrapper {
        margin-top: 80px;
    }

    .footer-cta-container {
        top: 40px;
        padding: 0 15px;
    }

    .footer-cta-card {
        padding: 40px 25px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .footer-main-body {
        padding: 80px 20px 30px 20px;
        border-radius: 24px 24px 0 0;
    }

    .footer-content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .company-info {
        grid-column: span 1;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 15px;
    }
}