/* Homepage specific styles - PREMIUM REDESIGN */

/* ===== HERO SECTION ===== */
.hero {
    padding: 12rem 0 8rem;
    /* More breathing room */
    background: linear-gradient(135deg, #fef3e7 0%, #ffe8d6 25%, #ffd6ba 50%, #ffe8d6 75%, #fef3e7 100%);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 102, 60, 0.05) 0%, transparent 50%);
    animation: floatBg 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatBg {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(5%, 5%) rotate(5deg);
    }

    50% {
        transform: translate(0, 10%) rotate(0deg);
    }

    75% {
        transform: translate(-5%, 5%) rotate(-5deg);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    /* More space */
    align-items: center;
}

.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Slightly smaller to ensure clean wrapping */
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.hero-description {
    font-size: 1.15rem;
    /* Slightly smaller */
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s var(--transition-smooth);
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 8rem 0;
    /* More breathing room */
}

.section-alt {
    background: linear-gradient(to bottom, var(--muted), var(--background));
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    /* More space */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.25rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    /* Slightly smaller */
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--foreground);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    /* Slightly smaller */
    color: var(--muted-foreground);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== PREMIUM PROCESS CARDS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.process-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: all 0.4s var(--transition-smooth);
    text-align: center;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-smooth);
}

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

.process-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 102, 60, 0.03), rgba(212, 165, 116, 0.03));
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
    border-radius: 24px;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(201, 102, 60, 0.2);
}

.process-card:hover::after {
    opacity: 1;
}

.process-number {
    position: relative;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    border-radius: 20px;
    display: flex;
    margin: 0 auto 2rem;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(201, 102, 60, 0.3);
    transition: all 0.4s var(--transition-smooth);
    z-index: 1;
}

.process-card:hover .process-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(201, 102, 60, 0.4);
}

.process-card h3 {
    position: relative;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--foreground);
    z-index: 1;
    line-height: 1.3;
}

.process-card p {
    position: relative;
    color: var(--muted-foreground);
    line-height: 1.8;
    font-size: 0.95rem;
    z-index: 1;
}

/* ===== PREMIUM TESTIMONIAL ===== */
.testimonials-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: rgba(201, 102, 60, 0.08);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #facc15;
    filter: drop-shadow(0 2px 4px rgba(250, 204, 21, 0.3));
}

.testimonial-text {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 12px rgba(201, 102, 60, 0.3);
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--foreground);
    margin-bottom: 0.15rem;
}

.testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 0.25rem;
    transition: all 0.2s var(--transition-smooth);
}

.testimonial-link:hover {
    gap: 0.75rem;
    color: var(--accent-light);
}

.testimonial-business-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-mini {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--muted);
    color: var(--foreground);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s var(--transition-smooth);
    border: 1px solid var(--border);
}

.btn-mini:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ===== BENEFITS COMPACT GRID ===== */
.benefits-compact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.benefits-compact-grid>div {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--transition-smooth);
}

.benefits-compact-grid>div:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 102, 60, 0.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #c9663c 0%, #d4a574 50%, #e07b4f 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.btn-cta {
    background: white;
    color: var(--accent);
    padding: 1.35rem 3rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .testimonials-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-image {
        order: -1;
    }

    .benefits-compact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero {
        padding: 9rem 0 5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
    }

    .process-card {
        padding: 2.5rem 2rem;
    }

    .benefits-compact-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    .benefits-compact-grid>div {
        padding: 1.5rem 1rem !important;
    }

    .testimonials-list {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 2.5rem 2rem !important;
        border-radius: 24px;
        text-align: center;
    }

    .testimonial-stars,
    .testimonial-author {
        justify-content: center;
    }

    .testimonial-business-links {
        justify-content: center;
    }

    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .testimonial-stars svg {
        width: 22px;
        height: 22px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .benefits-compact-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .benefits-compact-grid>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-card {
        padding: 2rem 1.5rem !important;
    }

    .testimonial-card::before {
        font-size: 5rem;
        top: 1rem;
        left: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .testimonial-stars svg {
        width: 20px;
        height: 20px;
    }
}