.newsletter-section {
    background-color: #FFFFFF;
    padding-bottom: 60px;
    border-bottom: 1px solid #dee2e6;
}

.newsletter-title {
    color: #0070C0;
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
}

.newsletter-subtitle {
    color: #6c757d;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}

.email-input {
    border: 1px solid #979797;
    width: 352px;
    height: 50px;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.email-input::placeholder {
    color: #979797;
}

.email-input:focus {
    border-color: #0070C0;
    box-shadow: 0 0 0 0.2rem rgba(0, 122, 255, 0.25);
    outline: none;
}

.subscribe-btn {
    background-color: #0070C0;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #0056CC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.footerfirst-row {
    margin: 80px 0;
}

.footerfirst-row h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    vertical-align: middle;
}

.main-footer {
    background: url('./footer-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 25px 0 0px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.brand-logo {
    max-width: 452px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.brand-logo i {
    color: white;
    font-size: 24px;
}

.brand-name {
    color: #212529;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.brand-tagline {
    color: #525252;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-top: 10px;
}

.footer-section h5 {
    color: #525252;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #004B81;
}

.footer-bottom {
    background-color: #ffffff00;
    padding: 25px 0;
    border-top: 1px solid #dee2e6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    font-size: 19px;
}

.social-link.facebook {
    color: #6c757d;
}

.social-link.instagram {
    color: #6c757d;
}

.social-link.youtube {
    color: #6c757d;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #007AFF;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.social-link:hover::before {
    left: 100%;
}

.copyright-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.get-started-btn {
    background: transparent;
    border: 2px solid #007AFF;
    border-radius: 12px;
    width: 182px;
    height: 50px;
    color: #007AFF;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.get-started-btn:hover {
    background-color: #007AFF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .main-footer {
        padding: 50px 0 30px 0;
    }

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

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .copyright-text {
        text-align: center;
    }

    .footerfirst-row h4 {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footerfirst-row h4 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .email-input,
    .subscribe-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .brand-name {
        font-size: 1.3rem;
    }
}