.cta-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    min-width: 200px;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Newsletter Styles */
.newsletter-title {
    margin-top: 30px;
}

.newsletter-form {
    position: relative;
    margin-top: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1,
.hero-content .separator,
.hero-content p,
.hero-content .cta-button,
.section-header h2,
.section-header p,
.service-card,
.process-step,
.service-item,
.country-card,
.testimonial-card,
.contact-container,
.faq-item,
.cta-content {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.service-item .service-item-content {
    opacity: 0;
    animation: fadeInLeft 0.6s ease 0.2s forwards;
}

.service-item .service-item-image {
    opacity: 0;
    animation: fadeInRight 0.6s ease 0.2s forwards;
}

.service-item.reverse .service-item-content {
    opacity: 0;
    animation: fadeInRight 0.6s ease 0.2s forwards;
}

.service-item.reverse .service-item-image {
    opacity: 0;
    animation: fadeInLeft 0.6s ease 0.2s forwards;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-banner h1 {
        font-size: 3rem;
    }
    
    .service-item-content {
        padding: 40px;
    }
    
    .service-item-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 100px 0;
    }
    
    .hero-banner h1 {
        font-size: 2.7rem;
    }
    
    .hero-banner p {
        font-size: 1.15rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .featured-services,
    .work-process,
    .services-detail,
    .countries-section,
    .testimonials-section,
    .contact-section,
    .faq-section {
        padding: 80px 0;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .process-step {
        width: 100%;
        max-width: 400px;
    }
    
    .process-connector {
        width: 4px;
        height: 40px;
        flex: initial;
    }
    
    .process-connector::before,
    .process-connector::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-connector::before {
        top: 0;
    }
    
    .process-connector::after {
        top: auto;
        bottom: 0;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 0;
    }
    
    .hero-banner h1 {
        font-size: 2.3rem;
    }
    
    .hero-banner p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .service-item-content,
    .service-item-image {
        flex: 100%;
    }
    
    .service-item-image {
        min-height: 300px;
    }
    
    .service-item-content {
        padding: 30px;
    }
    
    .service-item-content h3 {
        font-size: 1.6rem;
    }
    
    .service-features {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 70px 0;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-banner p {
        font-size: 1rem;
    }
    
    .hero-banner .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .featured-services,
    .work-process,
    .services-detail,
    .countries-section,
    .testimonials-section,
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .service-item-content {
        padding: 25px;
    }
    
    .service-item-content h3 {
        font-size: 1.4rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .form-header h3 {
        font-size: 1.6rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
} 
