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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    background: #ffffff;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 10px 0 8px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-cta {
    margin-top: 20px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 140px;
    justify-content: center;
}

.cta-button.primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
    flex: 1;
    max-width: 200px;
}

.cta-button.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.cta-button.secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.cta-button.secondary:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.cta-button.secondary svg {
    width: 16px;
    height: 16px;
}

.phone-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.phone-action {
    font-weight: 600;
    font-size: 16px;
}

.phone-number {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

.cta-note {
    font-size: 14px;
    color: #059669;
    margin-top: 15px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Social Proof Section */
.social-proof {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    opacity: 0.9;
    gap: 10px;
}

.social-proof-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.proof-number {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
}

.rating-inline {
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.rating-inline svg {
    width: 60px;
    height: 12px;
}

.rating-number {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

.badges-inline {
    display: flex;
    justify-content: center;
    gap: 4px;
    align-items: center;
}

.badge {
    background: #f3f4f6;
    color: #374151;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid #d1d5db;
}

.proof-text {
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
        margin: 8px 0 6px 0;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .hero-content {
        padding: 10px 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        font-size: 15px;
        padding: 14px 20px;
        width: 100%;
        max-width: 280px;
    }
    
    .phone-text {
        flex-direction: row;
        gap: 4px;
    }
    
    .phone-number {
        display: none;
    }
    
    .cta-note {
        font-size: 11px;
        margin-top: 12px;
    }
    
    .cta-button.primary {
        max-width: 280px;
    }
    
    .social-proof {
        margin-top: 20px;
        padding: 15px 10px;
        gap: 5px;
    }
    
    .social-proof-item {
        gap: 2px;
    }
    
    .proof-number {
        font-size: 16px;
    }
    
    .rating-number {
        font-size: 12px;
    }
    
    .rating-inline svg {
        width: 50px;
        height: 10px;
    }
    
    .badge {
        font-size: 9px;
        padding: 1px 4px;
    }
    
    .proof-text {
        font-size: 9px;
    }
}

/* Benefits Section */
.benefits {
    padding: 60px 20px;
    background: #f8fafc;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 50px;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Optimization for Benefits */
@media (max-width: 480px) {
    .benefits {
        padding: 40px 15px;
    }
    
    .benefits-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 20px 15px;
    }
    
    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .benefit-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
}

/* Förderungen Section */
.foerderungen {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.foerderungen-container {
    max-width: 1200px;
    margin: 0 auto;
}

.foerderungen-header {
    text-align: center;
    margin-bottom: 60px;
}

.foerderungen-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.foerderungen-subtitle {
    font-size: 20px;
    color: #059669;
    font-weight: 600;
    margin: 0;
}

.foerderungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.foerderung-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.foerderung-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.foerderung-item.federal {
    border-top: 4px solid #dc2626;
}

.foerderung-item.regional {
    border-top: 4px solid #2563eb;
}

.foerderung-item.tax {
    border-top: 4px solid #059669;
}

.foerderung-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.foerderung-title {
    font-size: 22px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.foerderung-amount {
    font-size: 28px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(5, 150, 105, 0.1);
}

.foerderung-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.foerderungen-service {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.service-text {
    flex: 1;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.service-description {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

.service-guarantee {
    flex-shrink: 0;
}

.guarantee-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.foerderungen-cta {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.foerderungen-cta .cta-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.foerderungen-cta .cta-subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.foerderungen-cta-button {
    background: white;
    color: #2563eb;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.foerderungen-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.foerderungen-disclaimer {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 15px;
    font-style: italic;
}

/* Mobile Optimization for Förderungen */
@media (max-width: 768px) {
    .foerderungen {
        padding: 50px 15px;
    }
    
    .foerderungen-title {
        font-size: 26px;
    }
    
    .foerderungen-subtitle {
        font-size: 18px;
    }
    
    .foerderungen-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .foerderung-item {
        padding: 25px 20px;
    }
    
    .foerderung-title {
        font-size: 20px;
    }
    
    .foerderung-amount {
        font-size: 24px;
    }
    
    .foerderungen-service {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .service-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .foerderungen-cta {
        padding: 30px 20px;
    }
    
    .foerderungen-cta .cta-title {
        font-size: 20px;
    }
    
    .foerderungen-cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Calculator Section */
.calculator {
    padding: 80px 20px;
    background: white;
}

.calculator-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-header {
    text-align: center;
    margin-bottom: 50px;
}

.calculator-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.calculator-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.calculator-widget {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.2s ease;
}

.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.calculate-button {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.calculate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.calculator-result {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #10b981;
}

.result-header {
    text-align: center;
    margin-bottom: 30px;
}

.result-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.result-highlight {
    display: flex;
    justify-content: center;
}

.price-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.result-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
}

.detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.result-cta {
    text-align: center;
}

.result-cta-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.result-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.result-note {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
    margin: 0;
}

.calculator-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.calculator-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

/* Mobile Optimization for Calculator */
@media (max-width: 768px) {
    .calculator {
        padding: 50px 15px;
    }
    
    .calculator-title {
        font-size: 26px;
    }
    
    .calculator-widget {
        padding: 25px 20px;
    }
    
    .calculator-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .calculator-benefits {
        gap: 20px;
    }
    
    .calculator-benefits .benefit-item {
        font-size: 14px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 20px;
    background: #f8fafc;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 60px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    background: none;
    border: none;
    color: #2563eb;
    cursor: pointer;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    padding: 0;
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.faq-cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.faq-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-cta-button {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.faq-cta-button.primary {
    background: white;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.faq-cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.faq-cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.faq-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Mobile Optimization for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 50px 15px;
    }
    
    .faq-title {
        font-size: 26px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta-content h3 {
        font-size: 20px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .faq-cta-button {
        justify-content: center;
        padding: 12px 24px;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 80px 20px;
    background: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.form-container {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.contact-form-element {
    display: grid;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-group.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox-group .checkbox-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.submit-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin: 0 auto 15px;
    min-width: 280px;
}

.submit-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-note {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    font-style: italic;
}

.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.contact-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.contact-success p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 25px;
}

.new-request-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.new-request-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Footer Styles */
.footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 40px 0 20px;
    margin-top: 80px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-info {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.footer-contact {
    margin-top: 15px;
}

.footer-contact p {
    color: #374151;
    font-size: 14px;
    margin: 5px 0;
    font-weight: 500;
}

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

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

/* Message Modal Styles */
.message-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

.modal-header h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.modal-form {
    padding: 0 24px 24px;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.modal-form input:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.modal-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-btn.primary {
    background: #2563eb;
    color: white;
}

.modal-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.modal-btn.secondary {
    background: #f8fafc;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.modal-btn.secondary:hover {
    background: #f1f5f9;
    border-color: #d1d5db;
}

.modal-success {
    padding: 40px 24px;
    text-align: center;
}

.modal-success .success-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.modal-success h4 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-success p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Mobile optimization for modal */
@media (max-width: 480px) {
    .message-modal {
        padding: 10px;
    }
    
    .modal-content {
        border-radius: 12px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 20px 0;
        margin-bottom: 20px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-form {
        padding: 0 20px 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
    
    .modal-success {
        padding: 30px 20px;
    }
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 12px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }
    
    .footer-contact p {
        font-size: 13px;
    }
    
    .footer-info {
        font-size: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

.contact-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

/* Mobile Optimization for Contact Form */
@media (max-width: 768px) {
    .contact-form {
        padding: 50px 15px;
    }
    
    .contact-title {
        font-size: 26px;
    }
    
    .form-container {
        padding: 25px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-button {
        width: 100%;
        min-width: auto;
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .contact-benefits {
        gap: 20px;
    }
    
    .contact-benefits .benefit-item {
        font-size: 14px;
    }
}

/* Mobile Floating CTA */
.mobile-floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 16px 20px 16px;
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
}

.mobile-floating-cta .floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
    gap: 4px;
    flex: 1;
    min-height: 56px;
}

.mobile-floating-cta {
    display: flex;
    gap: 12px;
}

.call-btn {
    background: #2563eb;
    color: white;
}

.call-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.message-btn {
    background: #f8fafc;
    color: #2563eb;
    border: 2px solid #2563eb;
    cursor: pointer;
}

.message-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

.floating-btn svg {
    width: 20px;
    height: 20px;
}

.floating-btn span {
    font-size: 11px;
    line-height: 1;
}

/* Show only on mobile */
@media (max-width: 767px) {
    .mobile-floating-cta {
        display: flex;
    }
    
    /* Add bottom padding to body to account for floating panel */
    body {
        padding-bottom: 80px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: white;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 60px;
    line-height: 1.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-item {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-rating svg {
    width: 100px;
    height: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-location {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.savings-amount {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.savings-label {
    display: block;
    font-size: 11px;
    opacity: 0.9;
    line-height: 1;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 2px solid #f1f5f9;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

/* Mobile Optimization for Testimonials */
@media (max-width: 480px) {
    .testimonials {
        padding: 50px 15px;
    }
    
    .testimonials-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .testimonial-content {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .author-info {
        text-align: center;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

/* Process Section */
.process {
    padding: 80px 20px;
    background: #f8fafc;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    margin-bottom: 60px;
}

.process-master {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.master-image {
    position: relative;
    flex-shrink: 0;
}

.master-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid #2563eb;
}

.master-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-radius: 12px;
    padding: 3px 6px;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    border: 2px solid white;
}

.master-badge span {
    font-size: 10px;
    font-weight: 700;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.master-info {
    flex: 1;
}

.master-name {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.master-title {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 15px;
}

.master-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.process-intro {
    text-align: center;
}

.process-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 18px;
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.step-icon {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.step-icon svg {
    width: 64px;
    height: 64px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 15px;
}

.step-duration {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.step-connector {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.step-connector svg {
    width: 80px;
    height: 20px;
}

.process-cta {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-cta-button {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-bottom: 15px;
}

.process-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.process-note {
    font-size: 14px;
    color: #059669;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Mobile Optimization for Process */
@media (max-width: 768px) {
    .process {
        padding: 50px 15px;
    }
    
    .process-master {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .master-image img {
        width: 100px;
        height: 100px;
    }
    
    .master-name {
        font-size: 20px;
    }
    
    .master-credentials {
        justify-content: center;
        gap: 10px;
    }
    
    .credential-item {
        font-size: 13px;
    }
    
    .process-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .process-subtitle {
        font-size: 16px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-item {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .step-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .process-cta {
        padding: 30px 20px;
    }
    
    .process-cta-button {
        width: 100%;
        max-width: 300px;
        font-size: 16px;
        padding: 16px 32px;
    }
}

/* Tablet and larger screens */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        min-height: 100vh;
    }
    
    .hero-image {
        width: 60%;
        height: 100vh;
    }
    
    .hero-content {
        width: 40%;
        padding: 40px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
}