/* CAM DOKTORU - Custom CSS */

:root {
    --primary-blue: #2563eb;
    --trust-orange: #f97316;
    --success-green: #10b981;
    --dark-blue: #1e40af;
    --light-blue: #eff6ff;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #374151;
    --text-dark: #1f2937;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.text-primary {
    color: var(--primary-blue) !important;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 12px 24px;
    transition: none;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: none;
    box-shadow: none;
}

.btn-warning {
    background-color: var(--trust-orange);
    border-color: var(--trust-orange);
    color: white;
    font-weight: 600;
}

/* Navigation */
.navbar { transition: none; backdrop-filter: none; }

.navbar-brand { font-size: 1.8rem !important; transition: none; display: flex; align-items: center; }

.navbar-brand img { transition: none; filter: none; }

.navbar-brand:hover img { transform: none; filter: none; }

.nav-link { font-weight: 500; color: var(--text-dark) !important; transition: none; }

.nav-link:hover { color: var(--primary-blue) !important; }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(249, 115, 22, 0.1) 100%);
    min-height: 100vh;
    position: relative;
}

.hero-content { animation: none; }

.hero-image { animation: none; }

.stat-item { padding: 15px; transition: none; }

.stat-item:hover { transform: none; }

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: none;
    border: 1px solid #e5e7eb;
}

.service-card:hover { transform: none; box-shadow: none; }

