/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-content .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-content .btn-light {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.cta-content .btn-light:hover {
    background-color: transparent;
    color: #fff;
}

.cta-content .btn-outline-light {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 15px;
}

.cta-content .btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: var(--dark-blue);
    padding: 60px 0 20px;
    color: #b2bec3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about h3, 
.footer-links h3, 
.footer-categories h3, 
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    font-weight: 600;
    padding-bottom: 15px;
}

.footer-about h3:after, 
.footer-links h3:after, 
.footer-categories h3:after, 
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-links ul, 
.footer-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li, 
.footer-categories li {
    margin-bottom: 10px;
}

.footer-links a, 
.footer-categories a {
    color: #b2bec3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: block;
}

.footer-links a:hover, 
.footer-categories a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact p i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #b2bec3;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Newsletter Form */
.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter p {
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    max-width: 100%;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px 0 0 4px;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-color-dark);
}

