/* ===========================
   Rüya Garage - Professional CSS
   =========================== */

/* Root Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #6c757d;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #0a58ca;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 5px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
/* ===========================
   Hero Slider Section
   =========================== */

.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.hero-slider-section .carousel {
    height: 85vh;
    min-height: 600px;
}

.hero-slider-section .carousel-inner {
    height: 100%;
}

.hero-slider-section .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Slide Animations */
.carousel-item .slide-title {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.3s forwards;
}

.carousel-item.active .slide-title {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.3s forwards;
}

.carousel-item .slide-text {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.carousel-item.active .slide-text {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.5s forwards;
}

.carousel-item .slide-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

.carousel-item.active .slide-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out 0.7s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Controls */
.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-control-prev {
    left: 30px;
}

.hero-slider-section .carousel-control-next {
    right: 30px;
}

.hero-slider-section .carousel-control-prev:hover,
.hero-slider-section .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
}

.hero-slider-section .carousel-control-prev-icon,
.hero-slider-section .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.hero-slider-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.hero-slider-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.hero-slider-section .carousel-indicators button.active {
    width: 40px;
    border-radius: 6px;
    background-color: var(--white);
}

/* Old hero styles - keeping for backwards compatibility */
.hero-section-modern {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                      url('https://images.unsplash.com/photo-1632823469299-0d097f305c0d?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    padding: 80px 0;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Old hero styles - keeping for backwards compatibility */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero-image {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.9;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Service Cards with Images - AutoKing Style */
.service-image-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.service-image-header {
    height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
}

.service-badge {
    background: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.service-image-body {
    padding: 2rem;
}

.feature-list-check {
    list-style: none;
    padding: 0;
}

.feature-list-check li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--light-color);
}

.feature-list-check li:last-child {
    border-bottom: none;
}

.feature-list-check i {
    font-size: 1.1rem;
}

/* Old Service Card Styles */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-icon i {
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-detail-card .card-body {
    padding: 2rem;
}

.service-icon-large {
    font-size: 3rem;
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.feature-list-detailed {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Feature Boxes */
.feature-box {
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.feature-box:hover {
    background-color: var(--light-color);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
}

/* Value Cards */
.value-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
}

/* Team Cards */
.team-card {
    padding: 2rem;
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.team-icon {
    font-size: 5rem;
    color: var(--primary-color);
}

/* Info Boxes */
.info-box {
    padding: 2rem;
    text-align: center;
    border-radius: 15px;
    background: var(--light-color);
    transition: var(--transition);
}

.info-box:hover {
    background: #e9ecef;
}

.info-box i {
    font-size: 3rem;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-icon-hero {
    font-size: 5rem;
}

/* Contact Info */
.contact-info-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--light-color);
    transition: var(--transition);
}

.contact-info-item:hover {
    background: #e9ecef;
}

.contact-info-item i {
    opacity: 0.8;
}

/* Forms */
.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    animation: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Footer */
footer {
    background: var(--dark-color);
}

footer h5 {
    color: var(--white);
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--white) !important;
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Alerts */
.alert {
    border-radius: 15px;
    border: none;
}

/* Service Content */
.service-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

/* About Image Placeholder */
.about-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-image i {
        font-size: 8rem;
    }

    .floating-contacts {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }

    .display-6 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===========================
   Package Cards - Corporate Design
   =========================== */

.packages-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-color) 100%);
}

/* Service Info Card - Image-based design */
.service-info-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-info-card.popular-card {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.service-info-image {
    height: 280px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* Service Image Backgrounds - Real automotive service photos */
.service-img-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=800&q=80');
    background-size: cover;
    background-position: center;
}

.service-img-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1625047509168-a7026f36de04?w=800&q=80');
    background-size: cover;
    background-position: center;
}

.service-img-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1615906655593-ad0386982a0f?w=800&q=80');
    background-size: cover;
    background-position: center;
}

.service-img-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?w=800&q=80');
    background-size: cover;
    background-position: center;
}

