/* BK Limousine Service - Modern CSS Styles */

/* Root Variables */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 40px;
    height: 40px;
}

/* Navigation Styles */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--secondary-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Header Social Links */
.header-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

.header-social-links a {
    color: var(--secondary-color);
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.header-social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    position: relative;
    z-index: 10000;
}

.language-btn {
    background: none;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
    z-index: 10001;
}

.language-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    min-width: 120px;
    margin-top: 10px;
    z-index: 10002;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.language-dropdown a:hover {
    background: var(--background-light);
    color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('uploads/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
    background-color: rgb(248, 249, 250);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #ffffff !important;
    background-color: rgb(255, 255, 255) !important;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: #ffffff !important;
    background-color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.service-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Fleet Section */
.fleet {
    padding: 5rem 0;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    background: #ffffff !important;
    background-color: rgb(255, 255, 255) !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: #ffffff !important;
    background-color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.fleet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fleet-card-content {
    padding: 1.5rem;
    background: #ffffff !important;
    background-color: rgb(255, 255, 255) !important;
    opacity: 1 !important;
}

.fleet-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.fleet-card .capacity {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.fleet-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.book-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
    display: inline-block;
}

.book-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Fleet Pricing Styles */
.fleet-pricing {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 10px;
    border-left: 3px solid var(--secondary-color);
}

.fleet-pricing h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list .route {
    color: var(--text-dark);
    font-size: 0.95rem;
    flex: 1;
}

.pricing-list .price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1rem;
    margin-left: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background: var(--background-light);
    position: relative;
    overflow: hidden;
}

/* Parallax Background Image */
.why-choose::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('uploads/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Make sure content is above background */
.why-choose .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #ffffff !important;
    background-color: rgb(255, 255, 255) !important;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #ffffff !important;
    background-color: rgb(255, 255, 255) !important;
    box-shadow: var(--shadow-hover);
    opacity: 1 !important;
}

.why-choose .section-title {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--secondary-color);
    color: white;
}

.contact-item .icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.contact-item:hover .icon {
    color: white;
}

.contact-form {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group select {
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1em !important;
    padding-right: 3rem !important;
    box-sizing: border-box !important;
}

/* Additional reset for select element */
select#service {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background: white url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat right 1rem center !important;
    background-size: 1em !important;
    padding: 1rem 3rem 1rem 1rem !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    width: 100% !important;
    cursor: pointer !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: var(--text-light);
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Visitor Counter Styles */
.visitor-counter {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 9000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    padding: 0.8rem 1.2rem;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.visitor-counter:hover {
    background: rgba(26, 26, 26, 1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.visitor-counter i {
    font-size: 1.2rem;
}

#visitor-count {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--accent-color);
    min-width: 50px;
    display: inline-block;
    text-align: center;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .visitor-counter {
        position: fixed;
        top: 100px;
        left: 10px;
        right: auto;
        font-size: 0.65rem;
        padding: 0.4rem 0.7rem;
        gap: 0.3rem;
        border-radius: 20px;
        z-index: 9000;
        backdrop-filter: blur(10px);
    }
    
    .visitor-counter span[data-translate="visitor-counter-label"],
    .visitor-counter span[data-translate="visitor-counter-total"] {
        display: none;
    }
    
    .visitor-counter i {
        font-size: 0.9rem;
    }
    
    #visitor-count {
        font-size: 0.85rem;
        min-width: 30px;
        font-weight: 700;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header-social-links {
        display: none; /* Hide social links on mobile to save space */
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul.show {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid,
    .fleet-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 80px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999 !important;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile responsiveness for WhatsApp button */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;
        font-size: 28px !important;
        bottom: 100px !important;
        right: 15px !important;
        display: flex !important;
        position: fixed !important;
        z-index: 999999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        background: #25D366 !important;
        color: white !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.7) !important;
        text-decoration: none !important;
    }
    
    .whatsapp-float i {
        font-size: 28px !important;
        color: white !important;
    }
}

/* Extra mobile fix for smaller screens */
@media screen and (max-width: 480px) {
    .whatsapp-float {
        width: 56px !important;
        height: 56px !important;
        font-size: 28px !important;
        bottom: 100px !important;
        right: 15px !important;
        display: flex !important;
        position: fixed !important;
        z-index: 999999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: #25D366 !important;
    }
}

/* Google reCAPTCHA Badge - Move to bottom left */
.grecaptcha-badge {
    visibility: visible !important;
    opacity: 0.7 !important;
    transition: opacity 0.3s ease;
}

.grecaptcha-badge:hover {
    opacity: 1 !important;
}

/* Add privacy text to contact form */
.recaptcha-terms {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    text-align: center;
    line-height: 1.5;
}

.recaptcha-terms a {
    color: var(--secondary-color);
    text-decoration: none;
}

.recaptcha-terms a:hover {
    text-decoration: underline;
}
/* ============================================
   TESTIMONIALS SECTION - ENHANCED
   ============================================ */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials .section-title {
    color: var(--primary-color);
    margin-bottom: 50px;
}

.testimonials .container {
    max-width: 1400px;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 70px;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    box-sizing: border-box;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
    width: 100%;
    box-sizing: border-box;
}

.testimonial:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid var(--secondary-color);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 15px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.testimonial .author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 16px;
}

.testimonial-date {
    font-size: 13px;
    color: #999;
}

/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

.slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #ccc;
}

.slider-nav:disabled:hover {
    transform: translateY(-50%);
    background: #ccc;
    color: #999;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background: var(--primary-color);
}

.testimonial-add-section {
    text-align: center;
    margin-top: 40px;
}

.testimonial-add-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.testimonial-modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover { color: var(--secondary-color); }

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
}

.star-rating {
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 32px;
    margin: 10px 0;
    cursor: pointer;
}

.star-rating i {
    color: #ddd;
    transition: var(--transition);
}

.star-rating i.active { color: #FFD700; }
.star-rating i:hover {
    color: #FFD700;
    transform: scale(1.2);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .testimonial-slider-wrapper {
        padding: 0 50px;
        margin: 20px auto 0;
    }
    
    .testimonial-slider-track {
        gap: 0;
    }
    
    .testimonial-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
    
    .testimonial {
        padding: 25px;
        min-height: 220px;
    }
    
    .testimonial p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .testimonial-rating {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .slider-dots {
        margin-top: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .star-rating {
        font-size: 24px;
        gap: 5px;
    }
}

/* Tablet - 2 slides */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-slider-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-slider-track {
        gap: 20px;
    }
    
    .testimonial-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .testimonial {
        padding: 28px;
        min-height: 260px;
    }
}
