/* ========================================
   HOME PAGE SPECIFIC STYLES - COMPLETE
   ======================================== */

@import 'style.css';

/* ========================================
   HERO SECTION
   ======================================== */

.home-hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-carousel .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.95));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: white;
    color: var(--primary-600);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-50);
    color: var(--primary-700);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary-600);
    border-color: white;
    transform: translateY(-3px);
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* ========================================
   FEATURED SERVICES SECTION
   ======================================== */

.featured-services-section {
    padding: var(--space-3xl) 0;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.featured-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--neutral-800);
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-header p {
    color: var(--neutral-500);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.featured-services-carousel-container {
    position: relative;
    margin-top: var(--space-2xl);
    padding: 0 50px;
    z-index: 2;
}

.featured-services-swiper {
    width: 100%;
    padding: 20px 0 60px;
}

.featured-service-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
    border: 1px solid var(--neutral-200);
    position: relative;
}

.featured-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.featured-service-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.featured-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-service-card:hover .featured-service-image img {
    transform: scale(1.1);
}

.featured-service-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: pulse 2s infinite;
}

.featured-service-content {
    padding: var(--space-xl);
}

.featured-service-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.featured-service-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-800);
    font-weight: 700;
}

.featured-service-description {
    color: var(--neutral-600);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.featured-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.featured-service-feature {
    background: var(--neutral-100);
    color: var(--neutral-600);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.featured-service-card:hover .featured-service-feature {
    background: var(--primary-50);
    color: var(--primary-600);
}

.featured-service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-200);
}

.featured-service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-600);
}

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

.featured-service-btn {
    padding: 0.6rem 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-service-btn:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.featured-service-btn i {
    transition: transform var(--transition-fast);
}

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

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    padding: var(--space-3xl) 0;
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.feature-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--neutral-200);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-600);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg) scale(1.1);
}

.feature-card h3 {
    margin-bottom: var(--space-md);
    color: var(--neutral-800);
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
    flex: 1;
    line-height: 1.6;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-600);
    font-weight: 600;
    margin-top: auto;
    text-decoration: none;
    transition: gap var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--primary-50);
}

.feature-link:hover {
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
}

/* ========================================
   FEATURED PROJECTS SECTION
   ======================================== */

.featured-projects-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--neutral-50), white);
    position: relative;
    overflow: hidden;
}

.featured-projects-carousel-container {
    position: relative;
    margin-top: var(--space-2xl);
    padding: 0 50px;
}

.featured-projects-swiper {
    width: 100%;
    padding: 20px 0 60px;
}

.featured-project-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
}

.featured-project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.featured-project-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-project-card:hover .featured-project-image img {
    transform: scale(1.1);
}

.featured-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.featured-project-card:hover .featured-project-overlay {
    opacity: 1;
}

.featured-project-category {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.featured-project-card:hover .featured-project-category {
    transform: translateY(0);
}

.featured-project-content {
    padding: var(--space-xl);
}

.featured-project-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-800);
    font-weight: 700;
}

.featured-project-description {
    color: var(--neutral-600);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.featured-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.featured-project-tag {
    background: var(--primary-50);
    color: var(--primary-600);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}

.featured-project-card:hover .featured-project-tag {
    background: var(--gradient-primary);
    color: white;
}

.featured-project-meta {
    display: flex;
    gap: var(--space-lg);
    color: var(--neutral-500);
    font-size: 0.9rem;
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-200);
}

.featured-project-meta i {
    color: var(--primary-500);
    margin-right: 0.3rem;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-900), var(--secondary-900));
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30 Z" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.1;
    pointer-events: none;
    animation: move 20s linear infinite;
}

@keyframes move {
    from { transform: translate(0, 0); }
    to { transform: translate(60px, 60px); }
}

.stats-section .section-header h2,
.stats-section .section-header p {
    color: white;
}

.stats-section .section-header h2::after {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: white;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-2xl);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all var(--transition-base);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-carousel-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.testimonials-carousel-container {
    margin-top: var(--space-2xl);
}