.service-info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-info-card:hover .service-info-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.service-info-overlay i {
    font-size: 5rem;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.service-info-card:hover .service-info-overlay i {
    transform: scale(1.1);
    opacity: 1;
}

.service-info-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-period {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-description {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-features {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: auto;
}

.service-features h5 {
    color: var(--text-color);
    font-size: 1rem;
}

.service-features .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features .feature-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features .feature-list li:last-child {
    border-bottom: none;
}

/* Detail Box */
.detail-box {
    transition: var(--transition);
    border: 2px solid transparent;
}

.detail-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.detail-icon {
    flex-shrink: 0;
}

/* Responsive adjustments for packages */
@media (max-width: 991px) {
    .service-info-image {
        height: 220px;
    }
    
    .service-info-overlay i {
        font-size: 4rem;
    }
    
    .service-info-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-info-image {
        height: 200px;
    }
    
    .popular-badge {
        font-size: 0.65rem;
        padding: 6px 35px;
    }
}

/* Benefit Cards */
.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Comparison Table */
.comparison-section {
    box-shadow: var(--shadow);
}

.comparison-section .table {
    margin-bottom: 0;
}

.comparison-section thead th {
    padding: 1.5rem 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.comparison-section tbody td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
}

.comparison-section .table-dark {
    background: var(--dark-color);
}

/* Accordion Styling */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button.collapsed::after {
    filter: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-color);
}

/* Page Header Enhancement */
.page-header {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.page-header-icon {
    font-size: 5rem;
    animation: float 3s ease-in-out infinite;
}

/* CTA Banner Enhancement */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="white" opacity="0.1"/></svg>');
    opacity: 0.4;
}

.cta-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-icon i {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.quick-link-card i:first-child {
    font-size: 1.8rem;
}

.quick-link-card span {
    font-weight: 600;
    font-size: 1rem;
}

.quick-link-card i:last-child {
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.quick-link-card:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Page Styles */
.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.contact-info-modern a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-info-modern a:hover {
    color: var(--primary-dark);
}

.working-hours-box,
.location-box {
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.working-hours-box:hover,
.location-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.map-container-modern {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.map-container-modern:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(-5px);
}

/* Enhanced Buttons */
.btn {
    border-radius: 12px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy.loaded {
    opacity: 1;
}

/* ===========================
   NEW COMPONENTS - Professional Photo-Based Design
   =========================== */

/* Gallery Section */
.workshop-gallery {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 280px;
    border: 4px solid var(--white);
}

.gallery-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Feature Items with Images */
.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-icon-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-item-modern p {
    margin: 0;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Team Cards with Photos */
.team-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-modern:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 30px;
}

.team-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-info .text-primary {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-info p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Workshop Features with Images */
.workshop-feature {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-bottom: 30px;
}

.workshop-feature:hover {
    box-shadow: var(--shadow-lg);
}

.feature-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workshop-feature:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
}

.feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin: 0;
}

/* About Image Section */
.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Page Styles */
.contact-image-section img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.contact-info-box {
    background: white;
    border-left: 4px solid var(--primary-color);
}

.contact-info-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-item h5 {
    font-size: 1rem;
    color: var(--dark-color);
}

.contact-info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    /* Hero Slider Responsive */
    .hero-slider-section .carousel {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-slide h1 {
        font-size: 2rem !important;
    }
    
    .hero-slide .lead {
        font-size: 1.1rem !important;
    }
    
    .hero-slider-section .carousel-control-prev,
    .hero-slider-section .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-slider-section .carousel-control-prev {
        left: 15px;
    }
    
    .hero-slider-section .carousel-control-next {
        right: 15px;
    }
    
    .hero-slider-section .carousel-indicators {
        bottom: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .feature-item-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .team-image {
        height: 250px;
    }
    
    .feature-image {
        height: 200px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .contact-image-section img {
        height: 250px;
    }
}

/* Service Detail Page Styles */
.service-hero-image img {
    transition: transform 0.3s ease;
}

.service-hero-image:hover img {
    transform: scale(1.02);
}

.service-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-category-badge i {
    font-size: 1rem;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature-check-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-left-width: 6px;
}

.feature-check-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-check-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-color);
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    white-space: nowrap;
}

.service-badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.service-badge i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-badge:hover i {
    transform: scale(1.1);
    color: var(--white);
}

.detail-box {
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.detail-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.info-box-modern {
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.info-box-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--primary-color);
}

.info-icon i {
    transition: transform 0.3s ease;
}

.info-box-modern:hover .info-icon i {
    transform: scale(1.1);
}

.process-step {
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}
