/* Footer Styles */
.footer {
    background: white;
    padding-top: 3rem;
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(135deg, #ff6900  0%,  #ff6900 100%);
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.footer-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

/* Pages Links */
.pages-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: #ff6b35;
    padding-left: 0.5rem;
}

.page-icon {
    color: #ff6b35;
    width: 16px;
    text-align: center;
}

/* Map Styles */
.map-container {
    margin: 1rem 0;
}

.map-iframe {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.map-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b35;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.location-icon {
    color: #ff6b35;
    margin-right: 0.25rem;
}

.location-text {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Blog Posts */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-post {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.blog-thumbnail {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 4px;
    flex-shrink: 0;
}

.blog-content {
    flex: 1;
}

.blog-title a{
    font-size: 0.9rem;
    font-weight: 500;
    color: #e55a2b;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    text-decoration: none;
}

.blog-date {
    font-size: 0.8rem;
    color: #999;
}

.blog-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-link:hover {
    opacity: 0.8;
    padding-left: 0.5rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #666;
}

.contact-icon {
    color: #ff6b35;
    width: 16px;
    text-align: center;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Forms */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.form-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: #ff6b35;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.form-button:hover {
    background: #e55a2b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

/* Newsletter Bar */
.newsletter-bar {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.5rem 0;
}

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

.newsletter-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.newsletter-input {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    min-width: 250px;
    color: #333;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: #8B4513;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.newsletter-button:hover {
    background: #7a3c10;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 2rem;
    text-align: center;
    color: white;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }
    
    .newsletter-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-input {
        min-width: unset;
        width: 100%;
    }
    
    .map-iframe {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-card {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        min-width: unset;
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .social-icons {
        justify-content: flex-start;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (min-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}