/* Enhanced Colors and Visual Appeal */

/* Colorful Service Cards */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 4px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:nth-child(1) {
    border-top-color: #f59e0b;
}

.service-card:nth-child(1):hover {
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.service-card:nth-child(2) {
    border-top-color: #8b5cf6;
}

.service-card:nth-child(2):hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.service-card:nth-child(3) {
    border-top-color: #10b981;
}

.service-card:nth-child(3):hover {
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    transform: translateY(-10px) scale(1.02);
}

.service-image-wrapper {
    margin-bottom: 1rem;
}

/* Feature Items with Colors */
.feature-item:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Colorful Buttons */
.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Colorful Sections */
.services-overview {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.why-choose-us {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

/* Process Steps with Colors */
.process-step:nth-child(1) {
    border-top: 4px solid #0ea5e9;
}

.process-step:nth-child(2) {
    border-top: 4px solid #f59e0b;
}

.process-step:nth-child(3) {
    border-top: 4px solid #8b5cf6;
}

.process-step:nth-child(4) {
    border-top: 4px solid #10b981;
}

.process-step:nth-child(5) {
    border-top: 4px solid #ec4899;
}

/* Portfolio Items */
.portfolio-item:nth-child(odd) {
    border-left: 4px solid var(--primary-color);
}

.portfolio-item:nth-child(even) {
    border-left: 4px solid var(--accent-color);
}

/* Region Feature Cards */
.region-feature-card:nth-child(1) {
    border-top: 4px solid #0ea5e9;
}

.region-feature-card:nth-child(2) {
    border-top: 4px solid #f59e0b;
}

.region-feature-card:nth-child(3) {
    border-top: 4px solid #8b5cf6;
}

.region-feature-card:nth-child(4) {
    border-top: 4px solid #10b981;
}

/* Enhanced Shadows */
.service-card,
.feature-item,
.portfolio-item,
.process-step {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-card:hover,
.feature-item:hover,
.portfolio-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Colorful Gradients for Sections */
.section-title {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Enhanced Pricing Box */
.pricing-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

/* Footer Gradient */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

/* Blog Cards */
.blog-card {
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.blog-card:nth-child(odd) {
    border-top-color: #0ea5e9;
}

.blog-card:nth-child(even) {
    border-top-color: #f59e0b;
}

/* Contact Form Enhancement */
.contact-form-wrapper {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

/* More Content Spacing */

.container {
    max-width: 1400px;
    padding: 0 2rem;
}

/* Larger Typography */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Colorful Service Links */
.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 1rem;
    transform: translateX(5px);
}

/* Stats Animation */
.stat-number {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--accent-color);
}
