/* Services Page Styles */
:root {
    --primary: #2d8cf0;
    --primary-dark: #1e6bc9;
    --secondary: #19be6b;
    --accent: #ff9900;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Hero Section */
.services-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern-dots.svg') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(46, 125, 50, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.hero-pattern {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Services Navigation */
.services-nav {
    position: sticky;
    top: 80px;
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.services-nav.sticky {
    top: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services-nav-inner {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.services-nav-inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: #f8f9fa;
    color: #495057;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(45, 140, 240, 0.3);
}

.filter-btn.active i {
    color: white;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-nav {
        top: 70px;
        padding: 10px 0;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .filter-btn i {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .services-nav {
        top: 60px;
    }
    
    .services-nav-inner {
        padding-bottom: 5px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .filter-btn i {
        font-size: 0.85rem;
    }
}

/* Service Items Filtering */
.service-item {
    transition: all 0.4s ease;
}

.service-item.hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.service-item.visible {
    display: block;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Container */
.services-container {
    padding: 100px 0;
    background: #f9fafc;
}

.service-category {
    margin-bottom: 80px;
    position: relative;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.service-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 700;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFC107;
    font-size: 0.9rem;
}

.service-rating span {
    color: var(--gray);
    font-size: 0.85rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-features i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 0.8rem;
}

.service-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.service-duration,
.service-team {
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-duration i,
.service-team i {
    color: var(--primary);
    font-size: 1rem;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.service-price {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.service-price span {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}

.service-price small {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 400;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(45, 140, 240, 0.3);
}

.service-cta:hover {
    background: #1a73e8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 140, 240, 0.4);
}

.service-cta i {
    transition: transform 0.3s ease;
}

.service-cta:hover i {
    transform: translateX(3px);
}

/* Remove hover effects for touch devices */
@media (hover: none) {
    .service-card:hover {
        transform: none;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    }
    
    .service-cta:hover {
        transform: none;
        background: var(--primary);
        box-shadow: 0 4px 15px rgba(45, 140, 240, 0.3);
    }
}

/* CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,10 L50,30 L70,10 L90,30 L90,90 L10,90 L10,30 Z" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.service-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-btn.primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    background-color: #f9fbfd;
    overflow: hidden;
    padding: 100px 0;
}

.why-choose-us .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-choose-us .section-subtitle {
    display: inline-block;
    color: var(--primary);
    background: rgba(45, 140, 240, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.why-choose-us .section-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    background: linear-gradient(90deg, #2d3e50, #1a73e8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-choose-us .section-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--primary), #4caf50);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: -1;
}

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

.feature-card:hover::before {
    height: 100%;
    width: 100%;
    opacity: 0.05;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(45, 140, 240, 0.1), rgba(76, 175, 80, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary), #4caf50);
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Feature Stats */
.feature-stats {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.feature-stats .stat {
    text-align: center;
}

.feature-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
    display: block;
}

.feature-stats .stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.feature-list i {
    color: #4caf50;
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
}

/* Eco Badge */
.eco-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 20px 0;
}

.eco-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Feature Tags */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    background: rgba(45, 140, 240, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    align-items: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    padding: 15px;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.guarantee-badge i {
    font-size: 2.5rem;
    color: #4caf50;
    margin-right: 15px;
}

.guarantee-badge div {
    line-height: 1.3;
}

.guarantee-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.guarantee-badge small {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose CTA */
.why-choose-cta {
    background: linear-gradient(135deg, var(--primary), #1a73e8);
    border-radius: 15px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(45, 140, 240, 0.3);
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

.why-choose-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-choose-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    max-width: 500px;
}

.why-choose-cta .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.why-choose-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #f5f9ff;
}

.why-choose-cta .btn i {
    transition: transform 0.3s ease;
}

.why-choose-cta .btn:hover i {
    transform: translateX(5px);
}

/* Pattern */
.why-choose-pattern {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
}

.why-choose-pattern img {
    width: 300px;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .why-choose-cta {
        padding: 40px;
    }
    
    .why-choose-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .why-choose-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .why-choose-cta .btn {
        margin-top: 25px;
    }
    
    .why-choose-cta::before {
        top: -100%;
        right: -50%;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 80px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 2rem;
    }
    
    .why-choose-us .section-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-cta h3 {
        font-size: 1.4rem;
    }
    
    .why-choose-cta p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
}

/* Animation for stats counter */
@keyframes countUp {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number.animated {
    animation: countUp 0.8s ease-out forwards;
}

/* Testimonial Slider */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.testimonial-content {
    text-align: center;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary);
    padding: 2px;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--dark);
    text-align: left;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray);
    display: block;
    text-align: left;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary), #1a73e8);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.cta-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text {
    flex: 1;
    padding-right: 50px;
}

.cta-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0 0 20px;
    line-height: 1.3;
    color: white;
}

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 600px;
}

.cta-features {
    margin-bottom: 35px;
}

.cta-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cta-feature i {
    color: #4caf50;
    margin-right: 12px;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn i {
    margin-right: 8px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.cta-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.cta-image:hover img {
    transform: scale(1.05);
}

.cta-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    border-radius: 12px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: rotate(5deg);
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-rating {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .cta-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-image {
        margin-top: 30px;
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-slider {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .why-choose-us {
        padding: 70px 0;
    }
    
    .why-choose-us .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .cta {
        padding: 80px 0 60px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-desc {
        font-size: 1.05rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }
    
    .badge-rating {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

/* Print Styles */
@media print {
    .service-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #eee;
        margin-bottom: 20px;
    }
    
    .service-card:hover {
        transform: none !important;
    }
    
    .service-cta, .services-nav {
        display: none !important;
    }
}

/* AOS Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Feature Testimonial */
.feature-testimonial {
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-testimonial::before {
    content: '"'; 
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(45, 140, 240, 0.1);
    line-height: 1;
    z-index: 0;
}

.feature-testimonial .testimonial-text {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.6;
}

.feature-testimonial .testimonial-author {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
    text-align: right;
}

/* Certification Badge */
.certification-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 140, 240, 0.1);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 140, 240, 0.3);
}

.certification-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Feature Benefit */
.feature-benefit {
    display: flex;
    align-items: center;
    margin-top: 12px;
    color: var(--gray);
    font-size: 0.95rem;
}

.feature-benefit i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.trust-item i {
    color: #ffd700;
    margin-right: 8px;
    font-size: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .feature-testimonial {
        padding: 15px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .feature-testimonial {
        margin-top: 15px;
    }
    
    .feature-benefit {
        font-size: 0.9rem;
    }
    
    .certification-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Testimonials Carousel */
.testimonials-carousel {
    background-color: #f9fbfd;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.testimonials-carousel .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonial-slide {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: rgba(45, 140, 240, 0.1);
    position: absolute;
    line-height: 1;
}

.testimonial-text::before {
    top: -15px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -30px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
    margin: 0;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info span {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(45, 140, 240, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e6ed;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.trustpilot-widget {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trustpilot-rating .stars {
    color: #00b67a;
    margin-right: 15px;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.trustpilot-rating span {
    color: var(--gray);
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 140, 240, 0.3);
}

/* Slick Slider Custom Styles */
.slick-slide {
    padding: 0 15px;
    outline: none;
}

.slick-list {
    margin: 0 -15px;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    color: var(--primary);
    opacity: 0.3;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonial-slide {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media (max-width: 767px) {
    .testimonials-carousel {
        padding: 80px 0;
    }
    
    .testimonial-slider {
        padding: 0 20px;
    }
    
    .testimonial-slide {
        padding: 25px 20px;
        margin: 0 5px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .trustpilot-widget {
        padding: 20px 15px;
    }
    
    .trustpilot-rating {
        flex-direction: column;
        gap: 10px;
    }
    
    .trustpilot-rating .stars {
        margin-right: 0;
    }
}
