/* ========================================
   Just 2 Fix It — Custom Styles
   ======================================== */

/* --- Geometric Background Shapes --- */
.geometric-shapes {
    opacity: 0.6;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 187, 106, 0.15) 0%, transparent 70%);
    top: 15%;
    right: -5%;
}

.geo-circle--2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    bottom: 20%;
    left: -3%;
}

.geo-circle--3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(27, 94, 32, 0.1) 0%, transparent 70%);
    top: 60%;
    right: 15%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
}

.geo-triangle--1 {
    top: 40%;
    left: 5%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(102, 187, 106, 0.12);
    transform: rotate(-15deg);
}

.geo-square {
    position: absolute;
    border-radius: 16px;
}

.geo-square--1 {
    width: 80px;
    height: 80px;
    background: rgba(251, 191, 36, 0.1);
    bottom: 15%;
    right: 8%;
    transform: rotate(25deg);
}

/* --- Hero Gradient --- */
.hero__gradient {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 30%, #a5d6a7 60%, #66bb6a 100%);
}

/* --- Hero Scroll Indicator --- */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.scroll-indicator__line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #1B5E20, transparent);
    border-radius: 1px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* --- Section Shared --- */
.section__label {
    letter-spacing: 0.05em;
}

.section__title {
    line-height: 1.15;
}

.section__title--light {
    color: #ffffff;
}

.section__subtitle--light {
    color: rgba(255, 255, 255, 0.7);
}

.section__label--light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn--primary {
    background: #1B5E20;
    color: #ffffff;
    padding: 14px 28px;
}

.btn--primary:hover {
    background: #145019;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.3);
}

.btn--outline {
    background: transparent;
    color: #1B5E20;
    padding: 14px 28px;
    border: 2px solid #1B5E20;
}

.btn--outline:hover {
    background: #1B5E20;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--white {
    background: #ffffff;
    color: #1B5E20;
    padding: 14px 28px;
}

.btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--lg {
    font-size: 1rem;
    padding: 16px 32px;
}

.btn--full {
    width: 100%;
    padding: 16px 28px;
    font-size: 1rem;
}

/* --- Service Cards --- */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1B5E20, #66bb6a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

/* --- Process Cards --- */
.process-card__icon {
    backdrop-filter: blur(4px);
}

/* --- Testimonial Cards --- */
.testimonial-card {
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: #c8e6c9;
    line-height: 1;
    pointer-events: none;
}

/* --- Input Styles --- */
.input {
    font-size: 0.95rem;
}

.input:focus {
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

/* --- Navigation --- */
.nav {
    background: rgba(250, 250, 247, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 230, 201, 0.5);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(27, 94, 32, 0.08);
}

.nav__logo {
    color: #1B5E20;
}

.nav__logo-icon {
    color: #1B5E20;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .scroll-indicator__line {
        animation: none;
    }
    .service-card::before {
        transform: scaleX(1);
    }
    .gallery__photo img {
        transition: none;
    }
}

/* --- Footer --- */
.footer__logo {
    color: #ffffff;
}

.footer__logo-icon {
    color: #ffffff;
}

.footer__divider {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero__headline {
        font-size: 2.75rem;
    }

    .hero__subheadline {
        font-size: 1.125rem;
    }

    .section__title {
        font-size: 2.25rem;
    }

    .about__image-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        max-width: 100%;
    }

    .about__image-secondary {
        display: none;
    }

    .testimonial-card::after {
        font-size: 4rem;
        top: 12px;
        right: 16px;
    }
}

@media (max-width: 640px) {
    .hero__headline {
        font-size: 2.25rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .section__title {
        font-size: 2rem;
    }

    .cta-banner__shape1,
    .cta-banner__shape2 {
        display: none;
    }
}
