/**
 * GOTUIMO Custom Footer Styles
 * @created: 2025-01-10
 */

/* ============================================
   FOOTER MAIN
   ============================================ */

.gotuimo-footer {
    background: #1a1a1a url('https://gotuimo.com/wp-content/uploads/2025/07/footer-bg.jpg') center top no-repeat;
    background-size: cover;
    color: #ffffff;
    padding-top: 60px;
    clear: both;
    width: 100%;
    position: relative;
}

/* Dark overlay for better text readability */
.gotuimo-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.85);
    z-index: 0;
}

/* Ensure content is above overlay */
.gotuimo-footer-main,
.gotuimo-footer-bottom {
    position: relative;
    z-index: 1;
}

.gotuimo-footer a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gotuimo-footer a:hover {
    color: #ffffff;
}

/* Container */
.gotuimo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   FOOTER COLUMNS
   ============================================ */

.gotuimo-footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.gotuimo-footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Column Titles */
.gotuimo-footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   COLUMN 1: ABOUT
   ============================================ */

.gotuimo-footer-about {
    grid-column: span 1;
}

.gotuimo-footer-logo img {
    max-height: 50px;
    width: auto;
}

.gotuimo-footer-site-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
}

.gotuimo-footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
}

/* Social Links */
.gotuimo-social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.gotuimo-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.gotuimo-social-link:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.gotuimo-social-link svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   COLUMNS 2 & 3: NAVIGATION & LINKS
   ============================================ */

.gotuimo-footer-nav,
.gotuimo-footer-links {
    grid-column: span 1;
}

.gotuimo-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gotuimo-footer-menu li {
    margin-bottom: 12px;
}

.gotuimo-footer-menu a {
    font-size: 14px;
    line-height: 1.6;
    display: block;
    padding: 4px 0;
}

.gotuimo-footer-menu a:hover {
    padding-left: 8px;
    color: #ff6b6b;
}

/* ============================================
   COLUMN 4: CONTACT
   ============================================ */

.gotuimo-footer-contact {
    grid-column: span 1;
}

/* Email */
.gotuimo-footer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 20px;
}

.gotuimo-footer-email svg {
    flex-shrink: 0;
    color: #ff6b6b;
}

.gotuimo-footer-email a {
    color: #ffffff;
    word-break: break-word;
}

/* Newsletter Subscribe */
.gotuimo-footer-subscribe {
    margin: 0;
}

.gotuimo-subscribe-text {
    font-size: 14px;
    color: #cccccc;
    margin: 0 0 12px;
}

.gotuimo-subscribe-form {
    display: flex;
    flex-direction: column;
}

.gotuimo-subscribe-input-wrapper {
    display: flex;
    gap: 8px;
}

.gotuimo-subscribe-input {
    flex: 1;
    padding: 11px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    height: 40px;
    transition: all 0.3s ease;
}

.gotuimo-subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.gotuimo-subscribe-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff6b6b;
}

.gotuimo-subscribe-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff6b6b;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gotuimo-subscribe-btn:hover {
    background: #ee5a6f;
    transform: translateX(3px);
}

.gotuimo-subscribe-btn .gotuimo-arrow-icon {
    font-size: 24px;
    line-height: 30px;
    height: 30px;
    color: #ffffff;
    font-weight: bold;
    display: inline-block;
}

/* ============================================
   FOOTER BOTTOM
   ============================================ */

.gotuimo-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.gotuimo-footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Copyright */
.gotuimo-footer-copyright p {
    font-size: 14px;
    color: #999999;
    margin: 0;
}

.gotuimo-footer-copyright strong {
    color: #ffffff;
}

/* Partner Logos */
.gotuimo-footer-partners {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gotuimo-partner-logo {
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gotuimo-partner-logo:hover {
    opacity: 1;
}

.gotuimo-partner-logo img {
    max-height: 40px;
    width: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.gotuimo-partner-logo:hover img {
    filter: grayscale(0%);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .gotuimo-footer {
        padding-top: 50px;
    }
    
    .gotuimo-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .gotuimo-footer-about {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gotuimo-footer {
        padding-top: 40px;
    }
    
    .gotuimo-footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .gotuimo-footer-about,
    .gotuimo-footer-nav,
    .gotuimo-footer-links,
    .gotuimo-footer-contact {
        grid-column: span 1;
    }
    
    .gotuimo-footer-title {
        font-size: 16px;
    }
    
    .gotuimo-social-links {
        justify-content: flex-start;
    }
    
    .gotuimo-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gotuimo-footer-partners {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gotuimo-footer-columns {
        gap: 30px;
    }
    
    .gotuimo-subscribe-input-wrapper {
        flex-direction: column;
    }
    
    .gotuimo-subscribe-btn {
        width: 100%;
        height: 48px;
    }
}

/* ============================================
   PRINT
   ============================================ */

@media print {
    .gotuimo-footer {
        display: none;
    }
}

