/* Container */
.container-1 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom right, #f0fdf4, #ffffff, #eff6ff);
    overflow: hidden;
}

/* Decorative Background */
.decorative-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: #86efac;
}

.blob-2 {
    bottom: 80px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: #bfdbfe;
}

.blob-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: #fef3c7;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        padding: 64px 16px;margin-top: 80px;
    }
}

/* Info Section */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #15803d;
    padding: 8px 16px;
    border-radius: 9999px;
    width: fit-content;
    font-size: 18px;
    font-weight: 500;
}

.icon-small {
    width: 22px;
  height: 22px;
}

.main-heading {
    font-size: 3rem;
    line-height: 1.1;
    color: #111827;
    font-weight: 800;
}

@media (min-width: 1024px) {
    .main-heading {
        font-size: 3.75rem;
    }
}

.highlight {
    color: #16a34a;
    position: relative;
    display: inline-block;
}

.underline-svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
}

.description {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 16px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #dcfce7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.feature-icon i {
    width: 20px;
    height: 20px;
}

.feature-card span {
    color: #374151;
    padding-top: 8px;
    font-size: 16px;
}

/* Solar Image */
.solar-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.solar-image img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    display: block;
}

/* Tagline */
.tagline {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #1f2937;
    padding-top: 8px;
}

@media (min-width: 1024px) {
    .tagline {
        font-size: 1.6rem;
    }
}

.company-name {
    color: #16a34a;
    font-weight: 700;
}

/* Form Section */
.form-section {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #f3f4f6;
}

@media (min-width: 1024px) {
    .form-section {
        padding: 40px;
    }
}

.form-header {
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 1.875rem;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 700;
}

@media (min-width: 1024px) {
    .form-header h2 {
        font-size: 2.25rem;
    }
}

.form-header p {
    color: #6b7280;
    font-size: 14px;
}

/* Form Styles */
.solar-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0px;
  margin-bottom: 0;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;align-items: center;
  display: flex;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: #111827;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.form-group textarea {
    resize: none;
    line-height: 1.5;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.contact-method:hover {
    border-color: #86efac;
    background: rgba(220, 252, 231, 0.5);
}

.contact-method.active {
    border-color: #16a34a;
    background: #dcfce7;
    color: #15803d;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.contact-method i {
    width: 20px;
    height: 20px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 20px 24px;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
	font-family: "Roboto Flex",serif;
    background: linear-gradient(to right, #16a34a, #22c55e);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(to right, #15803d, #16a34a);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Form Footer */
.form-footer {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    padding-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .main-heading {
        font-size: 2.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 24px;
    }
}

@media(max-width:1024px){
	.content-wrapper {margin-top: 80px;}
}
@media(max-width:767px){
	.content-wrapper {margin-top: 60px;}
}