* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff8c00 100%);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 50%, #ff8c00 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

.loader-content {
    text-align: center;
    color: white;
}

.car-wash-animation {
    position: relative;
    width: 100px;
    height: 60px;
    margin: 0 auto 30px;
}

.car {
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    border-radius: 20px;
    position: relative;
    animation: carMove 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.car::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 50%;
    bottom: -5px;
    left: 10px;
    animation: wheelSpin 0.5s linear infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.car::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 50%;
    bottom: -5px;
    right: 10px;
    animation: wheelSpin 0.5s linear infinite;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.water-drops {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
}

.water-drops::before,
.water-drops::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 15px;
    background: #00bcd4;
    border-radius: 50%;
    animation: waterDrop 1s ease-in-out infinite;
}

.water-drops::before {
    left: 20px;
    animation-delay: 0.2s;
}

.water-drops::after {
    right: 20px;
    animation-delay: 0.4s;
}

@keyframes carMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

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

@keyframes waterDrop {
    0% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateY(10px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%),
        linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(15px) saturate(1.5);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.logo-text {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00bcd4;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.login-link {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    padding: 8px 16px;
    border-radius: 20px;
    color: white !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 179, 71, 0.8) 50%, rgba(255, 140, 0, 0.9) 100%);
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 179, 71, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 140, 0, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="gold" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,215,0,0.2)"/><stop offset="100%" stop-color="rgba(255,215,0,0)"/></radialGradient></defs><circle cx="20" cy="20" r="8" fill="url(%23gold)"><animate attributeName="cx" values="20;80;20" dur="15s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="12" fill="url(%23gold)"><animate attributeName="cy" values="80;20;80" dur="12s" repeatCount="indefinite"/></circle><circle cx="50" cy="50" r="6" fill="url(%23gold)"><animate attributeName="r" values="6;15;6" dur="8s" repeatCount="indefinite"/></circle></svg>');
    animation: float 25s ease-in-out infinite reverse;
}

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

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 1;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #333;
    border: none;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 1;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4e, #ffc947);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bubble {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: bubble 15s infinite linear;
}

.bubble:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 50%;
    animation-delay: 5s;
    width: 80px;
    height: 80px;
}

.bubble:nth-child(3) {
    left: 80%;
    animation-delay: 10s;
    width: 40px;
    height: 40px;
}

@keyframes bubble {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #b8860b, #daa520, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

/* Services */
.services {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 230, 0.9) 50%, rgba(255, 255, 255, 0.95) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 179, 71, 0.08) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
}

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

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 215, 0, 0.1);
}



.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.service-card.premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #00bcd4;
}

.service-card.premium .service-icon {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.service-card.premium .price {
    color: white;
}

.duration {
    font-size: 0.9rem;
    opacity: 0.7;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff6b6b;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

/* Booking */
.booking {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffb347 30%, #ff8c00 60%, #ff7f50 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}





.booking .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

@media (max-width: 768px) {
    .booking .section-title {
        font-size: 2rem;
        word-wrap: break-word;
        white-space: normal;
    }
}

.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #ffd700, #ffb347);
    color: #333;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffed4e, #ffc947);
}

/* Contact */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #f8f9fa 50%, #fff5e6 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 179, 71, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 2rem;
    color: #00bcd4;
    margin-right: 20px;
    width: 50px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.map-placeholder {
    background: #ddd;
    height: 300px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #333 50%, #2a2a2a 100%),
        radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    text-align: right;
}

.developer-credit {
    font-size: 0.85rem;
    margin-top: 5px;
    opacity: 0.8;
}

.developer-credit a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: #ffed4e;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00bcd4;
}

.footer-logo i {
    margin-right: 10px;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 245, 230, 0.9) 50%, rgba(248, 249, 250, 0.95) 100%),
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 215, 0, 0.02) 50px, rgba(255, 215, 0, 0.02) 100px);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    animation: float 12s ease-in-out infinite;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00bcd4, #0097a7);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

.review-rating {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

.review-form-section {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-form-section h3 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-input {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    display: inline-block;
}

.star:hover,
.star.active {
    color: #ffc107;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.rating-input {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 15px 0;
}

#userRatingInput .star {
    font-size: 2.5rem;
}

#userRatingInput .star:hover {
    animation: starPulse 0.3s ease;
}

