.features-section {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffcc00, #f58220);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card:hover:before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff4db 0%, #ffe4b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-size: 32px;
    color: #f58220;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #ffcc00 0%, #f58220 100%);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 0px;
}

.features-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.features-cta:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background: linear-gradient(135deg, #ffcc00 0%, #f58220 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

.compact-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
    padding: 20px 0;
    color: white;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.cta-icon {
    flex-shrink: 0;
}

.cta-icon i {
    font-size: 32px;
    color: #ffcc00;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

.cta-content {
    flex: 1;
    text-align: left;
    padding: 0 15px;
}

.cta-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #ffcc00;
}

.cta-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-button {
    flex-shrink: 0;
}

.btn-book {
    background: linear-gradient(135deg, #ffcc00 0%, #f58220 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 204, 0, 0.3);
    white-space: nowrap;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    background: linear-gradient(135deg, #f58220 0%, #ffcc00 100%);
}

.trusted-services-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.header-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ffcc00, #f58220);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.header-subtitle {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.services-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lead-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #fff4db;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffcc00 0%, #f58220 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 20px;
}

.feature-text h4 {
    color: #2c3e50;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.additional-content {
    margin-bottom: 30px;
}

.additional-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.cta-mini {
    text-align: center;
}

.service-cta-btn {
    background: linear-gradient(135deg, #ffcc00 0%, #f58220 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.service-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
}

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffcc00 0%, #f58220 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 36px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 15px;
}

.header-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #ffcc00, #f58220);
    margin: 0 auto;
    border-radius: 2px;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #ffcc00;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left: 4px solid #f58220;
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    color: #fff4db;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin: 0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffcc00 0%, #f58220 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.client-details {
    flex: 1;
}

.client-name {
    font-size: 18px;
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.client-role {
    font-size: 14px;
    color: #f58220;
    font-weight: 500;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #ffcc00;
    border-radius: 50%;
    color: #2c3e50;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: #ffcc00;
    color: white;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-slider {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .header-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 24px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .client-details {
        text-align: center;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .trusted-services-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-content {
        padding: 30px 20px;
    }
    
    .lead-paragraph {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 24px;
    }
    
    .header-subtitle {
        font-size: 16px;
    }
    
    .service-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-content {
        text-align: center;
        padding: 0;
    }
    
    .cta-icon i {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cta-content h4 {
        font-size: 18px;
    }
    
    .cta-content p {
        font-size: 13px;
    }
    
    .btn-book {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .compact-cta {
        margin: 20px 0;
        padding: 15px 0;
    }
    
    .cta-container {
        gap: 12px;
    }
    
    .cta-icon i {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .btn-book {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .features-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .cta-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}


