/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-red);
    opacity: 0.1;
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--primary-red);
    position: relative;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.btn-primary-custom {
    background: var(--primary-red);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
    background: #d32f3c;
}

.btn-secondary-custom {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-secondary-custom:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
}

.value-card {
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--light-bg);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(180deg);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
}

.services-section .section-title,
.services-section .section-subtitle {
    color: var(--white);
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-slide {
    padding: 3rem;
    background: var(--light-bg);
    border-radius: 20px;
    margin: 0 1rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-red);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.author-info h4 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-red);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Slick Carousel Custom Styles */
.slick-dots li button:before {
    color: var(--primary-red);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.slick-prev, .slick-next {
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    color: var(--primary-red);
}

/* Modern Hero Image */
.modern-hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.image-wrapper {
    position: relative;
    perspective: 1000px;
}

.main-hero-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: block;
}

.main-hero-img:hover {
    transform: translateY(-10px);
}

/* Floating animated elements */
.floating-element {
    position: absolute;
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

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

.float-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(230, 57, 70, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.float-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
    border-color: var(--primary-red);
}

.float-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff6b6b 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
}

.float-text {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
    white-space: nowrap;
}

/* Animated Characters */
.animated-character {
    position: fixed;
    bottom: 0;
    z-index: 9999;
}

.character-1 {
    left: -100px;
    animation: walkAcross 15s ease-in-out infinite;
}

.character-2 {
    right: -100px;
    animation: walkFromRight 18s ease-in-out infinite;
    animation-delay: 8s;
}

.character-cat {
    animation: catWalkAlternating 70s ease-in-out infinite;
    cursor: pointer;
}

.character-cat:hover {
    animation-play-state: paused;
}

.character-cat .interaction-bubble.purring {
    opacity: 1;
    transform: translateX(-50%) scaleX(-1) scale(1);
}

@keyframes walkAcross {
    0% {
        left: -100px;
        transform: scaleX(-1);
    }
    25% {
        left: 20%;
        transform: scaleX(-1);
    }
    30% {
        left: 20%;
        transform: scaleX(-1) translateY(-20px);
    }
    35% {
        left: 20%;
        transform: scaleX(-1) translateY(0);
    }
    50% {
        left: 50%;
        transform: scaleX(-1);
    }
    55% {
        left: 50%;
        transform: scaleX(-1) translateY(-30px) rotate(10deg);
    }
    60% {
        left: 50%;
        transform: scaleX(-1) translateY(0) rotate(0deg);
    }
    75% {
        left: 80%;
        transform: scaleX(-1);
    }
    100% {
        left: 110%;
        transform: scaleX(-1);
    }
}

@keyframes walkFromRight {
    0% {
        right: -100px;
        transform: scaleX(1);
    }
    30% {
        right: 25%;
        transform: scaleX(1);
    }
    35% {
        right: 25%;
        transform: scaleX(1) translateY(-25px);
    }
    40% {
        right: 25%;
        transform: scaleX(1) translateY(0);
    }
    60% {
        right: 60%;
        transform: scaleX(1);
    }
    65% {
        right: 60%;
        transform: scaleX(1) scale(1.2);
    }
    70% {
        right: 60%;
        transform: scaleX(1) scale(1);
    }
    100% {
        right: 110%;
        transform: scaleX(1);
    }
}

@keyframes catWalkAlternating {
    /* First cycle: Left to Right (0-42.8% of 70s = 0-30s) */
    0% {
        left: -100px;
        right: auto;
        transform: scaleX(-1);
        opacity: 1;
    }
    10% {
        left: 20%;
        right: auto;
        transform: scaleX(-1);
        opacity: 1;
    }
    16% {
        left: 20%;
        right: auto;
        transform: scaleX(-1);
        opacity: 1;
    }
    26% {
        left: 50%;
        right: auto;
        transform: scaleX(-1);
        opacity: 1;
    }
    32% {
        left: 50%;
        right: auto;
        transform: scaleX(-1);
        opacity: 1;
    }
    42.8% {
        left: 110%;
        right: auto;
        transform: scaleX(-1);
        opacity: 1;
    }

    /* Delay (42.8-57% of 70s = 30-40s) - cat is off screen */
    42.9%, 56.9% {
        left: 110%;
        right: auto;
        opacity: 0;
        transform: scaleX(-1);
    }

    /* Second cycle: Right to Left (57-100% of 70s = 40-70s) */
    57% {
        left: auto;
        right: -100px;
        opacity: 1;
        transform: scaleX(1);
    }
    67% {
        left: auto;
        right: 20%;
        opacity: 1;
        transform: scaleX(1);
    }
    73% {
        left: auto;
        right: 20%;
        opacity: 1;
        transform: scaleX(1);
    }
    83% {
        left: auto;
        right: 50%;
        opacity: 1;
        transform: scaleX(1);
    }
    89% {
        left: auto;
        right: 50%;
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        left: auto;
        right: 110%;
        opacity: 1;
        transform: scaleX(1);
    }
}

.character-body {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Walking animation for arms and legs */
.arm-left, .leg-right {
    animation: swingForward 0.6s ease-in-out infinite;
    transform-origin: top center;
}

.arm-right, .leg-left {
    animation: swingBackward 0.6s ease-in-out infinite;
    transform-origin: top center;
}

.arm-left-2, .leg-right-2 {
    animation: swingForward 0.5s ease-in-out infinite;
    transform-origin: top center;
}

.arm-right-2, .leg-left-2 {
    animation: swingBackward 0.5s ease-in-out infinite;
    transform-origin: top center;
}

/* Cat leg animations */
.cat-leg-1, .cat-leg-3 {
    animation: catLegForward 0.4s ease-in-out infinite;
    transform-origin: top center;
}

.cat-leg-2, .cat-leg-4 {
    animation: catLegBackward 0.4s ease-in-out infinite;
    transform-origin: top center;
}

.cat-tail {
    animation: tailWag 1s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes catLegForward {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(20deg);
    }
}

@keyframes catLegBackward {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-20deg);
    }
}

@keyframes tailWag {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

@keyframes swingForward {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(15deg);
    }
}

@keyframes swingBackward {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-15deg);
    }
}

.interaction-bubble {
    position: absolute;
    top: -40px;
    left: 50%;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    white-space: nowrap;
    opacity: 0;
}

.character-1 .interaction-bubble {
    animation: bubblePop1 2s ease-in-out;
    animation-delay: 3.5s;
    transform: translateX(-50%) scaleX(-1);
}

.character-2 .interaction-bubble {
    animation: bubblePop2 2s ease-in-out;
    animation-delay: 11.5s;
    transform: translateX(-50%) scaleX(1);
}

.character-cat .interaction-bubble {
    opacity: 0;
    transform: translateX(-50%) scaleX(-1) scale(0);
    transition: all 0.3s ease-in-out;
}

.character-cat .interaction-bubble.show {
    opacity: 1;
    transform: translateX(-50%) scaleX(-1) scale(1);
}

.character-cat .interaction-bubble.show.flip-text {
    transform: translateX(-50%) scaleX(1) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-secondary-custom {
        margin-left: 0;
        margin-top: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .slick-arrow {
        &.slick-prev {
            left: 0;
        }
        &.slick-next {
            right: 0;
        }
    }
}