/* Landing Page Styles */

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
    color: white;
    min-height: 600px;
    text-align: center;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.primary-btn {
    background: #4299e1;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.primary-btn:hover {
    background: #2b6cb0;
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: white;
    color: #2a4365;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* For Brokers Section */
.for-brokers {
    display: flex;
    align-items: center;
    padding: 80px 20px;
    background: #f7fafc;
}

.broker-content {
    flex: 1;
    max-width: 600px;
    margin-right: 40px;
}

.broker-content h2 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 20px;
}

.broker-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.broker-features li {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1.1em;
}

.broker-cta {
    display: inline-block;
    background: #4299e1;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.broker-cta:hover {
    background: #2b6cb0;
}

.broker-image {
    flex: 1;
    max-width: 600px;
}

.broker-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* How It Works */
.how-it-works {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    max-width: 300px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #4299e1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin: 0 auto 20px;
}

.step h3 {
    color: #2d3748;
    margin-bottom: 15px;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    background: #f7fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 1.1em;
    color: #2d3748;
    line-height: 1.6;
    margin-bottom: 20px;
}

.author-name {
    font-weight: bold;
    color: #2d3748;
}

.author-title {
    color: #4a5568;
    font-size: 0.9em;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2a4365 0%, #1a365d 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 60px;
}

.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    color: #2d3748;
    margin-bottom: 20px;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.method-icon {
    font-size: 1.5em;
    margin-right: 15px;
}

.method-details h4 {
    color: #2d3748;
    margin-bottom: 5px;
}

.contact-form {
    flex: 2;
    background: #f7fafc;
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1em;
}

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

.submit-btn {
    background: #4299e1;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2b6cb0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .for-brokers {
        flex-direction: column;
        text-align: center;
    }

    .broker-content {
        margin-right: 0;
        margin-bottom: 40px;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .contact-container {
        flex-direction: column;
    }
} 