.page-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    padding: 4rem 20px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.services-section {
    padding: 5rem 0;
    background-color: #fff;
}

.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-detailed {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.service-detailed h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-detailed p {
    color: #666;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-table th {
    background-color: #2c2c2c;
    color: #fff;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background-color: #f9f9f9;
}

.pricing-info {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.pricing-info h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.pricing-info ul {
    list-style: none;
    padding: 0;
}

.pricing-info li {
    padding: 0.5rem 0;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-info li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.aftercare {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #d4a574;
    margin: 3rem 0;
}

.aftercare h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.aftercare-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #d4a574;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .services-detailed {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 10px;
    }

    .aftercare-steps {
        grid-template-columns: 1fr;
    }
    .master-detail-image {
        height: 100vh;
        max-height: 400px;
    }
    .master-cta .btn {
        margin-bottom: 10px;
    }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb {
    background-color: #f5f5f5;
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #d4a574;
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #999;
    margin: 0 8px;
}

/* Service Hero Section */
.service-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
}

.service-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4a574;
}

.hero-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-item .label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.meta-item .value {
    font-size: 18px;
    font-weight: 600;
    color: #d4a574;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover .hero-img {
    transform: scale(1.05);
}

/* Service Description Section */
.service-description {
    padding: 80px 0;
}

.service-description .description-main ol{
    list-style: none;
    margin-bottom: 40px;
    counter-reset: item;    
}

.service-description .description-main ol li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    counter-increment: item;
}

.service-description .description-main ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #d4a574;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.service-description .description-main ol h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.service-description .description-main ol p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.description-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.description-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.description-main h3 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #d4a574;
}

.description-main p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* Process List */
.process-list {
    list-style: none;
    margin-bottom: 40px;
    counter-reset: item;
}

.process-list li {
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    counter-increment: item;
}

.process-list li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #d4a574;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.process-list h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.process-list p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    color: #d4a574;
    padding-left: 10px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Sidebar */
.description-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4a574;
    color: #2c2c2c;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .label {
    font-weight: 600;
    color: #333;
}

.info-item .value {
    color: #d4a574;
    font-weight: 500;
}

.info-card .btn-primary {
    background-color: #d4a574;
    color: white;
    text-align: center;
    display: block;
}

.btn-block {
    width: 100%;
    margin-top: 20px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

.info-card .faq-question {
    width: 100%;
    background: #f5f5f5;
    border: none;
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    color: #333;
}

.faq-question:hover {
    background-color: #e8e8e8;
    color: #d4a574;
}

.faq-question.active {
    background-color: #d4a574;
    color: white;
}

.faq-answer {
    display: none;
    padding: 12px 15px;
    background: #fafafa;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    border-radius: 0 0 4px 4px;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    margin: 0;
}

/* Service Gallery */
.service-gallery {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.service-gallery h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.section-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 165, 116, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay p {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Service Masters Section */
.service-masters {
    padding: 80px 0;
}

.service-masters h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.master-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.master-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.master-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.master-card h3 {
    padding: 20px 20px 5px;
    font-size: 20px;
    color: #2c2c2c;
}

.master-specialty {
    padding: 0 20px;
    font-size: 13px;
    color: #d4a574;
    font-weight: 600;
    text-transform: uppercase;
}

.master-bio {
    padding: 10px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.master-card .btn {
    margin: 15px 20px 20px;
}

/* Service Pricing Section */
.service-pricing {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.service-pricing h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card ul{
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 20px;
}

.pricing-card ul li::after {
    position: absolute;
    content: "✓";
    width: 10px;
    height: 10px;
    left: 0;
    top: 9px;
}

.pricing-card.featured {
    border-color: #d4a574;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.2);
}

.pricing-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #d4a574;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 10px;
}

.pricing-card .description {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
    text-align: left;
}

.pricing-card .features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.pricing-card .features li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-card .features li:last-child {
    border-bottom: none;
}

/* Service Reviews Section */
.service-reviews {
    padding: 80px 0;
}

.service-reviews h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.review-rating {
    color: #d4a574;
    font-size: 16px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Service CTA Section */
.service-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    text-align: center;
}

.service-cta h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #d4a574;
}

.service-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(212, 165, 116, 0.8);
    color: white;
    border: none;
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d4a574;
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Input Error Styles */
input.error,
textarea.error,
select.error {
    border-color: #e74c3c !important;
    background-color: #fadbd8 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-img {
        height: 300px;
    }

    .description-grid {
        grid-template-columns: 1fr;
    }

    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .service-cta h2 {
        font-size: 28px;
    }

    .gallery-grid {
        /* grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    .masters-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .description-main h2 {
        font-size: 24px;
    }

    .description-main h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .service-gallery,
    .service-masters,
    .service-pricing,
    .service-reviews,
    .service-cta {
        padding: 40px 0;
    }

    .pricing-card .price {
        font-size: 28px;
    }

    .hero-meta {
        gap: 10px;
    }

    .meta-item .value {
        font-size: 16px;
    }
}

