/* Service Pages Specific Styles */

/* Services Hub Hero */
.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 20px 25px;
    font-size: 1.1rem;
    border-radius: 50px;
    outline: none;
}

.search-box button {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: #d97706;
}

/* Service Categories */
.service-categories {
    background: white;
    padding: 30px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 99;
}

body.dark-mode .service-categories {
    background: #1e293b;
}

.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-tab {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.category-tab:hover {
    background: rgba(37, 99, 235, 0.1);
}

.category-tab.active {
    background: var(--primary-color);
    color: white;
}

/* All Services Grid */
.all-services-grid {
    padding: 60px 0;
    background: #f8fafc;
}

body.dark-mode .all-services-grid {
    background: #0f172a;
}

.service-category {
    margin-bottom: 80px;
}

.category-title {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

body.dark-mode .category-title {
    color: #e2e8f0;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.dark-mode .service-card {
    background: #334155;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

body.dark-mode .service-card h3 {
    color: #e2e8f0;
}

.service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f1f5f9;
    border-radius: 10px;
}

body.dark-mode .service-meta {
    background: #475569;
}

.price {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.time {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.service-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Quick Booking */
.quick-booking {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.quick-booking h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quick-booking p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-options a {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.call-btn {
    background: var(--primary-color);
    color: white;
}

.call-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.booking-btn {
    background: var(--success-color);
    color: white;
}

.booking-btn:hover {
    background: #0da271;
    transform: translateY(-3px);
}

/* Individual Service Page Styles */
.service-page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.service-page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.service-page-header .breadcrumb a {
    color: white;
    text-decoration: none;
}

.service-page-header .breadcrumb a:hover {
    text-decoration: underline;
}

.service-page-content {
    padding: 60px 0;
}

.service-details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

body.dark-mode .service-info {
    background: #334155;
}

.service-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

body.dark-mode .service-info h2 {
    border-bottom-color: #475569;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.dark-mode .features-list li {
    border-bottom-color: #475569;
}

.features-list i {
    color: var(--success-color);
}

.process-steps {
    counter-reset: step;
}

.step {
    margin-bottom: 30px;
    padding-left: 50px;
    position: relative;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.booking-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

body.dark-mode .booking-widget {
    background: #334155;
}

.booking-widget h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.price-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 25px;
}

.price-card .amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0;
}

.price-card .note {
    font-size: 0.9rem;
    opacity: 0.9;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.booking-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.booking-form button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.service-faq {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

body.dark-mode .service-faq {
    background: #334155;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

body.dark-mode .faq-item {
    border-bottom-color: #475569;
}

.faq-question {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.dark-mode .faq-question {
    color: #e2e8f0;
}

.faq-answer {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

body.dark-mode .price-table {
    background: #334155;
}

.price-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

body.dark-mode .price-table td {
    border-bottom-color: #475569;
}

.price-table tr:hover {
    background: #f1f5f9;
}

body.dark-mode .price-table tr:hover {
    background: #475569;
}

/* Gallery */
.service-gallery {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Requirements Box */
.requirements-box {
    background: #f0f9ff;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

body.dark-mode .requirements-box {
    background: #1e3a8a;
}

.requirements-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-details-container {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-tabs {
        gap: 5px;
    }

    .category-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-options a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .service-page-header h1 {
        font-size: 2.2rem;
    }

    .search-box {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        gap: 10px;
    }

    .search-box input {
        border-radius: 10px;
        padding: 15px;
    }

    .search-box button {
        width: 100%;
        border-radius: 10px;
        padding: 15px;
    }
}

/* Additional styles for all service pages */

/* Government Forms Page Specific */
.govt-forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.govt-form-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

body.dark-mode .govt-form-card {
    background: #334155;
}

.govt-form-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.govt-form-card p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Banking Services Specific */
.account-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.account-card {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #bae6fd;
}

body.dark-mode .account-card {
    background: #1e3a8a;
    border-color: #1d4ed8;
}

.account-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.account-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--success-color);
    margin: 10px 0;
}

/* Mug Printing Specific */
.mug-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.mug-card {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

body.dark-mode .mug-card {
    background: #334155;
    border-color: #475569;
}

.mug-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
}

.mug-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--success-color);
    margin: 10px 0;
}

/* Binding & Lamination Specific */
.binding-types {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.binding-type {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
}

.lamination-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.lamination-card {
    padding: 15px;
    background: #f1f5f9;
    border-radius: 8px;
    text-align: center;
}

body.dark-mode .lamination-card {
    background: #475569;
}

/* Xerox & Scanning Specific */
.xerox-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.xerox-option {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

body.dark-mode .xerox-option {
    background: #334155;
}

.xerox-option h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.xerox-option .rate {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--success-color);
    margin: 10px 0;
}

/* Educational Services Specific */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.education-service {
    padding: 20px;
    background: #f0f9ff;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

body.dark-mode .education-service {
    background: #1e3a8a;
}

.education-service h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Health Services Specific */
.health-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.health-service {
    padding: 20px;
    background: #f0f4ff;
    border-radius: 10px;
    text-align: center;
}

body.dark-mode .health-service {
    background: #1e3a8a;
}

.health-service i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Agricultural Services Specific */
.agri-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.agri-service {
    padding: 20px;
    background: #f0fff4;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #bbf7d0;
}

body.dark-mode .agri-service {
    background: #064e3b;
    border-color: #047857;
}

.agri-service h4 {
    color: var(--success-color);
    margin-bottom: 10px;
}

/* Legal & Notary Specific */
.legal-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.legal-service {
    padding: 20px;
    background: #fef2f2;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
}

body.dark-mode .legal-service {
    background: #7f1d1d;
}

.legal-service h4 {
    color: #dc2626;
    margin-bottom: 10px;
}

/* Website Development Specific */
.website-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.package-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
}

body.dark-mode .package-card {
    background: #334155;
}

.package-card.popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.package-card .popular-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.package-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--success-color);
    margin: 20px 0;
}

.package-card .features {
    text-align: left;
    margin: 25px 0;
}

.package-card .features li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

body.dark-mode .package-card .features li {
    border-bottom-color: #475569;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .partners-grid,
    .international-grid,
    .tshirt-grid,
    .bus-grid,
    .train-grid {
        grid-template-columns: 1fr;
    }

    .package-card.popular {
        transform: scale(1);
    }

    .govt-forms-grid,
    .account-types,
    .mug-types,
    .lamination-types,
    .xerox-options,
    .education-grid,
    .health-services-grid,
    .agri-services,
    .legal-services,
    .website-packages {
        grid-template-columns: 1fr;
    }
}

/* Print styles for checklists and receipts */
@media print {

    .header,
    .footer,
    .booking-widget,
    .service-sidebar {
        display: none;
    }

    .service-info {
        width: 100%;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}