/* Global variables */
:root {
    --ec-primary: #2563eb;
    --ec-primary-dark: #1d4ed8;
    --ec-secondary: #0e1526;
    --ec-text-light: rgba(255,255,255,0.9);
    --ec-text-muted: rgba(255,255,255,0.7);
    --ec-shadow: 0 10px 30px rgba(0,0,0,0.3);
    --ec-border-radius: 12px;
}

/* Base styles */
body {
    background-color: #0a0f1a;
    color: var(--ec-text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header styles */
.ec-header {
    background-color: #11151c;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.ec-topbar {
    background-color: #0d121d;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ec-topbar-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--ec-text-muted);
    font-size: 14px;
}

.ec-topbar-contact i {
    color: var(--ec-primary);
    margin-right: 5px;
}

.ec-topbar-divider {
    width: 1px;
    height: 16px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px;
}

.ec-topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--ec-text-muted);
    font-size: 14px;
}

.ec-topbar-right i {
    color: var(--ec-primary);
    margin-right: 5px;
}

.ec-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--ec-text-light);
    transition: all 0.3s ease;
}

.ec-social-link:hover {
    background-color: var(--ec-primary);
    color: white;
    transform: translateY(-2px);
}

/* Navbar styles */
.navbar {
    background-color: #11151c !important;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white !important;
    font-weight: 700;
    font-size: 24px;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--ec-text-light) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--ec-primary) !important;
}

.dropdown-menu {
    background-color: #1a2133 !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
}

.dropdown-item {
    color: var(--ec-text-light) !important;
    padding: 10px 20px !important;
}

