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

:root {
    --primary-color: #ffffff;
    --secondary-color: #f8fafb;
    --accent-color: #2563eb;
    --text-light: #6b7280;
    --text-dark: #1f2937;
    --blue-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --subtle-blue: #eff6ff;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--primary-color);
}

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

/* Navigation */
.navbar {
    position: static;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 2px solid #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    justify-content: space-evenly;
    flex: 1;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    flex: 1;
    text-align: center;
    max-width: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 0.5rem;
    display: block;
    white-space: nowrap;
    border-radius: 8px;
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    background: rgba(37, 99, 235, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--primary-color);
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--subtle-blue) 0%, var(--primary-color) 100%);
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    color: var(--text-dark);
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    letter-spacing: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
}

/* Hero button styles */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-button.primary {
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-button.primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: black;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* About Section */
.about {
    padding: 3rem 0;
    background: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.feature-card h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-4px);
}

.service-image {
    height: 200px;
    background: var(--blue-gradient);
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--text-dark);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
    letter-spacing: -1px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.submit-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    background: #1d4ed8;
}

/* Confirmation Modal */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.confirmation-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.confirmation-content h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.5px;
}

.confirmation-details {
    margin-bottom: 1.5rem;
}

.confirmation-details p {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.confirmation-details strong {
    color: var(--accent-color);
    font-weight: 600;
}

.confirmation-note {
    background: var(--subtle-blue);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

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

.footer p {
    opacity: 0.7;
}

/* Before & After Section */
.before-after {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f1f5f9 100%);
    overflow: hidden;
    position: relative;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e2e8f0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e2e8f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.before-after-grid {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    width: max-content;
    position: relative;
}

.before-after-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    min-width: 420px;
    flex-shrink: 0;
    position: relative;
    backdrop-filter: blur(10px);
}

.before-after-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.before-after-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.before-after-item:nth-child(2) {
    animation-delay: 0.1s;
}

.before-after-item:nth-child(3) {
    animation-delay: 0.2s;
}

.before-after-item:nth-child(4) {
    animation-delay: 0.3s;
}

.image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafb 0%, #e2e8f0 100%);
    border-radius: 16px 16px 0 0;
}

.before-image,
.after-image {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s ease;
}

.before-image {
    left: 0;
    border-right: 3px solid rgba(37, 99, 235, 0.2);
}

.after-image {
    right: 0;
}

.before-image::before,
.after-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.before-image::after {
    content: 'BEFORE';
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.after-image::after {
    content: 'AFTER';
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.05);
}

.before-after-item:hover .before-image img,
.before-after-item:hover .after-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