@keyframes starPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.2); }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal .modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    margin: auto;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #333;
}

.modal form {
    padding: 30px;
}

.modal .form-group {
    margin-bottom: 20px;
}

.modal .form-group:last-of-type {
    margin-bottom: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cancel-btn {
    padding: 12px 25px;
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.save-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #00bcd4, #0097a7);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cancel-btn:hover,
.save-btn:hover {
    transform: translateY(-2px);
}

.profile-content {
    padding: 30px;
}

.profile-info h4 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.user-booking {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #00bcd4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-top: 5px;
    display: inline-block;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d1ecf1;
    color: #0c5460;
}

.status-in_progress {
    background: #cce5ff;
    color: #004085;
}

.status-completed,
.status-done {
    background: #d4edda;
    color: #155724;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    margin-bottom: 10px;
}

.booking-info {
    flex: 1;
}

.cancel-booking-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.cancel-booking-btn:hover {
    background: #c82333;
    transform: translateY(-1px);
}

.logout-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logout-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.auth-required {
    text-align: center;
    color: #666;
    font-style: italic;
}

.auth-required a {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
}

.auth-required a:hover {
    text-decoration: underline;
}

.register-link {
    background: none;
    border: none;
    color: #00bcd4;
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.register-link:hover {
    color: #0097a7;
}

.verification-info {
    text-align: center;
    margin-bottom: 30px;
}

.verification-info p {
    color: #666;
    margin-top: 10px;
}

.profile-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: #00bcd4;
    border-bottom: 2px solid #00bcd4;
}

.tab-btn:hover {
    background: #f8f9fa;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.add-review-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.add-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

.user-review-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #00bcd4;
}

.review-booking-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.review-rating {
    color: #ffc107;
    margin-bottom: 10px;
}

.review-status {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.review-status.pending {
    background: #fff3cd;
    color: #856404;
}

.review-status.approved {
    background: #d4edda;
    color: #155724;
}

.auth-links {
    text-align: center;
    margin-bottom: 15px;
}

.forgot-link {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.forgot-link:hover {
    color: #00bcd4;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00bcd4;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #00bcd4;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

/* Custom date input styles */
input[type="date"] {
    position: relative;
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="date"]:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
    transform: translateY(-2px);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%2300bcd4"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></svg>') no-repeat;
    background-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Better form field visibility */
.form-group input,
.form-group select,
.form-group textarea {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    display: block;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.success-modal.show .modal-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.modal-content p {
    margin-bottom: 30px;
    color: #666;
}

.modal-button {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Оптимізація анімацій */
.service-card,
.review-card,
.cta-button,
.submit-button {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.animated-bg,
.services::before,
.booking::after {
    will-change: transform;
    transform: translateZ(0);
}

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

/* Car Type Tabs */
.car-type-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.car-tab {
    background: white;
    border: 2px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #666;
    font-size: 0.9rem;
}

.car-tab.active {
    background: linear-gradient(45deg, #00bcd4, #0097a7);
    color: white;
    border-color: #00bcd4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.car-tab:hover {
    border-color: #00bcd4;
    color: #00bcd4;
    transform: translateY(-1px);
}

/* Reminder Options */
.reminder-options {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reminder-options h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
    text-align: center;
}

.reminder-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    color: #ffd700;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffd700;
    border-color: #ffd700;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: bold;
    font-size: 12px;
}

/* Telegram Integration Styles */
.telegram-info {
    background: linear-gradient(45deg, #0088cc, #0066aa);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.telegram-info i {
    margin-right: 8px;
}

.telegram-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
}

.telegram-link:hover {
    text-decoration: underline;
}

/* Submit Button Animation */
.submit-button {
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: scale(0.98);
}

/* Mobile Optimizations for Cards */
@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .car-type-tabs {
        gap: 8px;
    }
    
    .car-tab {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .reminder-checkboxes {
        gap: 10px;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-text {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-input {
        justify-content: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.location-tabs {
    display: flex;
    background: #f5f5f5;
    border-radius: 10px 10px 0 0;
    margin-bottom: 0;
}

.location-tab {
    flex: 1;
    padding: 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #333;
}

.location-tab.active {
    background: #00bcd4;
    color: white;
}

.location-map {
    display: none;
}

.location-map.active {
    display: block;
}