/* Royal Footer Styles */
.royal-footer {
    width: 100%;
    background-color: var(--royal);
    color: var(--gold-light);
    padding-top: 4rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(196, 160, 89, 0.3);
}

/* Subtle Top Gradient Glow */
.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10rem;
    background-image: linear-gradient(to bottom, rgba(230, 200, 136, 0.1), transparent);
    pointer-events: none;
}

/* Decorative Divider */
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.footer-divider-line {
    width: 5rem;
    height: 1px;
    background-color: rgba(196, 160, 89, 0.4);
}

.footer-divider-diamond {
    width: 0.75rem;
    height: 0.75rem;
    border: 1px solid rgba(196, 160, 89, 0.5);
    transform: rotate(45deg);
    margin: 0 1rem;
    background-color: var(--royal);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    border-top: 1px solid rgba(196, 160, 89, 0.2);
    border-bottom: 1px solid rgba(196, 160, 89, 0.2);
    padding: 3rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .footer-main-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-family: var(--font-cinzel);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.footer-text {
    color: var(--gray);
    font-size: 0.875rem;
    line-height: 1.625;
    max-width: 20rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--gray);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.5s ease;
    border-bottom: 1px solid transparent;
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.footer-input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-input {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(196, 160, 89, 0.15);
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: var(--gold-light);
    transition: all 0.5s ease;
}

.footer-input:focus {
    outline: none;
    border-color: var(--gold);
}

.footer-input::placeholder {
    color: rgba(196, 160, 89, 0.3);
}

.footer-btn {
    width: 100%;
    border: 1px solid rgba(196, 160, 89, 0.5);
    padding: 0.75rem 0;
    font-size: 0.75rem;
    font-family: var(--font-cinzel);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background: transparent;
    color: var(--gold-light);
    cursor: pointer;
    transition: all 0.5s ease;
}

.footer-btn:hover {
    background-color: var(--gold-light);
    color: var(--royal);
}

.footer-bottom {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gray-medium);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }
}

.footer-bottom-text {
    color: var(--gray-dark);
    font-family: var(--font-cinzel);
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-social-link {
    color: var(--gray-medium);
    transition: color 0.5s ease;
    font-size: 1rem;
}

.footer-social-link:hover {
    color: var(--gold);
}