.before-after-item:hover .before-image::before,
.before-after-item:hover .after-image::before {
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.before-placeholder {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.after-placeholder {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.before-placeholder::before,
.after-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 2s infinite;
}

.before-after-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.before-after-item h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #3b82f6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.before-after-item:hover h3::after {
    width: 50px;
}

.before-after-item p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Price List Image Styling */
.price-list-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.price-list-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.price-list-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile Price List Image */
@media (max-width: 768px) {
    .price-list-image {
        border-radius: 12px;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .price-list-image {
        border-radius: 8px;
        max-width: 100%;
    }
}

/* Services Gallery Section */
.services-gallery {
    padding: 8rem 0;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafb 0%, #e2e8f0 100%);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-image-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
    background: linear-gradient(135deg, #f8fafb 0%, #e2e8f0 100%);
}

.service-image-placeholder p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-item h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.25rem;
    margin: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.service-item p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Admin Panel Section */
.admin-section {
    padding: 8rem 0;
    background: var(--secondary-color);
}

.admin-tabs {
    margin-top: 4rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

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

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

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

/* Upload Section */
.upload-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.upload-area {
    background: white;
    border: 3px dashed var(--accent-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--accent-color);
    background: var(--subtle-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.upload-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.upload-area h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.upload-area p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.upload-area small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.upload-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

#imageUpload {
    display: none;
}

/* Upload Options */
.upload-options {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

/* Admin Images Grid */
.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.image-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-card-content {
    padding: 1.5rem;
}

.image-card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.image-card-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.image-card-content small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.image-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.edit-btn {
    background: var(--accent-color);
    color: white;
}

.edit-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.delete-btn {
    background: #ef4444;
    color: white;
}

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

.view-btn {
    background: #10b981;
    color: white;
}

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

/* Price Editor */
.price-editor {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.price-item-editor {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.price-item-editor:hover {
    border-color: var(--accent-color);
}

.price-item-editor h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-inputs input {
    width: 120px;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-color);
}

.save-prices-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.save-prices-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Settings Form */
.settings-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.save-settings-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.save-settings-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Upload Progress */
.upload-progress {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 10000;
    min-width: 300px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--accent-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* Image View Modal */
.image-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.image-view-content {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ef4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1;
}

.image-view-content img {
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
}

.image-info {
    padding: 2rem;
}

.image-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.image-info p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.image-info strong {
    color: var(--text-dark);
}



/* Admin Link Styling */
.admin-link {
    background: var(--accent-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Live Status */
.live-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 20px;
    color: #059669;
    font-weight: 500;
}

.status-indicator {
    font-size: 1.2rem;
}

    /* Booking Section */
.booking {
    padding: 3rem 0;
    background: var(--primary-color);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

/* Price List Section */
.price-list {
    background: var(--bg-light);
    padding: 2rem 2rem;
    text-align: center;
}

.price-list h3 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.price-list-image {
    margin-bottom: 2rem;
    text-align: center;
}

.price-list-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-list-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.price-list-image p {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.price-list-placeholder {
    background: var(--bg-white);
    border: 3px dashed var(--accent-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    color: var(--text-light);
}

.price-list-placeholder p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.price-list-placeholder small {
    color: var(--text-light);
    font-size: 1rem;
}

.price-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f8fafb 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 2px dashed #cbd5e1;
    color: var(--text-light);
    font-weight: 500;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--subtle-blue);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-name {
    font-weight: 500;
    color: var(--text-dark);
}

.price {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    background: white;
}

.radio-item:hover {
    border-color: var(--accent-color);
    background: var(--subtle-blue);
}

.radio-item input[type="radio"]:checked + .radiomark + span {
    font-weight: 600;
    color: var(--accent-color);
}

.radio-item input[type="radio"]:checked {
    border-color: var(--accent-color);
}

.radio-item:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    background: var(--subtle-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.radiomark {
    width: 20px;
    height: 20px;
}

/* Radio button styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    background: white;
}

.radio-item:hover {
    border-color: var(--accent-color);
    background: var(--subtle-blue);
}

.radio-item input[type="radio"]:checked + .radiomark + span {
    font-weight: 600;
    color: var(--accent-color);
}

.radio-item input[type="radio"]:checked {
    border-color: var(--accent-color);
}

.radio-item:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    background: var(--subtle-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.radiomark {
    width: 20px;
    height: 20px;
}

/* Payment methods styles */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    background: white;
}

.payment-method:hover {
    border-color: var(--accent-color);
    background: var(--subtle-blue);
}

.payment-method:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    background: var(--subtle-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.payment-method:has(input[type="radio"]:disabled) {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f9f9f9;
}

.payment-method:has(input[type="radio"]:disabled):hover {
    border-color: #e5e7eb;
    background: #f9f9f9;
    transform: none;
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

.payment-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.payment-details {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.apple-pay-button, .google-pay-button {
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apple-pay-button {
    background: #000;
    color: white;
}

.apple-pay-button:hover {
    background: #333;
}

.google-pay-button {
    background: #4285f4;
    color: white;
}

.google-pay-button:hover {
    background: #3367d6;
}

/* Map placeholder styles */
.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #d1d5db;
    margin-top: 1rem;
}

.map-placeholder i {
    font-size: 3rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

/* Custom option toggle styles */
#customDeliveryText {
    margin-top: 1rem;
}

.delivery-options input[type="radio"] {
    margin-right: 0.5rem;
}

.delivery-options .form-group {
    margin-bottom: 1rem;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

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

.map-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #f8fafb 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e1;
    color: var(--text-light);
    font-weight: 500;
}

.submit-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    background: #1d4ed8;
}

/* Slider Animation - Seamless infinite loop */
@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Ensure continuous loop for before/after gallery */
.before-after-grid {
    animation: slideLeft 60s linear infinite;
    animation-fill-mode: none;
    will-change: transform;
    animation-play-state: running;
    animation-iteration-count: infinite;
}

.before-after-grid:hover {
    animation-play-state: paused;
}

/* Enhanced Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

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

/* Floating Animation for Before/After Items - Faster Slider-like Movement */
.before-after-item {
    animation: float 3s ease-in-out infinite;
}

.before-after-item:nth-child(1) {
    animation-delay: 0s;
}

.before-after-item:nth-child(2) {
    animation-delay: 0.75s;
}

.before-after-item:nth-child(3) {
    animation-delay: 1.5s;
}

.before-after-item:nth-child(4) {
    animation-delay: 2.25s;
}

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

/* Responsive Design Updates */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        flex: none;
        margin: 10px 0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .before-after-grid {
        animation: slideLeft 45s linear infinite;
        gap: 1.5rem;
    }
    
    .before-after-item {
        min-width: 320px;
    }
    
    .image-container {
        height: 280px;
    }
    
    .before-image,
    .after-image {
        width: 50%;
    }
    
    .image-placeholder {
        font-size: 1.2rem;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-list {
        position: static;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        margin: 0 1rem;
    }
    
    .upload-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-menu {
        top: 80px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .before-after {
        padding: 4rem 0;
    }
    
    .before-after-item {
        min-width: 300px;
    }
    
    .image-container {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 55px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .before-after-item {
        min-width: 280px;
    }
    
    .before-after-item h3 {
        margin: 1rem 1rem 0.5rem;
        font-size: 1.1rem;
    }
    
    .before-after-item h3::after {
        width: 20px;
    }
    
    .before-after-item:hover h3::after {
        width: 30px;
    }
    
    .before-after-item p {
        margin: 0 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .before-image::after,
    .after-image::after {
        font-size: 0.7rem;
        padding: 3px 6px;
        top: 8px;
    }
    
    .before-image::after {
        left: 8px;
    }
    
    .after-image::after {
        right: 8px;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .price-list {
        padding: 1.5rem;
    }
}

/* Customer Shoe Upload Section */
.shoe-upload {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 40px 0;
    position: relative;
}

.upload-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.upload-area {
    background: var(--secondary-color);
    border: 2px dashed var(--accent-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover,
.upload-area.dragover {
    background: var(--subtle-blue);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.upload-content {
    position: relative;
}

.upload-icon {
    font-size: 4em;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.upload-area h3 {
    margin: 0 0 15px 0;
    font-size: 1.5em;
    font-weight: 600;
    color: var(--text-dark);
}

.upload-area p {
    margin: 0 0 20px 0;
    color: var(--text-light);
    font-size: 1.1em;
}

.upload-specs {
    margin: 20px 0;
    color: var(--text-light);
}

.upload-specs small {
    display: inline-block;
    margin: 2px 0;
    font-size: 0.9em;
}

.upload-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    background: #1d4ed8;
}

.upload-form {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e5e7eb;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--text-dark);
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.submit-quote-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-color), #1e40af);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.submit-quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.submit-quote-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 5px 0 0 0;
    font-style: italic;
}

/* Confirmation Modal */
.quote-confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.confirmation-dialog {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

.confirmation-dialog h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.quote-summary {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: left;
}

.quote-summary h4 {
    margin: 0 0 15px 0;
    color: var(--text-dark);
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
}

.summary-item strong {
    color: var(--text-dark);
}

.confirmation-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.confirm-btn, .cancel-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: var(--success-color);
    color: white;
}

.confirm-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.cancel-btn {
    background: #6b7280;
    color: white;
}

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

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

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

.upload-progress {
    margin: 30px 0;
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.progress-bar {
    background: #e5e7eb;
    border-radius: 25px;
    height: 30px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    background: var(--accent-color);
    height: 100%;
    border-radius: 25px;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9em;
}

#customerProgressText {
    text-align: center;
    margin: 0;
    font-weight: 500;
    color: var(--text-dark);
}

.uploaded-photos {
    margin-top: 40px;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    display: none;
}

.uploaded-photos.has-photos {
    display: block;
}

.uploaded-photos h3 {
    margin: 0 0 25px 0;
    text-align: center;
    font-size: 1.5em;
    color: var(--text-dark);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.upload-status {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: white;
    z-index: 2;
}

.upload-status.uploading {
    background: #f59e0b;
    animation: pulse 2s infinite;
}

.upload-status.ready {
    background: #3b82f6;
}

.upload-status.uploaded {
    background: #10b981;
}

.upload-status.failed {
    background: #ef4444;
}

.remove-image-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    font-size: 12px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.photo-item:hover .remove-image-btn {
    display: flex;
}

.remove-image-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

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

.photo-info {
    padding: 15px;
    text-align: center;
}

.photo-info h4 {
    margin: 0 0 8px 0;
    color: var(--text-dark);
    font-size: 1.1em;
}

.photo-info p {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-light);
}

.upload-status-text {
    margin-top: 5px;
    font-size: 0.8em;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
}

.upload-status-text:contains('Uploading') {
    background: #fef3c7;
    color: #d97706;
}

.upload-status-text:contains('successfully') {
    background: #d1fae5;
    color: #059669;
}

.upload-status-text:contains('failed') {
    background: #fee2e2;
    color: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    .upload-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .upload-area,
    .upload-form {
        padding: 25px;
    }
    
    .upload-icon {
        font-size: 3em;
    }
    
    .photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

/* Animation for photo upload success */
@keyframes photoUploadSuccess {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.photo-item.new-upload {
    animation: photoUploadSuccess 0.5s ease-out;
}

/* Success message styling */
.upload-success {
    background: var(--success-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.upload-success::before {
    content: "✅ ";
    font-size: 1.2em;
    margin-right: 10px;
}

/* Error message styling */
.upload-error {
    background: var(--error-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.upload-error::before {
    content: "❌ ";
    font-size: 1.2em;
    margin-right: 10px;
}

/* Stripe Elements styling */
.card-element {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px;
    background: white;
    min-height: 40px;
    transition: border-color 0.3s ease;
}

.card-element:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.card-errors {
    color: #dc3545;
    font-size: 14px;
    margin-top: 8px;
    min-height: 20px;
}

#totalPrice {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 18px;
}

/* Payment icons as images */
.payment-icon-img {
    width: 36px;
    height: auto;
    display: inline-block;
}

/* Fix mobile nav visibility and scrolling */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        z-index: 1001;
    }
}

/* Payment option layout tweaks */
.payment-methods .payment-method {
    gap: 12px;
}