/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/home/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.philosophy-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.philosophy-intro {
    font-size: 1.125rem;
    color: #333;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.7;
    text-align: left;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.philosophy-card {
    text-align: center;
}

.philosophy-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.philosophy-card-right {
    display: flex;
    flex-direction: column;
}

.philosophy-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.philosophy-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.philosophy-card-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    font-weight: 400;
}

.philosophy-cta {
    display: flex;
    justify-content: center;
}

/* SellWise Section */
.sellwise-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
}

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

.sellwise-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.sellwise-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    margin-bottom: 5rem;
}

.sellwise-content {
    display: flex;
    justify-content: center;
}

.sellwise-card {
    background-color: #b0e0e6;
    padding: 3rem;
    padding-top: 1rem;
    border-radius: 12px;
    text-align: left;
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: flex-end;
    min-height: 450px;
}

.sellwise-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    position: absolute;
    top: -40px;
    left: -40px;
    z-index: 3;
    background-color: #1a1a2e;
    padding: 1rem;
}

.sellwise-card-inner {
    flex: 1;
    max-width: 50%;
    z-index: 2;
    margin-top: -2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sellwise-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.sellwise-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
}

.sellwise-description {
    font-size: 1.125rem;
    color: #1a1a2e;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.sellwise-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.sellwise-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sellwise-btn-light {
    background-color: white;
    color: #1a1a2e;
}

.sellwise-btn-light:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.sellwise-btn-dark {
    background-color: #1a1a2e;
    color: white;
}

.sellwise-btn-dark:hover {
    background-color: #2a2a4e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.sellwise-mockup {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}

.mockup-image {
    width: auto;
    height: auto;
    max-height: 516px;
    display: block;
}

/* Training Modes Section */
.training-modes-section {
    background-color: #1a1a2e;
    padding: 0 2rem 5rem 2rem;
}

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

.training-modes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.training-modes-card {
    text-align: center;
}

.training-modes-card-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.training-modes-card-right {
    display: flex;
    flex-direction: column;
}

.training-modes-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.training-modes-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.training-modes-card-text {
    font-size: 0.95rem;
    color: #d3d3d3;
    line-height: 1.6;
    font-weight: 400;
}

.training-modes-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.training-modes-cta .cta-button {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background-color: white;
    color: #1a1a2e;
    letter-spacing: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.training-modes-cta .cta-button:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Roadmap Section */
.roadmap-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.roadmap-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.roadmap-intro {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 2rem;
    text-align: left;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.roadmap-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roadmap-icon {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: #f5f5f5;
    padding: 1rem;
}

.roadmap-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.roadmap-card-text {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.roadmap-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #666666;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.roadmap-btn:hover {
    background-color: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    border-color: #333333;
}

/* Roadmap CTA Section */
.roadmap-cta-section {
    background-color: #ffffff;
    padding: 3rem 2rem;
}

.roadmap-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* Who We Are Section */
.who-we-are-section {
    background-color: #b0e0e6;
    padding: 5rem 2rem;
}

.who-we-are-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1rem;
}

.who-we-are-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 4rem;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.who-we-are-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.who-we-are-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-paragraph {
    font-size: 1.125rem;
    color: #1a1a2e;
    line-height: 1.7;
    text-align: left;
}

.who-paragraph strong {
    font-weight: 700;
}

.who-we-are-cta {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact-section {
    background-color: #ffffff;
    padding: 2rem 2rem 5rem 2rem;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.125rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid #1a1a2e;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    background-color: #ffffff;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #dc3545;
}

.form-group.has-error input::placeholder,
.form-group.has-error textarea::placeholder {
    color: #dc3545;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87ceeb;
}

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

.submit-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-submit-btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background-color: #2a2a4e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-privacy {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.contact-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.email-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive Index Page */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .philosophy-section {
        padding: 3rem 1.5rem;
    }
    
    .philosophy-title {
        font-size: 2rem;
    }
    
    .philosophy-subtitle {
        font-size: 1.25rem;
    }
    
    .philosophy-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .philosophy-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1.5rem;
        text-align: left;
        align-items: center;
    }
    
    .philosophy-card-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .philosophy-card-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .philosophy-icon {
        margin-bottom: 0;
        font-size: 3rem;
    }
    
    .philosophy-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .philosophy-card-text {
        font-size: 0.9rem;
    }
    
    .sellwise-section {
        padding: 3rem 1.5rem;
    }
    
    .sellwise-title {
        font-size: 2rem;
    }
    
    .sellwise-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .sellwise-card {
        flex-direction: column;
        align-items: center;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .sellwise-logo {
        width: 100px;
        height: 100px;
        top: -30px;
        left: -30px;
    }
    
    .sellwise-card-inner {
        max-width: 100%;
        margin-top: 0;
    }
    
    .sellwise-mockup {
        position: relative;
        margin-top: 2rem;
        width: 100%;
        justify-content: center;
    }
    
    .mockup-image {
        max-height: 300px;
    }
    
    .sellwise-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .sellwise-btn {
        width: 100%;
        text-align: center;
    }
    
    .training-modes-section {
        padding: 3rem 1.5rem;
    }
    
    .training-modes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .training-modes-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1.5rem;
        text-align: left;
        align-items: center;
    }
    
    .training-modes-card-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .training-modes-card-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .training-modes-icon {
        margin-bottom: 0;
        font-size: 3rem;
    }
    
    .training-modes-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .training-modes-card-text {
        font-size: 0.9rem;
    }
    
    .training-modes-cta {
        margin-top: 2rem;
    }
    
    .roadmap-section {
        padding: 3rem 1.5rem;
    }
    
    .roadmap-title {
        font-size: 2rem;
    }
    
    .roadmap-intro {
        font-size: 1rem;
    }
    
    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roadmap-icon {
        width: 120px;
        height: 120px;
    }
    
    .roadmap-card-title {
        font-size: 1.25rem;
    }
    
    .roadmap-card-text {
        font-size: 0.9rem;
    }
    
    .who-we-are-section {
        padding: 3rem 1.5rem;
    }
    
    .who-we-are-title {
        font-size: 2rem;
    }
    
    .who-we-are-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .who-paragraph {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-graphic {
        min-height: 300px;
    }
}


