/* ===================================
   SERVICES PAGE STYLES - Dr. C. Ajithkumar Portfolio
   Professional Training Services Design
   =================================== */

/* CSS Variables */
:root {
    --primary-blue: #1e40af;
    --light-blue: #3b82f6;
    --accent-gold: #fbbf24;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-gray: #64748b;
    --dark-gray: #374151;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 20px;
}

/* Services Page Body */
.services-page {
    background: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    color: var(--white);
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: clamp(20px, 5vw, 40px);
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Styling */
.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Search and Filter Section */
.search-filter-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.search-filter-form .form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 14px;
}

.search-filter-form .form-control,
.search-filter-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 15px;
    transition: var(--transition);
}

.search-filter-form .form-control:focus,
.search-filter-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.search-filter-form .btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.search-filter-form .btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.search-filter-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--accent-gold);
}

.service-card.featured {
    border-color: var(--accent-gold);
    position: relative;
}

.service-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--light-gray);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-badges .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.service-content {
    padding: 24px;
}

.service-header {
    margin-bottom: 16px;
}

.service-category {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.service-content h4,
.service-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.detail-item i {
    width: 18px;
    font-size: 16px;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    gap: 12px;
}

.service-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}

.service-actions .btn {
    flex: 1;
    min-width: 100px;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-actions .btn-outline-primary {
    background: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.service-actions .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.service-actions .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--white);
}

.service-actions .btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Popular Services Section */
.popular-service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
}

.popular-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.popular-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 16px;
}

.popular-service-card h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--light-gray);
    color: var(--dark-gray);
    font-weight: 600;
    border: none;
    padding: 16px 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

.accordion-body {
    background: var(--white);
    padding: 20px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Empty State */
.empty-state {
    max-width: 500px;
    margin: 0 auto;
}

.empty-state i {
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.empty-state p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--text-gray);
}

/* Pagination */
.pagination {
    --bs-pagination-color: var(--primary-blue);
    --bs-pagination-bg: var(--white);
    --bs-pagination-border-color: #e5e7eb;
    --bs-pagination-hover-color: var(--white);
    --bs-pagination-hover-bg: var(--primary-blue);
    --bs-pagination-hover-border-color: var(--primary-blue);
    --bs-pagination-active-color: var(--white);
    --bs-pagination-active-bg: var(--primary-blue);
    --bs-pagination-active-border-color: var(--primary-blue);
}

.page-link {
    border-radius: var(--border-radius);
    margin: 0 4px;
    font-weight: 600;
    transition: var(--transition);
}

.page-link:hover {
    transform: translateY(-2px);
}

/* Call to Action */
.bg-primary {
    background: var(--gradient-primary) !important;
}

/* Modal Styling */
.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-strong);
}

.modal-header {
    background: var(--light-gray);
    border-bottom: 1px solid #e5e7eb;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-title {
    color: var(--primary-blue);
    font-weight: 700;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    background: var(--light-gray);
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .hero-stats {
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 16px;
        min-width: 100px;
    }
    
    .search-filter-card {
        padding: 20px;
    }
    
    .search-filter-form .row > div {
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
        margin-bottom: 8px;
    }
    
    .floating-elements {
        display: none;
    }
    
    .popular-service-card {
        padding: 16px;
    }
    
    .popular-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        padding: 14px;
    }
    
    .search-filter-card {
        padding: 16px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 16px;
    }
    
    .service-content h4,
    .service-content h5 {
        font-size: 1.1rem;
    }
    
    .service-actions .btn {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .popular-service-card h6 {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .search-filter-form .btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .service-content h4,
    .service-content h5 {
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   SERVICE DETAIL PAGE STYLES
   =================================== */

/* Service Detail Hero */
.service-hero {
    position: relative;
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.min-vh-70 {
    min-height: 70vh;
}

.service-hero-content {
    color: var(--white);
}

.service-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}

.service-breadcrumb a:hover {
    color: var(--accent-gold) !important;
}

.service-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.service-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.service-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.service-badges .badge {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.service-quick-facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fact-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    opacity: 0.9;
}

.fact-item i {
    width: 20px;
    color: var(--accent-gold);
}

/* Service Inquiry Card */
.service-inquiry-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-header h3 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.inquiry-subtitle {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.inquiry-features {
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--dark-gray);
}

.feature-item i {
    margin-top: 2px;
    flex-shrink: 0;
}

.inquiry-actions .btn {
    font-weight: 600;
    border-radius: var(--border-radius);
}

/* Service Navigation */
.service-nav {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.service-nav-pills {
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    padding: 8px;
}

.service-nav-pills .nav-link {
    color: var(--text-gray);
    font-weight: 600;
    border-radius: var(--border-radius);
    padding: 16px 24px;
    transition: var(--transition);
    border: 2px solid transparent;
    margin: 0 4px;
}

.service-nav-pills .nav-link:hover {
    color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.1);
}

.service-nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Content Cards */
.content-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.content-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--accent-gold);
}

.content-card h4 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 30px;
}

.service-description,
.methodology-content,
.requirements-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.service-featured-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.sidebar-card h5 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--dark-gray);
    flex: 1;
    font-size: 14px;
}

.detail-value {
    flex: 1;
    text-align: right;
    font-size: 14px;
    color: var(--text-gray);
}

/* Curriculum/What's Included Styling */
.curriculum-section {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-bottom: 20px;
}

.curriculum-section h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.curriculum-list {
    list-style: none;
    padding: 0;
}

.curriculum-item {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
}

.curriculum-item i {
    color: var(--success-green);
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h6 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 4px;
}

/* FAQ Styling */
.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    background: var(--light-gray);
    padding: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: rgba(30, 64, 175, 0.1);
}

.faq-answer {
    padding: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    border-top: 1px solid #e5e7eb;
}

/* Related Services */
.related-service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.related-service-image {
    height: 150px;
    overflow: hidden;
    background: var(--light-gray);
}

.related-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-service-card:hover .related-service-image img {
    transform: scale(1.05);
}

.related-service-content {
    padding: 16px;
}

.related-service-content h6 {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.related-service-content p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* Responsive Design for Detail Page */
@media (max-width: 768px) {
    .service-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .service-hero-content {
        margin-bottom: 30px;
    }
    
    .service-inquiry-card {
        padding: 24px;
        margin-top: 30px;
    }
    
    .service-nav {
        position: static;
    }
    
    .service-nav-pills {
        flex-direction: column;
        gap: 8px;
    }
    
    .service-nav-pills .nav-link {
        text-align: center;
        margin: 0;
    }
    
    .content-card {
        padding: 24px;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .service-badges {
        gap: 8px;
    }
    
    .service-quick-facts {
        gap: 8px;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .detail-value {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .service-hero {
        padding: 80px 0 40px;
    }
    
    .service-inquiry-card {
        padding: 20px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .content-card h3 {
        font-size: 1.5rem;
    }
    
    .service-badges {
        gap: 6px;
    }
    
    .service-badges .badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .fact-item {
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .search-filter-card,
    .service-overlay,
    .floating-elements,
    .service-nav {
        display: none !important;
    }
    
    .service-card,
    .content-card,
    .sidebar-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .service-hero {
        background: none !important;
        color: #000 !important;
    }
}