
    /* Service Page Specific Styles */
    .service-hero-section {
        background: linear-gradient(135deg, var(--theme-color1) 0%, var(--theme-color-dark) 100%);
        padding: 50px 0;
        color: white;
        text-align: center;
    }

    .service-title {
        color: #fff;
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 6px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .service-subtitle {
        font-size: 17px;
        margin-bottom: 0px;
        opacity: 0.9;
        color: #fff;
    }

    .service-features {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .feature-item i {
        font-size: 2rem;
        color: #ffd700;
    }

    .feature-item span {
        font-weight: 500;
    }

    .service-form-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .service-form-container {
        background: white;
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .form-title {
        font-size: 2rem;
        color: var(--theme-color-dark);
        margin-bottom: 10px;
        text-align: center;
    }

    .form-description {
        text-align: center;
        color: #666;
        margin-bottom: 40px;
    }

    .form-section {
        margin-bottom: 40px;
        padding: 30px;
        border: 1px solid #e9ecef;
        border-radius: 10px;
        background: #fafbfc;
    }

    .section-title {
        font-size: 1.3rem;
        color: var(--theme-color1);
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .section-title i {
        color: var(--theme-color1);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        display: block;
    }

    .form-control {
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 12px 15px;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .form-control:focus {
        border-color: var(--theme-color1);
        box-shadow: 0 0 0 0.2rem rgba(0, 102, 148, 0.25);
    }

    .form-control.error {
        border-color: #dc3545;
    }

    .service-types {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .service-type-item {
        position: relative;
    }

    .service-type-item input[type="radio"] {
        display: none;
    }

    .service-type-item label {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
        min-height: 125px;
    }

    .service-type-item input[type="radio"]:checked+label {
        border-color: var(--theme-color1);
        background: #f0f8ff;
        box-shadow: 0 5px 15px rgba(0, 102, 148, 0.2);
    }

    .service-icon {
        width: 50px;
        height: 50px;
        background: var(--theme-color1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .service-info h4 {
        margin: 0 0 5px 0;
        color: #333;
        font-size: 1rem;
    }

    .service-info p {
        margin: 0;
        color: #666;
        font-size: 0.9rem;
    }

    .form-actions {
        text-align: center;
        margin-top: 40px;
    }

    .btn-submit {
        background: var(--theme-color1);
        border: none;
        padding: 15px 40px;
        font-size: 1.1rem;
        font-weight: 600;
        margin-right: 15px;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        background: var(--theme-color-dark);
        transform: translateY(-2px);
    }

    .btn-reset {
        background: #6c757d;
        border: none;
        padding: 15px 30px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .btn-reset:hover {
        background: #5a6268;
    }

    /* Sidebar Styles */
    .service-sidebar {
        position: sticky;
        top: 20px;
    }

    .sidebar-widget {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 25px;
    }

    .widget-title {
        font-size: 1.2rem;
        color: var(--theme-color1);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-item i {
        color: var(--theme-color1);
        font-size: 1.2rem;
        width: 20px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
    }

    .contact-label {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 2px;
    }

    .contact-details a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }

    .contact-details a:hover {
        color: var(--theme-color1);
    }

    .hours-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .hours-item:last-child {
        border-bottom: none;
    }

    .day {
        font-weight: 500;
        color: #333;
    }

    .time {
        color: #666;
    }

    .services-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .services-menu li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        color: #333;
    }

    .services-menu li i {
        color: var(--theme-color1);
        font-size: 0.9rem;
    }

    /* Service Features Section */
    .service-features-section {
        padding: 80px 0;
        background: white;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--theme-color-dark);
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #666;
    }

    .feature-box {
        text-align: center;
        padding: 40px 20px;
        border-radius: 10px;
        transition: all 0.3s ease;
        height: 100%;
    }

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: var(--theme-color1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 2rem;
    }

    .feature-box h4 {
        color: var(--theme-color-dark);
        margin-bottom: 15px;
        font-size: 1.2rem;
    }

    .feature-box p {
        color: #666;
        line-height: 1.6;
    }

    /* Alert Styles */
    .alert {
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .alert-success {
        background-color: #d4edda;
        border-color: #c3e6cb;
        color: #155724;
    }

    .alert-danger {
        background-color: #f8d7da;
        border-color: #f5c6cb;
        color: #721c24;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .service-title {
            font-size: 2rem;
        }

        .service-features {
            flex-direction: column;
            gap: 20px;
        }

        .service-form-container {
            padding: 20px;
        }

        .form-section {
            padding: 20px;
        }

        .service-types {
            grid-template-columns: 1fr;
        }

        .form-actions {
            text-align: center;
        }

        .btn-submit,
        .btn-reset {
            display: block;
            width: 100%;
            margin: 10px 0;
        }

        .service-sidebar {
            margin-top: 30px;
        }
    }

    /* Gallery Styles */
    .gallery-section {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .gallery-header {
        margin-bottom: 50px;
    }

    .gallery-title {
        font-size: 2.5rem;
        color: var(--theme-color-dark);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .gallery-subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-image-wrapper {
        position: relative;
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    .gallery-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-image {
        transform: scale(1.1);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-icon {
        width: 60px;
        height: 60px;
        background: var(--theme-color1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        transform: scale(0.8);
        transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-icon {
        transform: scale(1);
    }

    .gallery-link {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }

    /* Gallery Responsive */
    @media (max-width: 768px) {
        .gallery-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-image-wrapper {
            height: 200px;
        }

        .gallery-title {
            font-size: 2rem;
        }

        .service-icon
        {
            display: none !important;
        }
    }
