/* ===== FOOTER & CONTACT SECTION STYLES ===== */
/* Comprehensive styling for consistent footer across all pages */

/* ===== GOOGLE MAP SECTION ===== */
.map-container-vertical {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container-vertical h2 {
    color: #1f272b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.map-container-vertical iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .map-container-vertical {
        padding: 30px 20px;
    }
    
    .map-container-vertical h2 {
        font-size: 1.6rem;
    }
    
    .map-container-vertical iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container-vertical {
        padding: 25px 15px;
    }
    
    .map-container-vertical h2 {
        font-size: 1.4rem;
    }
    
    .map-container-vertical iframe {
        height: 300px;
    }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-vertical {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-vertical h2 {
    color: #1f272b;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.form-row-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.contact-form-vertical input,
.contact-form-vertical textarea {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #eee;
    background-color: #f7f7f7;
    font-size: 14px;
    color: #2a2a2a;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.contact-form-vertical input {
    height: 50px;
}

.contact-form-vertical textarea {
    min-height: 140px;
    max-height: 200px;
    resize: vertical;
    border-radius: 20px;
    padding: 15px 20px;
}

.contact-form-vertical input:focus,
.contact-form-vertical textarea:focus {
    outline: none;
    border-color: #1B8A8A;
    box-shadow: 0 0 10px rgba(27, 138, 138, 0.2);
}

.contact-form-vertical button.button {
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background-color: #1B8A8A;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-vertical button.button:hover {
    background-color: #003875;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 56, 117, 0.3);
}

@media (max-width: 991px) {
    .form-row-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .contact-form-vertical {
        padding: 30px 20px;
    }
    
    .contact-form-vertical h2 {
        font-size: 1.6rem;
    }
    
    .contact-form-vertical input,
    .contact-form-vertical textarea {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-form-vertical {
        padding: 25px 15px;
    }
    
    .contact-form-vertical h2 {
        font-size: 1.4rem;
    }
}

/* ===== FOOTER HORIZONTAL SECTION ===== */
.footer-horizontal {
    background: linear-gradient(135deg, #1f272b 0%, #2c3e50 100%);
    padding: 60px 0 30px 0;
    color: #fff;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #1B8A8A;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-section p strong {
    color: #1B8A8A;
    font-size: 1.1rem;
}

/* ===== FOOTER LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-links li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #1B8A8A;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 25px;
}

.footer-links li a:hover::before {
    color: #fff;
    left: 5px;
}

/* ===== FOOTER CONTACT INFO ===== */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.footer-contact li i {
    color: #1B8A8A;
    font-size: 1.2rem;
    margin-right: 15px;
    min-width: 20px;
    text-align: center;
}

.footer-contact li:hover {
    color: #fff;
}

.footer-contact li:hover i {
    color: #fff;
    transform: scale(1.1);
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 991px) {
    .footer-horizontal {
        padding: 50px 0 20px 0;
    }
    
    .footer-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .footer-horizontal {
        padding: 40px 0 20px 0;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
    }
    
    .footer-section p,
    .footer-links li a,
    .footer-contact li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-horizontal {
        padding: 30px 0 15px 0;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 35px;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li a {
        padding-left: 0;
    }
    
    .footer-links li a::before {
        display: none;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

/* ===== CONTACT-US SECTION BACKGROUND ===== */
.contact-us {
    background: linear-gradient(135deg, #f7f9fc 0%, #e3e8ef 100%);
    padding: 80px 0 0 0;
    position: relative;
}

@media (max-width: 768px) {
    .contact-us {
        padding: 60px 0 0 0;
    }
}

@media (max-width: 480px) {
    .contact-us {
        padding: 40px 0 0 0;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

/* ===== HOVER EFFECTS ===== */
.footer-section a,
.footer-contact li,
.footer-links li a {
    transition: all 0.3s ease;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    .footer-section,
    .footer-links li a,
    .footer-contact li i {
        animation: none !important;
        transition: none !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .footer-horizontal {
        background: #fff;
        color: #000;
        padding: 20px 0;
    }
    
    .footer-section h4,
    .footer-section p,
    .footer-links li a,
    .footer-contact li {
        color: #000;
    }
    
    .map-container-vertical iframe {
        display: none;
    }
    
    .contact-form-vertical {
        display: none;
    }
}
