/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #32373c;
    background: linear-gradient(135deg, #d5e8d6 0%, #f5f9f5 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Honeypot Trap - Hidden from users but accessible to bots */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    background: white;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 100%;
    box-sizing: border-box;
}

.logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
}

.mobile-stars {
    display: none;
}

/* Reviews Carousel */
.reviews-carousel {
    flex: 1;
    max-width: 500px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.review-container {
    position: relative;
    height: 220px;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    padding: 20px;
    background: #fefff8;
    border-radius: 16px;
    border: 2px solid #d5e8d6;
    height: 100%;
}

.review-slide.active {
    display: block;
    opacity: 1;
}

.review-slide .stars {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffa500;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #32373c;
    font-style: italic;
    margin-bottom: 15px;
}

.review-text-mobile {
    display: none;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2c8e31;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #2c8e31;
}

.reviewer-name {
    font-weight: 600;
    color: #2c8e31;
    font-size: 0.95rem;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d5e8d6;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #2c8e31;
}

/* Main Content Layout */
.content {
    margin-top: 30px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Messaging Section */
.messaging {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.messaging h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #2c8e31;
}

.lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #32373c;
}

.benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #32373c;
}

.checkmark {
    background: #2c8e31;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
    color: white;
}

.trust-indicators {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #d5e8d6;
}

.trust-indicators p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #32373c;
}

.trust-indicators a {
    color: #294c98;
    text-decoration: none;
    font-weight: 600;
}

.trust-indicators a:hover {
    text-decoration: underline;
}

/* Form Section */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-card {
    background: #fefff8;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 500px;
    border: 2px solid #d4d2cf;
}

.form-card h3 {
    font-size: 1.8rem;
    color: #2c8e31;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #32373c;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #32373c;
    font-size: 0.95rem;
}

.required {
    color: #e2656d;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #d5e8d6;
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.form-group input:focus {
    outline: none;
    border-color: #2c8e31;
    box-shadow: 0 0 0 3px rgba(44, 142, 49, 0.1);
}

.form-group input.error {
    border-color: #e2656d;
}

.error-message {
    color: #e2656d;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.error-message.visible {
    display: block;
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 16px;
    background: #e2666e;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    margin-top: 10px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 102, 110, 0.4);
    background: #d94d56;
}

.cta-button:active {
    transform: translateY(0);
}

/* Mobile CTA Button */
.mobile-cta-button {
    display: none;
    width: 100%;
    padding: 16px;
    background: #e2666e;
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.mobile-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 102, 110, 0.4);
    background: #d94d56;
}

.mobile-cta-button:active {
    transform: translateY(0);
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 30px;
    background: #d5e8d6;
    border: 2px solid #2c8e31;
    border-radius: 16px;
    margin-top: 20px;
}

.success-message h4 {
    color: #2c8e31;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-message p {
    color: #32373c;
    font-size: 1rem;
}

/* Photo Showcase */
.photo-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.photo-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.photo-container {
    position: relative;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 142, 49, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
}

.photo-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.photo-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: white;
}

.photo-container:hover .photo-overlay {
    opacity: 1;
}

.photo-container:hover .showcase-image {
    transform: scale(1.05);
}

.photo-caption {
    text-align: center;
    padding: 15px;
    color: #2c8e31;
    font-weight: 600;
    font-size: 1rem;
}

/* Services & Financing Section */
.services-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: #2c8e31;
}

.service-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    min-height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 210px;
    height: 210px;
    object-fit: contain;
}

.service-card h3 {
    color: #2c8e31;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.service-card h3 sup {
    font-size: 0.5em;
}

