/* Footer Styles */

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #FF6B5A 0%, #FF8A47 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

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

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transform: rotate(15deg);
}

.newsletter-text h3 {
    color: white;
    font-size: var(--heading-h4);
    font-weight: 600;
    margin-bottom: var(--spacing-1);
    line-height: var(--line-height-tight);
    font-family: var(--font-heading);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    min-width: 350px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: white;
    color: #FF6B5A;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/wp-content/uploads/2025/08/bg-footer-home5.png');
    opacity: 0.3;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: var(--heading-h5);
    font-weight: 600;
    margin-bottom: var(--spacing-6);
    color: white;
    line-height: var(--line-height-tight);
    font-family: var(--font-heading);
}

.footer-brand {
    grid-column: span 1;
}

.footer-brand .logo {
    width: 220px;
    height: auto;
	margin-bottom: var(--spacing-6);
}

.footer-brand .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-8);
    font-size: var(--font-size-base);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #00D4FF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

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

.footer_contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer_contact-info strong {
    color: white;
    min-width: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(45deg, #00D4FF, #0EA5E9);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:nth-child(1) { background: linear-gradient(45deg, #00D4FF, #0EA5E9); }
.gallery-item:nth-child(2) { background: linear-gradient(45deg, #06B6D4, #0891B2); }
.gallery-item:nth-child(3) { background: linear-gradient(45deg, #F59E0B, #D97706); }
.gallery-item:nth-child(4) { background: linear-gradient(45deg, #EF4444, #DC2626); }
.gallery-item:nth-child(5) { background: linear-gradient(45deg, #10B981, #059669); }
.gallery-item:nth-child(6) { background: linear-gradient(45deg, #8B5CF6, #7C3AED); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.scroll-top {
    position: absolute;
    right: 0;
    top: -25px;
    width: 50px;
    height: 50px;
    background: #00D4FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    opacity: 0;
    visibility: hidden;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        padding: var(--spacing-8) var(--spacing-6);
    }

    .newsletter-container {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-6);
    }

    .newsletter-content {
        flex-direction: column;
        gap: var(--spacing-4);
    }

    .newsletter-form {
        min-width: 100%;
        max-width: 100%;
    }

    .newsletter-form input {
        padding: 0.75rem 1rem;
        font-size: 14px;
    }

    .newsletter-form button {
        padding: 0.75rem 1.5rem;
        font-size: 14px;
    }

    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand .logo {
        margin: 0 auto 1.5rem;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .footer-column h3 {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 1.5rem 1rem;
    }

    .newsletter-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .newsletter-text h3 {
        font-size: 1.125rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .footer-section {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.625rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer_contact-info p {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .scroll-top {
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}