/* ================================
   GET QUOTE PAGE - GREEN THEME
   Fixed: Top green line overflow issue
   ================================ */

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

body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fa;
    color: #1a1a1a;
}

/* Bold Hero Section */
.quote-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.quote-hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.quote-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.quote-title {
    font-size: 3.5rem;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.quote-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Content Section */
.quote-content {
    padding: 60px 0 80px;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Form Section - FIXED OVERFLOW */
.quote-form-section {
    background: white;
    padding: 45px;
    border: 2px solid #10b981;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
    position: relative;
    overflow: hidden;
}

.quote-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #10b981);
    border-radius: 20px 20px 0 0;
}

.form-title {
    font-size: 2.3rem;
    color: #1a1a1a;
    margin: 15px 0 10px 0;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

.form-description {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    color: #374151;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label span {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 10px;
    font-weight: 500;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

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

.form-submit {
    width: 100%;
    padding: 16px 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 15px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Info Section */
.quote-info-section {
    position: sticky;
    top: 30px;
}

.info-card {
    background: white;
    padding: 35px;
    border: 2px solid #e5e7eb;
    margin-bottom: 20px;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.info-card.contact-card {
    border-top: 3px solid #10b981;
}

.info-card.benefits-card {
    border-top: 3px solid #f59e0b;
}

.info-card h3 {
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 18px;
    background: #f9fafb;
    border-radius: 14px;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #10b981;
    background: #f0fdf4;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 38px;
    height: 38px;
    stroke: #10b981;
    stroke-width: 2;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.05rem;
    color: #1a1a1a;
    margin-bottom: 6px;
    font-weight: 700;
}

.info-text p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.info-text a {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #059669;
}

/* Benefits */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 14px 18px;
    font-size: 0.95rem;
    color: #374151;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 45px;
    position: relative;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fbbf24;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 3px 12px rgba(251, 191, 36, 0.3);
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #f59e0b;
    font-weight: 900;
    font-size: 1.2rem;
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 3px solid #10b981;
    padding: 35px;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.2);
}

.success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message h3 {
    font-size: 1.8rem;
    color: #065f46;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.success-message p {
    font-size: 1.05rem;
    color: #047857;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quote-info-section {
        position: static;
    }
}

@media (max-width: 768px) {
    .quote-hero {
        padding: 60px 0 50px;
    }

    .quote-title {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 20px;
    }

    .quote-form-section {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 28px 22px;
    }

    .quote-content {
        padding: 50px 0 70px;
    }
}

@media (max-width: 480px) {
    .quote-title {
        font-size: 2rem;
    }

    .form-title {
        font-size: 1.9rem;
    }

    .quote-form-section {
        padding: 28px 20px;
    }

    .info-card {
        padding: 24px 18px;
    }

    .benefits-list li {
        padding-left: 42px;
    }
}

/* ================================
   ENHANCED FORM SECTIONS
   ================================ */

.form-section {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.08);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
    font-family: 'Inter', sans-serif;
}

.section-desc {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 15px 0;
    font-style: italic;
}

/* Checkbox Grid for Regions & Activities */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-grid.small {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.checkbox-item:hover {
    border-color: #10b981;
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-text,
.checkbox-item input[type="checkbox"]:checked + span {
    color: #059669;
    font-weight: 600;
}

.checkbox-item:has(input:checked) {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.checkbox-text {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checkbox-text small {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
}

/* Small checkbox items for activities */
.checkbox-item.small {
    padding: 12px 14px;
    gap: 10px;
}

.checkbox-item.small span {
    font-size: 0.85rem;
}

.checkbox-item.small input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Form button enhanced */
.form-submit {
    width: 100%;
    padding: 18px 35px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    margin-top: 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.form-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Enhanced Responsive for new sections */
@media (max-width: 900px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid.small {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .form-section {
        padding: 20px 18px;
    }
    
    .section-title {
        font-size: 1.15rem;
    }
    
    .checkbox-grid.small {
        grid-template-columns: 1fr;
    }
    
    .checkbox-item {
        padding: 14px;
    }
    
    .checkbox-item.small {
        padding: 10px 12px;
    }
}