/* Service Detail Cards for Service Pages */
.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--trust-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.price-tag {
    background: linear-gradient(135deg, var(--trust-orange), #ea580c);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.price-tag .price {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

/* Brand Items */
.brand-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brand-item h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    /* Default gradient - will be overridden by specific service classes */
    background: linear-gradient(135deg, var(--primary-blue), var(--trust-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

/* Specific service icon backgrounds */
.service-icon-automotive {
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
}

.service-icon-residential {
    background: linear-gradient(135deg, #dcfce7 0%, #86efac 100%);
}

.service-icon-commercial {
    background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
}

.service-icon-emergency {
    background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 100%);
}

.emergency-service {
    border: 2px solid var(--trust-orange);
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

/* Feature Items */
.feature-item {
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 2rem;
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-blue) !important;
    transform: translateY(-3px);
}

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

/* Service Detail Pages */
.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue), var(--trust-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-detail-card:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.price-tag {
    background: linear-gradient(135deg, var(--success-green), #059669);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-align: center;
    margin-top: auto;
}

.price {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2rem;
}

.process-step:hover .step-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.process-step:hover .step-icon i {
    color: white;
}

/* Brand Items */
.brand-item {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.brand-item:hover {
    border-color: var(--primary-blue);
    background: var(--light-blue);
    transform: translateY(-5px);
}

/* Coverage Cards */
.coverage-card {
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue) !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

/* Emergency Specific Styles */
.emergency-call-box {
    position: sticky;
    top: 100px;
}

.emergency-hero {
    position: relative;
    overflow: hidden;
}

.emergency-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="emergency-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23emergency-grid)"/></svg>');
    z-index: 1;
}

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

/* Navbar Scrolled State */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Alert Animations */
.alert {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--trust-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-contact {
    border: 2px solid var(--trust-orange);
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.emergency-contact .contact-icon {
    background: linear-gradient(135deg, var(--trust-orange), #ea580c);
    animation: pulse 2s infinite;
}

.service-area-card {
    transition: all 0.3s ease;
    height: 100%;
}

.service-area-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue) !important;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.response-time .badge {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* About Page Styles */
.mission-card, .vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mission-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--success-green), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.value-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--trust-orange), #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-photo {
    margin-bottom: 1.5rem;
}

.certificate-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-5px);
}

.stat-item-large {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-10px);
}

/* Industry Cards */
.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--trust-orange);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--trust-orange), #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Accordion Custom Styles */
.accordion-button {
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .service-card, .service-detail-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .emergency-call-box {
        position: static;
        margin-top: 2rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .service-icon-large i {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .contact-info-card, .mission-card, .vision-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .industry-card, .team-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-section .col-lg-8,
    .hero-section .col-lg-4 {
        text-align: center;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-detail-card {
        padding: 1rem;
    }
    
    .contact-info-card,
    .mission-card,
    .vision-card,
    .industry-card,
    .team-card {
        padding: 1rem;
    }
    
    .emergency-phone {
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 380px) {
    .display-4 {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem !important;
    }
    
    .service-icon, .contact-icon, .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i, .contact-icon i, .feature-icon i {
        font-size: 1.5rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-large i {
        font-size: 1.8rem;
    }
}

/* Tablet Optimization */
@media (min-width: 768px) and (max-width: 992px) {
    .service-card, .service-detail-card {
        margin-bottom: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .col-lg-4 .service-card {
        height: 100%;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        padding: 12px 16px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
    
    .navbar-toggler {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
    
    .form-control {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .accordion-button {
        padding: 15px 20px;
    }
}

/* Landscape phone optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .emergency-hero {
        padding: 60px 0 30px;
    }
}

/* Print styles */
/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    /* Enhanced mobile navigation */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid #e9ecef;
        text-align: center;
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mobile-friendly buttons */
    .btn {
        min-height: 48px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .btn-lg {
        min-height: 54px;
        font-size: 18px;
    }
    
    /* Touch-friendly form elements */
    .form-control, .form-select {
        min-height: 48px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    /* Improved card spacing */
    .card {
        margin-bottom: 20px;
    }
    
    /* Mobile hero adjustments */
    .hero-section {
        padding: 120px 0 40px;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    /* Mobile service cards */
    .service-card {
        text-align: center;
        padding: 1.5rem;
    }
    
    /* Mobile contact info */
    .contact-info p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    /* Mobile footer improvements */
    .footer .col-lg-4,
    .footer .col-lg-2,
    .footer .col-lg-3 {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .social-links {
        text-align: center;
        margin-top: 20px;
    }
    
    .social-links a {
        font-size: 1.5rem;
        margin: 0 10px;
    }
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        padding: 140px 0 60px;
    }
    
    .service-card {
        height: auto;
        min-height: 300px;
    }
    
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline-primary {
        border-width: 2px;
    }
    
    .card {
        border-width: 2px;
    }
    
    .form-control {
        border-width: 2px;
    }
}

/* Dark mode support (future implementation) */
@media (prefers-color-scheme: dark) {
    /* Will be implemented based on user preference */
}

/* Loading states for better UX */
.loading-state {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading-state::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Print styles */
@media print {
    .navbar, .footer, .btn, .emergency-call-box {
        display: none !important;
    }
    
    .container {
        max-width: 100% !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Glass Repair Slider Styles */
#glassRepairCarousel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#glassRepairCarousel .carousel-item img {
    transition: transform 0.6s ease-in-out;
}

#glassRepairCarousel .carousel-item:hover img {
    transform: scale(1.05);
}

#glassRepairCarousel .carousel-caption {
    background: rgba(0, 0, 0, 0.7) !important;
    border-radius: 10px;
    padding: 1rem;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

#glassRepairCarousel .carousel-caption h5 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

#glassRepairCarousel .carousel-caption p {
    color: #f8f9fa;
    margin-bottom: 0;
}

#glassRepairCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    margin: 0 5px;
}

#glassRepairCarousel .carousel-indicators button.active {
    background-color: #007bff;
    border-color: #ffffff;
}

#glassRepairCarousel .carousel-control-prev,
#glassRepairCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

#glassRepairCarousel .carousel-control-prev {
    left: 20px;
}

#glassRepairCarousel .carousel-control-next {
    right: 20px;
}

/* Slider Info Styles */
.slider-info {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.slider-info h5 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slider-info p {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Carousel Animation */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    #glassRepairCarousel .carousel-item img {
        height: 250px !important;
    }
    
    #glassRepairCarousel .carousel-caption {
        width: 90%;
        padding: 0.5rem;
    }
    
    #glassRepairCarousel .carousel-caption h5 {
        font-size: 1rem;
    }
    
    #glassRepairCarousel .carousel-caption p {
        font-size: 0.8rem;
    }
    
    .slider-info {
        margin-bottom: 0.5rem;
        padding: 0.5rem;
    }
    
    .slider-info h5 {
        font-size: 1.2rem;
    }
    
    .slider-info p {
        font-size: 0.8rem;
    }
}

/* Admin Panel Logo Styles */
.admin-sidebar img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.admin-sidebar img:hover {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    transform: scale(1.05);
}

/* Admin Panel Header Styling */
.admin-sidebar .border-bottom {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.admin-sidebar .d-flex {
    min-height: 60px;
}