.footer {
    background: #FFF8F0;
    color: #333;
    padding: 60px 0 0;
    z-index: 100;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

footer .logo {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: var(--font-segoe);
}

footer .logo i {
    margin-right: 10px;
    font-size: 2.2rem;
}

.footer-about p {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: var(--font-segoe);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--main-theme-color);
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #cc7904;
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    font-family: var(--font-segoe);
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--main-theme-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-family: var(--font-segoe);
}

.footer-links a:hover {
    color: #cc7904;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.footer-contact-info {
    list-style: none;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #333;
}

.footer-contact-info i {
    margin-right: 12px;
    color: var(--main-theme-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--font-segoe);
}

.contact-text p {
    font-family: var(--font-segoe);
}

.map-container {
    height: 200px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
}

.map-placeholder iframe{
    width: 100%;
}

.map-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: var(--main-theme-color);
    animation: floatIcon 3s ease-in-out infinite
}

.map-container p {
    font-family: var(--font-segoe);
}

.map-container small {
    font-family: var(--font-segoe);
}

.copyright {
    background: #FFF8F0;
    padding: 20px 0;
    text-align: center;
    color: #333;
    border-top: 1px solid var(--main-theme-color);
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-container p {
    font-family: var(--font-segoe);
    font-weight: 600;
}

.copyright-links {
    display: flex;
    gap: 20px;
}

.copyright-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    font-family: var(--font-segoe);
    font-weight: 600;
}

.copyright-links a:hover {
    color: #cc7904;
}