.service-card p {
    color: #32373c;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

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

.service-features li {
    color: #32373c;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c8e31;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    text-align: center;
    color: #32373c;
    padding: 30px 0;
    margin-top: 50px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .hero {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
        margin-bottom: 15px;
    }

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

    .logo-image {
        max-width: 160px;
    }

    .mobile-stars {
        display: block;
        font-size: 1.2rem;
        text-align: center;
    }

    .reviews-carousel {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .review-container {
        height: auto;
        min-height: 50px;
        position: relative;
        overflow: visible;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .review-slide {
        padding: 12px 15px;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: static;
        opacity: 1;
        text-align: center;
    }

    .review-slide.active {
        display: flex !important;
    }

    .review-slide .stars {
        display: none;
    }

    .review-text {
        display: none;
    }

    .reviewer {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
        justify-content: center;
    }

    .reviewer-photo {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .reviewer-name {
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .review-text-mobile {
        display: block;
        font-size: 0.9rem;
        font-style: italic;
        color: #32373c;
        margin: 0;
        line-height: 1.3;
        text-align: center;
    }

    .carousel-dots {
        margin-top: 8px;
    }

    .dot {
        width: 7px;
        height: 7px;
        margin: 0 3px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .content {
        margin-top: 0;
    }

    .messaging {
        text-align: center;
        padding: 20px 15px;
    }

    .messaging h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .lead {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .benefits {
        margin: 15px 0;
    }

    .benefit-item {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .checkmark {
        width: 26px;
        height: 26px;
        margin-right: 10px;
        font-size: 0.85rem;
    }

    .trust-indicators {
        margin-top: 18px;
        padding-top: 15px;
    }

    .trust-indicators p {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .form-card {
        padding: 20px 15px;
    }

    .form-card h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .form-group input {
        padding: 12px;
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 14px;
        font-size: 1rem;
    }

    .privacy-note {
        font-size: 0.8rem;
        margin-top: 15px;
    }

    .benefit-item {
        justify-content: center;
        text-align: left;
    }

    .mobile-cta-button {
        display: inline-block;
        padding: 14px;
        font-size: 1rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .photo-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Enable tap to show overlay on mobile */
    .photo-container:active .photo-overlay,
    .photo-item:active .photo-overlay {
        opacity: 1;
    }

    .photo-container:active .showcase-image,
    .photo-item:active .showcase-image {
        transform: scale(1.05);
    }

    .services-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }

    .container {
        padding: 12px;
        max-width: 100%;
        width: 100%;
    }

    .hero {
        padding: 12px;
        gap: 10px;
        margin-bottom: 12px;
        width: 100%;
    }

    .logo-image {
        max-width: 140px;
    }

    .mobile-stars {
        font-size: 1.1rem;
    }

    .reviews-carousel {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .review-container {
        min-height: 45px;
        width: 100%;
        height: auto;
        position: relative;
        overflow: visible;
        display: flex;
        justify-content: center;
    }

    .review-slide {
        padding: 10px 12px;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: static;
        opacity: 1;
        text-align: center;
    }

    .review-slide.active {
        display: flex !important;
    }

    .reviewer {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 7px;
        justify-content: center;
    }

    .reviewer-photo {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .reviewer-name {
        font-size: 0.8rem;
        font-weight: 600;
    }

    .review-text-mobile {
        font-size: 0.85rem;
        text-align: center;
        line-height: 1.3;
    }

    .carousel-dots {
        margin-top: 6px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .messaging {
        padding: 18px 12px;
        width: 100%;
        max-width: 100%;
    }

    .messaging h2 {
        font-size: 1.35rem;
        margin-bottom: 10px;
        word-wrap: break-word;
    }

    .lead {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .benefits {
        margin: 12px 0;
    }

    .benefit-item {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .checkmark {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        margin-right: 8px;
    }

    .trust-indicators {
        margin-top: 15px;
        padding-top: 12px;
    }

    .trust-indicators p {
        font-size: 0.95rem;
    }

    .mobile-cta-button {
        padding: 12px;
        font-size: 0.95rem;
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .form-card {
        padding: 18px 12px;
        width: 100%;
        max-width: 100%;
    }

    .form-card h3 {
        font-size: 1.2rem;
    }

    .form-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input {
        padding: 11px;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 13px;
        font-size: 0.95rem;
    }

    .privacy-note {
        font-size: 0.75rem;
        margin-top: 12px;
    }

    .showcase-image {
        height: 200px;
    }
}