.testimonials-swiper {
    width: 100%;
    padding: 20px 0 60px;
}

.testimonial-slide {
    height: auto;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    border: 1px solid var(--neutral-200);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--primary-100);
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
    transition: all var(--transition-base);
}

.testimonial-card:hover::before {
    color: var(--primary-300);
    transform: scale(1.1);
}

.testimonial-content {
    margin-bottom: var(--space-lg);
    color: var(--neutral-600);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-100);
    transition: all var(--transition-base);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--primary-400);
    transform: scale(1.05);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    color: var(--neutral-800);
    font-size: 1.1rem;
}

.testimonial-info p {
    color: var(--neutral-500);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.9rem;
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   CTA SECTION - FULLY CENTERED
   ======================================== */

.cta-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--primary-600), var(--secondary-600));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.cta-section .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--space-md);
    font-size: clamp(2rem, 4vw, 3rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
    font-weight: 700;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-xl);
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.cta-section .hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-600);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-section .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: var(--primary-50);
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-600);
    border-color: white;
    transform: translateY(-5px) scale(1.05);
}

/* Floating animation for CTA buttons */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    animation: float 3s ease-in-out infinite;
}

.cta-section .btn-primary {
    animation-delay: 0s;
}

.cta-section .btn-secondary {
    animation-delay: 0.5s;
}

/* CTA Particles */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particle 10s infinite linear;
}

/* ========================================
   CAROUSEL NAVIGATION
   ======================================== */

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    color: var(--primary-600);
    transition: all var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: 700;
}

.swiper-pagination {
    position: relative;
    margin-top: var(--space-xl);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--neutral-300);
    opacity: 0.5;
    transition: all var(--transition-base);
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: var(--gradient-primary);
    opacity: 1;
}

/* ========================================
   SKELETON LOADING
   ======================================== */

.skeleton-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.skeleton-image {
    height: 200px;
    background: linear-gradient(
        90deg,
        var(--neutral-200) 25%,
        var(--neutral-300) 50%,
        var(--neutral-200) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-content {
    padding: var(--space-lg);
}

.skeleton-text {
    height: 20px;
    background: var(--neutral-200);
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-sm);
    background: linear-gradient(
        90deg,
        var(--neutral-200) 25%,
        var(--neutral-300) 50%,
        var(--neutral-200) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-text.short { width: 40%; }
.skeleton-text.medium { width: 70%; }

.skeleton-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neutral-200);
    margin: 0 auto;
    background: linear-gradient(
        90deg,
        var(--neutral-200) 25%,
        var(--neutral-300) 50%,
        var(--neutral-200) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

.skeleton-tag {
    width: 60px;
    height: 24px;
    background: var(--neutral-200);
    border-radius: var(--radius-full);
    background: linear-gradient(
        90deg,
        var(--neutral-200) 25%,
        var(--neutral-300) 50%,
        var(--neutral-200) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@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);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in { animation: fadeIn 1s ease; }
.fade-in-up { animation: fadeInUp 1s ease; }
.fade-in-left { animation: fadeInLeft 1s ease; }
.fade-in-right { animation: fadeInRight 1s ease; }
.scale-in { animation: scaleIn 0.5s ease; }

/* Delay Classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet Landscape */
@media (max-width: 992px) {
    .featured-services-carousel-container,
    .featured-projects-carousel-container {
        padding: 0 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .featured-services-carousel-container,
    .featured-projects-carousel-container {
        padding: 0 20px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .cta-section .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .featured-services-carousel-container,
    .featured-projects-carousel-container {
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .featured-service-card .featured-service-content,
    .featured-project-card .featured-project-content {
        padding: var(--space-lg);
    }
    
    .cta-section {
        min-height: 350px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .hero-carousel-container,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination,
    .cta-section .btn,
    .feature-link {
        display: none !important;
    }
    
    .featured-service-card,
    .feature-card,
    .featured-project-card,
    .testimonial-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}