/* Services Page Styles - New Design */

/* Services Hero Section */
.services-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.services-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero .hero-content {
    text-align: left;
    color: white;
    margin-bottom: 0px !important;
}

.contact-hero .hero-content {
    text-align: left;
    color: white;
    margin-bottom: 0px !important;
}

.services-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.services-hero .breadcrumb-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex-wrap: wrap;
}

.services-hero .breadcrumb-bottom a {
    color: #F26B0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-hero .breadcrumb-bottom a:hover {
    color: #ffffff;
}

.services-hero .breadcrumb-divider {
    color: rgba(255, 255, 255, 0.6);
}

.services-hero .breadcrumb-current {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Main Section */
.services-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

/* New Header Style */
.services-header-new {
    text-align: center;
    margin-bottom: 30px !important;
}

.services-label-new {
    font-size: 12px;
    color: #F26B0F;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.services-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #1B1D21;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* New Services Grid - 6 Cards in 3x2 */
.services-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* New Service Card */
.service-card-new {
    background: #F5F5F5;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    background: #EFEFEF;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Service Icon - New */
.service-icon-new {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #1B1D21;
}

.service-icon-new svg {
    width: 100%;
    height: 100%;
}

/* Service Title - New */
.service-card-title-new {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1B1D21;
    line-height: 1.3;
}

/* Service Description - New */
.service-card-description-new {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* View Services Button */
.service-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1B1D21;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-view-btn:hover {
    background: #333333;
    gap: 16px;
}

.service-view-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Our Real Services Section */
.our-services-section {
    padding: 80px 20px;
    background: #F9F9F9;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1B1D21;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.services-intro p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Categories Grid */
.services-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-category {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(242, 107, 15, 0.1);
}

.category-header {
    margin-bottom: 24px;
    border-bottom: 2px solid #F26B0F;
    padding-bottom: 16px;
}

.category-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1B1D21;
    margin: 0;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.service-list li {
    font-size: 14px;
    color: #6B7280;
    padding: 12px 0;
    line-height: 1.6;
    border-bottom: 1px solid #E5E7EB;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li:before {
    content: "";
    display: none;
}

.category-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.category-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(242, 107, 15, 0.3);
}

/* Why Choose Services Section */
.why-choose-services {
    padding: 80px 20px;
    background: #F7F7F8;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #1B1D21;
}

.why-choose-header p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

.why-choose-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-choose-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-4px);
}

.why-choose-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.why-choose-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1B1D21;
}

.why-choose-card p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Services CTA Section */
.services-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    color: white;
    text-align: center;
}

.services-cta .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #F26B0F 0%, #D65A08 100%);
    border-radius: 20px;
}

.services-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
}

.services-cta p {
    font-size: 18px;
    margin: 0 0 30px;
    opacity: 0.95;
}

.services-cta .btn {
    font-size: 16px;
    padding: 15px 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }

    .services-main-title {
        font-size: 36px;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-choose-header h2 {
        font-size: 32px;
    }

    .services-cta h2 {
        font-size: 32px;
    }
}
