﻿/* Services Hero Section */
.my_service_hero_section {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8fbff 0%, #e6f2ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.my_service_hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0a7cc4, #4fc3f7, #80deea);
}

.my_service_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.my_service_hero_content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.my_service_main_title {
    color: #1a1a1a;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a1a1a, #0a7cc4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.my_service_hero_divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0a7cc4, #4fc3f7);
    margin: 20px auto;
    border-radius: 2px;
}

.my_service_hero_subtitle {
    color: #0a7cc4;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.my_service_tagline {
    color: #666;
    font-size: 18px;
    font-style: italic;
    margin-top: 10px;
}

/* Quality & Services Section */
.my_service_quality_section {
    padding: 80px 0;
    background: white;
    position: relative;
 
}

.my_service_quality_header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.my_service_quality_subtitle {
    color: #0a7cc4;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.my_service_quality_title {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.my_service_single_blue_line {
    width: 80px;
    height: 2px;
    background: #0a7cc4;
    margin: 20px auto;
    border: none;
}

.my_service_quality_description {
    color: #666;
    font-size: 18px;
    line-height: 1.7;
    margin-top: 25px;
}

/* Services Grid */
.my_service_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.my_service_box {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.4s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.my_service_box:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(10, 124, 196, 0.15);
    border-color: #0a7cc4;
}

.my_service_image {
    width: 100%;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.my_service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.my_service_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 124, 196, 0.3));
    transition: all 0.4s ease;
}

.my_service_box:hover .my_service_overlay {
    background: linear-gradient(to bottom, transparent 30%, rgba(10, 124, 196, 0.4));
}

.my_service_box:hover .my_service_image img {
    transform: scale(1.1);
}

.my_service_content {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.my_service_content h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.my_service_content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0a7cc4, #4fc3f7);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.my_service_box:hover .my_service_content h3::after {
    width: 70px;
}

.my_service_content p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-top: 15px;
}

/* Why Choose 32 Smiles Section */
.my_service_why_choose_section {
    padding: 100px 0;
    background: #f9fbfd;
}

.my_service_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.my_service_section_title {
    color: #1a1a1a;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.my_service_section_subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.my_service_why_choose_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 60px auto 0;
}

.my_service_image_container_why {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 500px;
    transition: all 0.4s ease;
}

.my_service_image_container_why_inner {
    width: 100%;
    height: 100%;
}

.my_service_image_container_why_inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.my_service_image_container_why:hover {
    box-shadow: 0 20px 50px rgba(10, 124, 196, 0.15);
}

.my_service_image_container_why:hover .my_service_image_container_why_inner img {
    transform: scale(1.05);
}

.my_service_why_choose_content {
    padding: 10px 0;
}

.my_service_content_block {
    margin-bottom: 25px;
}

.my_service_content_block h3 {
    color: #0a7cc4;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.my_service_content_block p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.my_service_content_paragraph {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eaeaea;
}

.my_service_content_paragraph p {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* Advanced Technology Section */
.my_service_advanced_tech_section {
    padding: 100px 0;
    background: white;
}

.my_service_tech_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 0;
}

.my_service_tech_features {
    order: 1;
}

.my_service_tech_image {
    order: 2;
}

.my_service_image_container_tech {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
    transition: all 0.4s ease;
}

.my_service_image_container_tech img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.my_service_image_container_tech:hover {
    box-shadow: 0 25px 60px rgba(10, 124, 196, 0.15);
}

.my_service_image_container_tech:hover img {
    transform: scale(1.05);
}

.my_service_tech_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.my_service_tech_item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.my_service_tech_icon {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a7cc4;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.my_service_tech_item:hover .my_service_tech_icon {
    background: #0a7cc4;
    color: white;
    transform: scale(1.1);
}

.my_service_tech_text h4 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.my_service_tech_item:hover .my_service_tech_text h4 {
    color: #0a7cc4;
}

.my_service_tech_text p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.my_service_cta_section {
    padding: 100px 0;
    background: #0a7cc4;
    position: relative;
}

.my_service_cta_content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.my_service_cta_title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.my_service_cta_subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    margin-bottom: 40px;
}

.my_service_cta_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.my_service_cta_button {
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
}

/* Button Colors */
.my_service_cta_phone {
    background: white;
    color: #0a7cc4;
    border: 2px solid white;
}

.my_service_cta_phone:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.my_service_cta_whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.my_service_cta_whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.my_service_cta_appointment {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.my_service_cta_appointment:hover {
    background: white;
    color: #0a7cc4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .my_service_why_choose_grid,
    .my_service_tech_content {
        gap: 60px;
    }
    
    .my_service_image_container_why,
    .my_service_image_container_tech {
        height: 450px;
    }
    
    .my_service_grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 991px) {
    .my_service_why_choose_grid,
    .my_service_tech_content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .my_service_image_container_why,
    .my_service_image_container_tech {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .my_service_why_choose_content,
    .my_service_tech_features {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .my_service_tech_features {
        order: 2;
    }
    
    .my_service_tech_image {
        order: 1;
    }
    
    .my_service_box {
        height: 380px;
    }
    
    .my_service_image {
        height: 240px;
    }
    
    .my_service_section_title {
        font-size: 36px;
    }
    
    .my_service_cta_title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .my_service_image_container_why,
    .my_service_image_container_tech {
        height: 350px;
    }
    
    .my_service_content_block h3 {
        font-size: 20px;
    }
    
    .my_service_content_block p {
        font-size: 15px;
    }
    
    .my_service_content_paragraph p {
        font-size: 15px;
    }
    
    .my_service_tech_item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .my_service_tech_icon {
        margin: 0 auto;
    }
    
    .my_service_grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .my_service_box {
        height: 350px;
    }
    
    .my_service_image {
        height: 220px;
    }
    
    .my_service_cta_title {
        font-size: 32px;
    }
    
    .my_service_cta_subtitle {
        font-size: 18px;
    }
    
    .my_service_cta_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .my_service_cta_button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .my_service_image_container_why,
    .my_service_image_container_tech {
        height: 280px;
    }
    
    .my_service_content_block {
        margin-bottom: 20px;
    }
    
    .my_service_content_block h3 {
        font-size: 18px;
    }
    
    .my_service_content_block p {
        font-size: 14px;
    }
    
    .my_service_content_paragraph {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .my_service_content_paragraph p {
        font-size: 14px;
    }
    
    .my_service_tech_item {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .my_service_tech_text h4 {
        font-size: 18px;
    }
    
    .my_service_tech_text p {
        font-size: 14px;
    }
    
    .my_service_box {
        height: 320px;
    }
    
    .my_service_image {
        height: 200px;
    }
    
    .my_service_content h3 {
        font-size: 22px;
    }
    
    .my_service_section_title {
        font-size: 28px;
    }
    
    .my_service_section_subtitle {
        font-size: 16px;
    }
    
    .my_service_cta_title {
        font-size: 28px;
    }
    
    .my_service_cta_subtitle {
        font-size: 16px;
    }
}