/* It's good practice to have these variables available for the styles below */
:root {
    --primary-red: #9F0102;
    --accent-orange: #FF6D01;
    --light-bg: #FFEFDA;
    --dark-text: #333333;
    --white: #ffffff;
}

/* Redesigned Footer Styles */
.footer-redesigned {
    position: relative;
    padding: 5rem 2rem;
    background-color: #1a1a1a; /* Dark background for a premium feel */
    color: #ccc;
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.toptal.com/designers/subtlepatterns/uploads/double-bubble-outline.png'); /* Subtle texture */
    opacity: 0.05;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-heading {
    color: var(--accent-orange);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-text {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--white);
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-3px);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    padding: 0.5rem 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s;
}

.footer-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--accent-orange);
    bottom: 0.25rem;
    left: 0;
    transition: width 0.3s;
}

.footer-links li a:hover {
    color: var(--white);
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact li .fas {
    color: var(--accent-orange);
}

.map-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-directions {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-directions:hover {
    background: var(--accent-orange);
    transform: translateX(-50%) scale(1.05);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

