
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #f0fdf4 0%, #fef3c7 100%);
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.hero-right {
    padding-left: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234, 179, 8, 0.15);
    border: 2px solid #eab308;
    color: #854d0e;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    width: 20px;
    height: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #0f172a;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.highlight {
    background: linear-gradient(135deg, #f59e0b, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

@media (max-width: 640px) {
    .trust-indicators {
        gap: 12px;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.trust-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

/* Gallery Preview */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.gallery-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    text-align: center;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
}

.gallery-item-clickable {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

/* Project Images */
.project-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.45s backwards;
}

.project-image {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 12px;
}

/* Load More Button */
.load-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: white;
    border: 2px solid #16a34a;
    color: #16a34a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.load-more-btn:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.3);
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: scale(1.1);
}

/* Video Container */
.video-container {
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Services Section */
.services-headline {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease-out 0.42s backwards;
}

/* Services Bubbles */
.services-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.45s backwards;
}

.service-bubble {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: white;
    border: 2px solid #f59e0b;
    color: #92400e;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.service-bubble svg {
    flex-shrink: 0;
}

/* Location Bubbles */
.location-bubble {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: white;
    border: 2px solid #16a34a;
    color: #166534;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.location-bubble svg {
    flex-shrink: 0;
}

.location-bubble:hover {
    background: #16a34a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* Zipcode Bubbles */
.zipcode-bubble {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: white;
    border: 2px solid #8b5cf6;
    color: #6d28d9;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.zipcode-bubble svg {
    flex-shrink: 0;
}

.zipcode-bubble:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.service-bubble:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Reviews */
.reviews {
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

.stars {
    color: #eab308;
    font-size: 20px;
    margin-bottom: 12px;
}

.review-text {
    color: #475569;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
}

.reviewer {
    font-weight: 600;
    color: #0f172a;
}

/* Offer Card */
.offer-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #16a34a;
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    position: relative;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
    animation: fadeInUp 0.6s ease-out 0.7s backwards;
}

.offer-badge {
    display: inline-block;
    background: #ef4444;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.offer-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.offer-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 15px;
}

.offer-expiry {
    display: flex;
    align-items: center;
    color: #166534;
    font-weight: 600;
    font-size: 14px;
}

.offer-expiry svg {
    flex-shrink: 0;
}

/* Financing Card */
.financing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-out 0.75s backwards;
}

.financing-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.financing-icon svg {
    color: white;
}

.financing-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.financing-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.financing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.financing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
}

.financing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.financing-cta {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 14px 18px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #166534;
    font-size: 15px;
    border: 1px solid #bbf7d0;
}

/* Form Section */
.form-container {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
    position: relative;
    overflow: hidden;
}

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

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f59e0b, #eab308, #fbbf24);
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(234, 179, 8, 0.1);
    color: #854d0e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

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

label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
    font-size: 15px;
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8fafc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #f59e0b;
    background: white;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 32px 24px;
    }
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 640px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    font-weight: 500;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.checkbox-label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label::before {
    background: #f59e0b;
    border-color: #f59e0b;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

/* Radio Button Group */
.radio-group {
    display: grid;
    gap: 12px;
}

.radio-item {
    position: relative;
}

.radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.radio-item input[type="radio"]:checked + .radio-label {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.radio-label::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.radio-item input[type="radio"]:checked + .radio-label::before {
    border-color: #f59e0b;
    border-width: 6px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #f59e0b, #eab308);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Benefits */
.form-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
    .form-benefits {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.benefit-text strong {
    color: #0f172a;
    font-weight: 600;
}

/* Privacy Notice */
.privacy-notice {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin-top: 20px;
    line-height: 1.5;
}

.privacy-notice a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.help-text {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
    font-style: italic;
}
