:root {
    --primary-red: #ed1943;
    --dark-red: #b31217;
    --soft-bg: #fffcfc;
    --accent-gradient: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --card-shadow: 0 15px 35px rgba(237, 25, 67, 0.08);
}

body {
    background-color: var(--soft-bg);
    overflow-x: hidden;
}

/* Hero Section Enhancements */
.hero-section {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%), url("{{ asset('images/seo-1.jpg') }}");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23fffcfc' fill-opacity='1' d='M0,192L48,197.3C96,203,192,213,288,192C384,171,480,117,576,112C672,107,768,149,864,165.3C960,181,1056,171,1152,149.3C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-form {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(237, 25, 67, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

/* Floating Shapes */
.shape {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    filter: blur(2px);
}
.shape-1 { top: 10%; left: 5%; width: 100px; height: 100px; background: var(--primary-red); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; animation: morph 12s infinite linear; }
.shape-2 { bottom: 20%; right: 10%; width: 150px; height: 150px; border: 20px solid var(--primary-red); border-radius: 50%; }

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: var(--accent-gradient);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-red);
}

.service-card:hover::before {
    height: 100%;
}

.service-card i {
    display: inline-block;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-red);
    transition: all 0.5s ease;
}

.service-card:hover i {
    transform: rotateY(360deg);
}

/* Process Flow */
.process-container {
    position: relative;
    padding: 4rem 0;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(237, 25, 67, 0.1);
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .process-line { display: block; }
}

.process-step {
    background: #fff;
    width: 100%;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(237, 25, 67, 0.05);
    transition: 0.3s;
}

.process-step:hover {
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(237, 25, 67, 0.15);
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: -50px auto 20px;
    border: 5px solid var(--soft-bg);
    box-shadow: 0 10px 20px rgba(237, 25, 67, 0.3);
}

/* Stat Counter */
.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border-bottom: 5px solid var(--primary-red);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    display: block;
}

/* FAQ Customization */
.faq-button {
    border-radius: 15px !important;
    margin-bottom: 10px;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02) !important;
    transition: 0.3s;
}

.faq-button:not(.collapsed) {
    background: var(--accent-gradient) !important;
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(237, 25, 67, 0.2) !important;
}

/* CTA Polish */
.cta-box {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    padding: 5rem 2rem;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 500px; height: 500px;
    background: var(--primary-red);
    opacity: 0.1;
    border-radius: 50%;
}

/* Utilities */
.btn-grad-hover {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s;
    display: inline-block;
    box-shadow: 0 15px 30px rgba(237, 25, 67, 0.3);
}

.btn-grad-hover:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(237, 25, 67, 0.4);
    color: #fff;
}

.badge-pulse {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(237, 25, 67, 0.1);
    color: var(--primary-red);
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 10px; height: 10px;
    background: var(--primary-red);
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(237, 25, 67, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(237, 25, 67, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(237, 25, 67, 0); }
}