/* Dominican Way Tours - Footer Styles */

.dwt-footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #2c3e50;
    color: white;
    margin-top: 60px;
}

.dwt-footer * {
    box-sizing: border-box;
}

/* Footer Container */
.dwt-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Partners Section */
.dwt-footer-partners {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dwt-partners-content {
    text-align: center;
}

.dwt-partners-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
}

.dwt-partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.dwt-partner-item {
    transition: all 0.3s ease;
}

.dwt-partner-item:hover {
    transform: translateY(-5px) scale(1.05);
}

.dwt-partner-logo {
    height: 60px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.dwt-partner-item:hover .dwt-partner-logo {
    opacity: 1;
    filter: none;
}

/* Main Footer */
.dwt-footer-main {
    padding: 60px 0 40px;
}

.dwt-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Footer Sections */
.dwt-footer-section {
    display: flex;
    flex-direction: column;
}

.dwt-footer-section * {
    color: inherit;
}

.dwt-footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.dwt-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--dwt-primary-color, #4ecdc4), var(--dwt-secondary-color, #ff6b6b));
    border-radius: 2px;
}

/* Company Section */
.dwt-footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.dwt-footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.dwt-footer-company-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.dwt-footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.dwt-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dwt-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.dwt-footer-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dwt-footer-contact-item a:hover {
    color: var(--dwt-primary-color, #4ecdc4);
    text-decoration: none;
}

.dwt-contact-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Footer Links */
.dwt-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dwt-footer-link-item {
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.dwt-footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 2px 0;
    transition: all 0.3s ease;
    position: relative;
}

.dwt-footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--dwt-primary-color, #4ecdc4);
    transition: width 0.3s ease;
}

.dwt-footer-link:hover::before {
    width: 6px;
}

.dwt-footer-link:hover {
    color: white;
    text-decoration: none;
    padding-left: 10px;
}

.dwt-footer-link span {
    color: inherit;
}

.dwt-service-icon,
.dwt-link-icon {
    font-size: 1rem;
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Ensure all footer text is white */
.dwt-footer-services .dwt-footer-link,
.dwt-footer-services .dwt-service-name,
.dwt-footer-services .dwt-service-icon,
.dwt-footer-links-section .dwt-footer-link,
.dwt-footer-links-section .dwt-link-icon,
.dwt-footer-links-section span {
    color: rgba(255, 255, 255, 0.9) !important;
}

.dwt-footer-services .dwt-footer-link:hover,
.dwt-footer-services .dwt-footer-link:hover *,
.dwt-footer-links-section .dwt-footer-link:hover,
.dwt-footer-links-section .dwt-footer-link:hover * {
    color: white !important;
}

/* Override any inherited colors */
.dwt-footer-section a,
.dwt-footer-section span,
.dwt-footer-section p {
    color: inherit;
}

.dwt-service-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Social Media */
.dwt-social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.dwt-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dwt-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    transform: translateX(5px);
}

.dwt-social-link.dwt-facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.2);
}

.dwt-social-link.dwt-instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.2);
}

.dwt-social-link.dwt-youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.2);
}

.dwt-social-link.dwt-tiktok:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
}

.dwt-social-icon {
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.dwt-social-name {
    font-size: 0.95rem;
    font-weight: 500;
}



/* Footer Bottom */
.dwt-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dwt-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.dwt-footer-copyright {
    flex: 1;
}

.dwt-footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.dwt-footer-tagline {
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-style: italic;
}

.dwt-footer-badges {
    display: flex;
    gap: 20px;
}

.dwt-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dwt-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.dwt-badge-icon {
    font-size: 0.9rem;
}

.dwt-badge-text {
    font-weight: 500;
}

/* Footer Layouts */
.dwt-footer-modern {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.dwt-footer-tropical {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.dwt-footer-elegant {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.dwt-footer-classic {
    background: #34495e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dwt-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .dwt-footer-company {
        grid-column: 1 / -1;
    }
    
    .dwt-partners-logos {
        gap: 30px;
    }
    
    .dwt-partner-logo {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .dwt-footer-main {
        padding: 40px 0 30px;
    }
    
    .dwt-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dwt-footer-company {
        grid-column: auto;
        text-align: center;
    }
    
    .dwt-footer-logo {
        justify-content: center;
    }
    
    .dwt-footer-contacts {
        align-items: center;
    }
    
    .dwt-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .dwt-footer-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .dwt-partners-logos {
        gap: 20px;
    }
    
    .dwt-partner-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .dwt-footer-container {
        padding: 0 15px;
    }
    
    .dwt-footer-partners {
        padding: 30px 0;
    }
    
    .dwt-partners-title {
        font-size: 1.3rem;
    }
    
    .dwt-partners-logos {
        flex-direction: column;
        gap: 15px;
    }
    
    .dwt-footer-main {
        padding: 30px 0 20px;
    }
    
    .dwt-footer-content {
        gap: 30px;
    }
    
    .dwt-footer-company-name {
        font-size: 1.5rem;
    }
    
    .dwt-footer-title {
        font-size: 1.2rem;
    }
    
    .dwt-social-links {
        gap: 8px;
    }
    
    .dwt-social-link {
        padding: 8px 12px;
    }
    
    .dwt-newsletter {
        padding: 15px;
    }
    
    .dwt-footer-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .dwt-badge {
        justify-content: center;
        min-width: 120px;
    }
}