.dropdown-item:hover {
    background-color: var(--ec-primary) !important;
    color: white !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Button styles */
.ec-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.ec-btn-primary {
    background-color: var(--ec-primary);
    color: white;
}

.ec-btn-primary:hover {
    background-color: var(--ec-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37,99,235,0.4);
}

.ec-btn-outline {
    background-color: transparent;
    border-color: var(--ec-primary);
    color: var(--ec-primary);
}

.ec-btn-outline:hover {
    background-color: var(--ec-primary);
    color: white;
    transform: translateY(-2px);
}

.ec-btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.ec-btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero section styles */
.ec-hero-slider {
    position: relative;
    margin-top: 135px;
}

.ec-hero-content {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.ec-hero-badge {
    display: inline-block;
    background-color: var(--ec-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ec-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ec-hero-content p {
    font-size: 18px;
    color: var(--ec-text-muted);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: white;
    font-size: 24px;
}

/* Clients logos section */
.ec-clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
}

.ec-client-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--ec-text-muted);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ec-client-logo:hover {
    opacity: 1;
    color: var(--ec-primary);
    transform: scale(1.05);
}

/* Section header */
.ec-section-header {
    margin-bottom: 40px;
}

.ec-section-header .ec-label {
    display: inline-block;
    background-color: rgba(37,99,235,0.2);
    color: var(--ec-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.ec-section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.ec-label {
    display: inline-block;
    background-color: rgba(37,99,235,0.2);
    color: var(--ec-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

.ec-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--ec-text-muted);
    font-size: 16px;
}

.ec-feature-list li i {
    color: var(--ec-primary);
    font-size: 18px;
}

/* Card styles */
.ec-card {
    background-color: #1a2133;
    border-radius: var(--ec-border-radius);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.ec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ec-shadow);
    border-color: rgba(37,99,235,0.3);
}

.ec-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(37,99,235,0.2);
    border-radius: 12px;
    color: var(--ec-primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.ec-card h3,
.ec-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.ec-card h3 {
    font-size: 24px;
}

.ec-card h4 {
    font-size: 20px;
}

.ec-card p {
    color: var(--ec-text-muted);
    line-height: 1.6;
}

/* Counter styles */
.ec-counter {
    font-size: 36px;
    font-weight: 800;
    color: var(--ec-primary);
    margin: 15px 0;
}

/* Service card */
.ec-service-card {
    background-color: #1a2133;
    border-radius: var(--ec-border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.ec-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ec-shadow);
    border-color: rgba(37,99,235,0.3);
}

.ec-service-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.ec-service-body {
    padding: 25px;
}

.ec-service-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.ec-service-body p {
    color: var(--ec-text-muted);
    line-height: 1.6;
}

.ec-service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ec-service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--ec-primary);
}

/* Stats section */
.ec-stat-block {
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.ec-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--ec-primary);
    margin-bottom: 10px;
}

.ec-stat-label {
    font-size: 14px;
    color: var(--ec-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonial card */
.ec-testimonial-card {
    background-color: #1a2133;
    border-radius: var(--ec-border-radius);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.ec-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ec-shadow);
    border-color: rgba(37,99,235,0.3);
}

.ec-testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 16px;
}

.ec-testimonial-text {
    color: var(--ec-text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.ec-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ec-testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--ec-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.ec-testimonial-name {
    font-weight: 700;
    color: white;
}

.ec-testimonial-role {
    font-size: 14px;
    color: var(--ec-text-muted);
}

/* Blog card */
.ec-blog-card {
    background-color: #1a2133;
    border-radius: var(--ec-border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.ec-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ec-shadow);
    border-color: rgba(37,99,235,0.3);
}

.ec-blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.ec-blog-body {
    padding: 25px;
}

.ec-blog-category {
    display: inline-block;
    background-color: rgba(37,99,235,0.2);
    color: var(--ec-primary);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ec-blog-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.ec-blog-body h3 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ec-blog-body h3 a:hover {
    color: var(--ec-primary);
}

.ec-blog-body p {
    color: var(--ec-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ec-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ec-blog-meta span {
    color: var(--ec-text-muted);
    font-size: 14px;
}

.ec-card-link {
    color: var(--ec-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ec-card-link:hover {
    color: var(--ec-primary-dark);
}

/* Contact info card */
.ec-contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #1a2133;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.ec-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(37,99,235,0.2);
    border-radius: 10px;
    color: var(--ec-primary);
    font-size: 20px;
}

.ec-contact-info-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 5px;
}

.ec-contact-info-card p {
    color: var(--ec-text-muted);
    margin: 0;
}

/* Form styles */
.ec-form-wrapper {
    background-color: #1a2133;
    padding: 30px;
    border-radius: var(--ec-border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.ec-form .form-control,
.ec-form .form-select {
    background-color: #0d121d;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
}

.ec-form .form-control:focus,
.ec-form .form-select:focus {
    background-color: #0d121d;
    border-color: var(--ec-primary);
    color: white;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

.ec-form .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.ec-form .form-label {
    color: var(--ec-text-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.ec-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
}

/* Map wrapper */
.ec-map-wrapper {
    border-radius: var(--ec-border-radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Footer styles */
.ec-footer {
    background-color: #0d121d;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.ec-footer-brand img {
    height: 40px;
}

.ec-footer-brand span {
    color: white;
    font-weight: 700;
    font-size: 24px;
}

.ec-footer p {
    color: var(--ec-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ec-footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.ec-footer-links a {
    color: var(--ec-text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ec-footer-links a:hover {
    color: var(--ec-primary);
    transform: translateX(5px);
}

.ec-footer-links i {
    font-size: 12px;
    color: var(--ec-primary);
}

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

.ec-footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--ec-text-muted);
}

.ec-footer-contact i {
    color: var(--ec-primary);
}

.ec-social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.ec-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--ec-text-light);
    transition: all 0.3s ease;
}

.ec-social-links a:hover {
    background-color: var(--ec-primary);
    color: white;
    transform: translateY(-3px);
}

.ec-footer-bottom {
    background-color: #080c14;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Cookie banner styles */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #11151c;
    color: #ffffff;
    padding: 16px 24px;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .35);
    font-size: 14px;
    line-height: 1.5;
    transform: translateY(120%);
    transition: transform .4s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-banner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(37,99,235,0.2);
    border-radius: 8px;
    color: var(--ec-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.cookie-banner-text h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.cookie-banner-text p {
    color: var(--ec-text-muted);
    margin: 0;
}

.cookie-banner-text a {
    color: var(--ec-primary);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cookie-banner-actions .btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.cookie-banner-actions .accept-cookies {
    background-color: var(--ec-primary);
    color: white;
    border: none;
}

.cookie-banner-actions .accept-cookies:hover {
    background-color: var(--ec-primary-dark);
}

.cookie-banner-actions .reject-cookies {
    background-color: transparent;
    color: var(--ec-text-muted);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-banner-actions .reject-cookies:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .ec-hero-slider {
        margin-top: 185px;
    }
    
    .ec-hero-content {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .ec-hero-content h1 {
        font-size: 36px;
    }
    
    .ec-hero-content p {
        font-size: 16px;
    }
    
    .ec-section-header h2 {
        font-size: 28px;
    }
    
    .ec-stat-value {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .ec-hero-slider {
        margin-top: 200px;
    }
    
    .ec-hero-content {
        min-height: 400px;
        padding: 40px 0;
    }
    
    .ec-hero-content h1 {
        font-size: 28px;
    }
    
    .ec-hero-content p {
        font-size: 14px;
    }
    
    .ec-section-header h2 {
        font-size: 24px;
    }
    
    .ec-clients-logos {
        gap: 20px;
    }
    
    .ec-client-logo {
        font-size: 18px;
    }
    
    .ec-stat-value {
        font-size: 28px;
    }
    
    .ec-footer {
        padding: 40px 0 20px;
    }
}

/* Hero inner section */
.ec-hero-inner {
    margin-top: 135px;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.ec-hero-inner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ec-hero-inner-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ec-hero-inner-content p {
    font-size: 18px;
    color: var(--ec-text-muted);
    margin-bottom: 30px;
}

/* Price card styles */
.ec-price-card {
    background-color: #1a2133;
    border-radius: var(--ec-border-radius);
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ec-price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ec-shadow);
    border-color: rgba(37,99,235,0.3);
}

.ec-price-featured {
    background: linear-gradient(145deg, #1a2133 0%, #1e2942 100%);
    border: 2px solid var(--ec-primary);
    box-shadow: 0 10px 40px rgba(37,99,235,0.2);
}

.ec-price-featured:hover {
    box-shadow: 0 15px 50px rgba(37,99,235,0.3);
}

.ec-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ec-primary), var(--ec-primary-dark));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37,99,235,0.4);
}

.ec-price-name {
    font-size: 28px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.ec-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--ec-primary);
    text-align: center;
    margin-bottom: 10px;
}

.ec-price-amount span {
    font-size: 24px;
    color: var(--ec-text-muted);
    font-weight: 500;
}

.ec-price-period {
    text-align: center;
    color: var(--ec-text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ec-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.ec-price-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--ec-text-muted);
    font-size: 15px;
}

.ec-price-card ul li i {
    font-size: 16px;
}

.ec-price-card ul li i.fa-check {
    color: #10b981;
}

.ec-price-card ul li i.fa-times {
    color: #ef4444;
}

.ec-price-card .ec-btn {
    width: 100%;
    text-align: center;
}

/* Accordion styles for FAQ */
.ec-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.ec-accordion .accordion-item {
    background-color: #1a2133;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.ec-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.ec-accordion .accordion-button {
    background-color: transparent;
    color: var(--ec-text-light);
    font-weight: 600;
    padding: 20px 24px;
    border: none;
    box-shadow: none;
}

.ec-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(37,99,235,0.1);
    color: var(--ec-primary);
    box-shadow: none;
}

.ec-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(37,99,235,0.3);
}

.ec-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.ec-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
    transform: rotate(-180deg);
}

.ec-accordion .accordion-body {
    background-color: rgba(0,0,0,0.2);
    color: var(--ec-text-muted);
    padding: 20px 24px;
    line-height: 1.6;
}

.ec-accordion .accordion-body a {
    color: var(--ec-primary);
    text-decoration: underline;
}

.ec-accordion .accordion-body a:hover {
    color: var(--ec-primary-dark);
}

/* Service hero styles */
.ec-service-hero {
    margin-top: 135px;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
}

.ec-service-hero-content {
    max-width: 900px;
}

.ec-service-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ec-service-hero-content p {
    font-size: 18px;
    color: var(--ec-text-muted);
    margin-bottom: 30px;
    max-width: 700px;
}

/* Hero stats */
.ec-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ec-hero-stat {
    flex: 1;
    min-width: 200px;
}

.ec-hero-stat-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--ec-primary);
    margin-bottom: 10px;
}

.ec-hero-stat-label {
    font-size: 14px;
    color: var(--ec-text-muted);
    line-height: 1.4;
}

/* Timeline styles */
.ec-timeline {
    position: relative;
    padding: 40px 0;
}

.ec-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--ec-primary), rgba(37,99,235,0.1));
}

.ec-timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
    text-align: right;
}

.ec-timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
}

.ec-timeline-item::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 20px;
    width: 16px;
    height: 16px;
    background-color: var(--ec-primary);
    border-radius: 50%;
    border: 3px solid #1a2133;
    z-index: 1;
}

.ec-timeline-item:nth-child(even)::before {
    right: auto;
    left: -8px;
}

.ec-timeline-content {
    background-color: #1a2133;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.ec-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--ec-shadow);
    border-color: rgba(37,99,235,0.3);
}

.ec-timeline-date {
    display: inline-block;
    background-color: var(--ec-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.ec-timeline-content h4 {
    color: white;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.ec-timeline-content p {
    color: var(--ec-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Gallery styles */
.ec-gallery-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ec-gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--ec-shadow);
}

.ec-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ec-gallery-item:hover .ec-gallery-overlay {
    opacity: 1;
}

.ec-gallery-overlay h5 {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

/* Responsive styles for service page elements */
@media (max-width: 991.98px) {
    .ec-service-hero {
        margin-top: 185px;
        min-height: 500px;
        padding: 60px 0;
    }
    
    .ec-service-hero-content h1 {
        font-size: 36px;
    }
    
    .ec-service-hero-content p {
        font-size: 16px;
    }
    
    .ec-hero-stats {
        gap: 20px;
    }
    
    .ec-hero-stat-value {
        font-size: 32px;
    }
    
    .ec-hero-stat-label {
        font-size: 12px;
    }
    
    .ec-timeline::before {
        left: 20px;
    }
    
    .ec-timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 50px;
        text-align: left;
        margin-left: 0;
    }
    
    .ec-timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
    }
    
    .ec-timeline-item::before {
        left: 12px;
        right: auto;
    }
    
    .ec-timeline-item:nth-child(even)::before {
        left: 12px;
    }
    
    .ec-gallery-item {
        height: 200px;
    }
}

/* Clear fixed header overlap on service hero for mobile/tablet */
@media (max-width: 991.98px) {
    .ec-hero-inner {
        margin-top: 185px;
        min-height: 400px;
        padding: 60px 0;
    }
    
    .ec-hero-inner-content h1 {
        font-size: 36px;
    }
    
    .ec-hero-inner-content p {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .ec-hero-inner {
        margin-top: 200px;
        min-height: 350px;
        padding: 40px 0;
    }
    
    .ec-hero-inner-content {
        padding-top: 20px;
    }
    
    .ec-hero-inner-content h1 {
        font-size: 28px;
    }
    
    .ec-hero-inner-content p {
        font-size: 14px;
    }
    
    .ec-price-card {
        padding: 30px 20px;
    }
    
    .ec-price-name {
        font-size: 24px;
    }
    
    .ec-price-amount {
        font-size: 36px;
    }
    
    .ec-price-amount span {
        font-size: 18px;
    }
    
    .ec-accordion .accordion-button {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .ec-accordion .accordion-body {
        padding: 16px 20px;
        font-size: 14px;
    }
    
    /* Mobile styles for service page */
    .ec-service-hero {
        margin-top: 200px;
        min-height: 400px;
        padding: 40px 0;
    }
    
    .ec-service-hero-content h1 {
        font-size: 28px;
    }
    
    .ec-service-hero-content p {
        font-size: 14px;
    }
    
    .ec-hero-stats {
        gap: 15px;
        margin-top: 30px;
    }
    
    .ec-hero-stat {
        min-width: 150px;
    }
    
    .ec-hero-stat-value {
        font-size: 28px;
    }
    
    .ec-hero-stat-label {
        font-size: 11px;
    }
    
    .ec-timeline {
        padding: 20px 0;
    }
    
    .ec-timeline-item {
        margin-bottom: 30px;
        padding-left: 40px;
    }
    
    .ec-timeline-item:nth-child(even) {
        padding-left: 40px;
    }
    
    .ec-timeline-content {
        padding: 20px;
    }
    
    .ec-timeline-date {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .ec-timeline-content h4 {
        font-size: 16px;
    }
    
    .ec-gallery-item {
        height: 180px;
    }
    
    .ec-gallery-overlay h5 {
        font-size: 14px;
    }
}
