/* Landing Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: -1;
}

/* Header */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    z-index: 10;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-mark {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-mark rect:nth-child(1) {
    fill: #ffffff;
}

.brand-mark rect:nth-child(2) {
    fill: #e0e0e0;
}

.brand-mark rect:nth-child(3) {
    fill: #f5f5f5;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-auth {
    display: flex;
    gap: 1rem;
}

/* Mobile auth icon - hidden by default on desktop */
.hero-auth-mobile {
    display: none;
    color: #ffffff;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
}

.hero-auth-mobile:hover {
    opacity: 0.8;
}

.btn-auth {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-login {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-login:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-signup {
    background: #24545C;
    color: #ffffff;
}

.btn-signup:hover {
    background: #1d4349;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(36, 84, 92, 0.4);
}

/* Hero Content */
.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-action {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #24545C;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4349;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(36, 84, 92, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-header {
        padding: 1.5rem 2rem;
    }

    /* Hide buttons, show avatar icon on mobile */
    .hero-auth {
        display: none;
    }

    .hero-auth-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .btn-action {
        width: 100%;
        max-width: 300px;
    }

    .brand-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding: 1rem 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .brand-mark {
        width: 36px;
        height: 36px;
    }

    .brand-text {
        font-size: 1.125rem;
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

/* Section Header (Centered) */
.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0;
}

/* Features and Image Grid */
.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.features-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding-left: 1.5rem;
    border-left: 3px solid #f5f5f5;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    color: #1a1a1a;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.interior-image {
    width: 100%;
    max-width: 520px;
    height: 100%;
    max-height: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for How It Works */
@media (max-width: 968px) {
    .how-it-works-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .image-column {
        order: -1;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .interior-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-list {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }
}

/* Services Section - What We Offer */
.services-section {
    padding: 5rem 2rem;
    background: #112225;
    color: #ffffff;
}

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

.services-brand-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    opacity: 0.6;
}

.services-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.services-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #112225;
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: #f5f5f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Responsive Design for Services Section */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 1rem;
    }

    .services-title {
        font-size: 1.75rem;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
    }

    .service-card-title {
        font-size: 1.125rem;
    }

    .service-card-description {
        font-size: 0.875rem;
    }
}

/* Team Section - Our Team */
.team-section {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.team-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 1rem;
    text-align: left;
}

.team-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: left;
}

.team-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    max-width: 600px;
    margin-bottom: 4rem;
    text-align: left;
}

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

.team-member {
    text-align: left;
}

.team-member-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1rem;
}

.team-member-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 6px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Responsive Design for Team Section */
@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 3rem 1rem;
    }

    .team-title {
        font-size: 1.75rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
}

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

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #666666;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #1a1a1a;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #666666;
}

.faq-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9375rem;
    color: #666666;
}

.faq-contact-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
}

.faq-contact-link:hover {
    color: #666666;
}

/* Footer */
.footer {
    padding: 2.5rem 2rem;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-separator {
    font-size: 0.875rem;
    color: #cccccc;
}

.footer-link {
    font-size: 0.875rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #666666;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #666666;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 1rem;
}

.footer-social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social:hover {
    color: #666666;
}

/* Responsive Design for FAQ and Footer */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 0.9375rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}
