/* Walk Me Home - Main Content Sections Styles */

/* Common Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-orange);
    margin: 0.5rem auto 0;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    background-color: var(--color-black);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-values {
    margin-top: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    padding: 1.5rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

/* Problem Section */
.problem-section {
    background-color: var(--color-dark-gray);
    padding: 6rem 0;
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/girl accross road.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.problem-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.problem-text {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.problem-stat {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.problem-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 0.5rem;
}

.problem-stat-text {
    font-size: 0.9rem;
}

.market-gaps {
    margin-top: 4rem;
}

.gaps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gap-card {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gap-card h4 {
    color: var(--color-orange);
    margin-bottom: 1rem;
}

/* Solution Section */
.solution-section {
    background-color: var(--color-black);
    padding: 6rem 0;
    position: relative;
}

.solution-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.solution-text {
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.solution-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.solution-image:hover img {
    transform: scale(1.05);
}

.solution-features {
    margin-top: 4rem;
}

.solution-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.solution-feature {
    padding: 1.5rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.1);
}

.solution-feature h4 {
    color: var(--color-orange);
    margin-bottom: 1rem;
}

/* Technology Section */
.technology-section {
    background-color: var(--color-dark-gray);
    padding: 6rem 0;
    position: relative;
}

.technology-content {
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tech-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.15);
}

.tech-card-header {
    background-color: rgba(255, 107, 0, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.tech-card-body {
    padding: 1.5rem;
}

.tech-card-header h3 {
    margin-bottom: 0;
    color: var(--color-orange);
}

.tech-specs {
    margin-top: 2rem;
}

.tech-spec {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tech-spec-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: var(--color-orange);
}

/* Partnerships Section */
.partnerships-section {
    background-color: var(--color-black);
    padding: 6rem 0;
    position: relative;
}

.partnerships-content {
    position: relative;
    z-index: 1;
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.partnership-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.1);
}

.partnership-card-header {
    background-color: rgba(255, 107, 0, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    text-align: center;
}

.partnership-card-body {
    padding: 1.5rem;
}

.partnership-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background-color: var(--color-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

.partnership-card-header h3 {
    margin-bottom: 0;
}

/* Investment Section */
.investment-section {
    background-color: var(--color-dark-gray);
    padding: 6rem 0;
    position: relative;
}

.investment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(26,26,26,0.8) 100%);
    z-index: 0;
}

.investment-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.investment-text {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.investment-opportunity {
    margin-top: 4rem;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.opportunity-card {
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.opportunity-card h4 {
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.investment-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--color-black);
    padding: 6rem 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.contact-form {
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: var(--color-orange);
}

.contact-info-text {
    flex: 1;
}

.contact-info-text h4 {
    margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content,
    .problem-content,
    .solution-content,
    .investment-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .tech-grid,
    .partnerships-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .gaps-grid,
    .solution-features-grid,
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
}
