/* ===== HOME PAGE STYLES ===== */

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEEDD 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Buttons */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-outline-secondary {
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
}

.btn-outline-secondary:hover {
    background: var(--dark-color);
    color: white;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

@media (max-width: 768px) {

    /* Hero Section Mobile */
    .hero-section {
        padding: 100px 0 60px;
        min-height: auto;
        text-align: center;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-section .btn {
        width: 100%;
        margin-bottom: 0.75rem;
    }

    .hero-section .d-flex {
        flex-direction: column;
        gap: 0 !important;
    }

    .hero-section img {
        margin-top: 2rem;
        max-width: 100%;
    }

    /* Services Section Mobile */
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .service-icon-wrapper {
        margin: 0 auto 1rem;
    }

    /* Process Steps Mobile */
    .process-step {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* About Section Mobile */
    #about .col-lg-6 {
        text-align: center;
    }

    #about img {
        margin-bottom: 2rem;
    }

    /* Navbar Mobile */
    .navbar-brand {
        font-size: 1.25rem;
    }

    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* General Mobile Spacing */
    section {
        padding: 3rem 0 !important;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    /* Card Spacing */
    .card {
        margin-bottom: 1.5rem;
    }

    /* Testimonials Mobile */
    .testimonials .card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9375rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}