/* VN-WEB - Premium Light Theme with Water Effects */
/* ================================================= */

/* CSS Variables for Theming */
:root {
    /* Primary Colors */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;

    /* Accent Colors */
    --accent: #06b6d4;
    --accent-dark: #0891b2;

    /* Background & Surface Colors */
    --background: #f8fafc;
    --surface: #ffffff;
    --surface-hover: #f1f5f9;

    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    /* Border & Shadow */
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Gradients */
    --gradient-water: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    --gradient-water-soft: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Global Flash Messages */
.flash-messages {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    border-radius: 0.625rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.flash-error {
    color: #991b1b;
    background: #fee2e2;
    border-color: #fecaca;
}

.flash-success {
    color: #065f46;
    background: #d1fae5;
    border-color: #6ee7b7;
}

/* Canvas Background for Water Effects */
#water-canvas {
    display: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--surface);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 0;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

header.scrolled {
    box-shadow: var(--shadow);
}

/* ============================================
   NAVIGATION
   ============================================ */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar {
    background: transparent !important;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    transition: all var(--transition-base);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 2rem;
}

.navbar-brand:hover {
    color: var(--accent);
    transform: scale(1.05);
    text-decoration: none;
}

.navbar-brand img {
    height: 60px;
    transition: transform var(--transition-base);
}

.navbar-brand:hover img {
    transform: rotate(10deg) scale(1.1);
}

.navbar-toggler {
    display: none;
    border: 2px solid var(--primary);
    background: transparent;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.navbar-toggler:hover {
    background-color: var(--primary);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.25);
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%230ea5e9' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 100%;
    display: block;
}

.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.nav-item {
    margin: 0;
}

.navbar-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.navbar-nav .nav-link i {
    font-size: 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
    background-color: var(--surface-hover);
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--gradient-water);
    border-radius: 3px;
}

/* Cart Badge */
.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--gradient-water);
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-toggler.active {
        background-color: var(--primary);
    }

    .navbar-toggler.active .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-collapse {
        display: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0.75rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
        animation: slideDown 0.3s ease;
    }

    .navbar-collapse.show {
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }
}

/* Main Content */
main.container {
    padding: 2rem;
    width: min(1200px, calc(100vw - 2rem));
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    main.container {
        width: min(100%, calc(100vw - 1rem));
        max-width: 100%;
        padding: 1rem;
    }
}

/* Glass morphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

/* Floating Cards */
.floating-card {
    background: var(--surface);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
}

.floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-water);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.floating-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.floating-card:hover::before {
    opacity: 1;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-water);
    color: white;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.4);
    color: white;
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Ripple Effect on Click */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.4);
    color: white;
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    display: flex;
    gap: 3rem;
    align-items: center;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.02);
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-water);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-hero {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 0;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--surface);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent);
}

.feature-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-secondary);
}

/* Service List & Items */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.service-item {
    display: flex;
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
    position: relative;
    overflow: visible;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-water);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-item:hover::before {
    opacity: 1;
}

.service-gallery {
    position: relative;
    min-width: 300px;
    margin-right: 2rem;
}

.service-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: transform var(--transition-base);
}

.service-gallery:hover img {
    transform: scale(1.05);
}

.image-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 0.5rem;
}

.image-navigation button {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1.25rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all var(--transition-fast);
}

.image-navigation button:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.service-details {
    flex: 1;
}

.service-details h2,
.service-details h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-details p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1rem 0;
}

.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.category-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--gradient-water-soft);
    color: var(--primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
    }

    .service-gallery {
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .service-gallery img {
        height: 250px;
    }
}

/* Category Filter Buttons */
.category-filters,
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--surface);
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.category-button,
.category-btn {
    padding: 0.75rem 1.5rem;
    background: var(--surface);
    color: var(--text-secondary);
    border: 2px solid var(--border);
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.category-button:hover,
.category-btn:hover {
    background: var(--gradient-water-soft);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.category-button.active,
.category-btn.active {
    background: var(--gradient-water);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.3);
}

.category-button i,
.category-btn i {
    margin-right: 0.5rem;
}

/* Cart Styles */
.cart-card {
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-base);
}

.cart-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.cart-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card {
    background: var(--surface);
    border-radius: 1rem;
    border: none;
    box-shadow: var(--shadow);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-group {
    display: flex;
    align-items: center;
    width: 100%;
}

.quantity-input {
    text-align: center;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.quantity-decrease,
.quantity-increase {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quantity-decrease:hover,
.quantity-increase:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Gallery Styles */
.gallery-grid,
.photo-collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img,
.collage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
}

.gallery-item:hover img,
.collage-image:hover {
    transform: scale(1.1);
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

#lightbox-navigation {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

#lightbox-prev,
#lightbox-next {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

#lightbox-prev:hover,
#lightbox-next:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Forms */
.form-control {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
    background: var(--surface);
    color: var(--text-primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    background: var(--surface);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Tables */
table,
table.table {
    width: 100%;
    background: var(--surface);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-collapse: collapse;
}

thead {
    background: var(--gradient-water);
    color: white;
}

thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border: none;
}

tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background-color var(--transition-fast);
}

tbody tr:hover {
    background-color: var(--surface-hover);
}

tbody td {
    padding: 1rem;
    color: var(--text-secondary);
    border: none;
}

tbody td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

tbody tr:nth-child(even) {
    background-color: var(--surface-hover);
}

.inquiries-table {
    border-radius: 0.75rem;
}

.inquiries-table a:not(.btn) {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.inquiries-table a:not(.btn):hover {
    color: var(--accent);
}

/* Login Form */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: var(--background);
}

.login-form {
    background: var(--surface);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
}

.login-form h1 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background: var(--gradient-water);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(14, 165, 233, 0.4);
}

.alert-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

/* Footer */
/* ================================
   FOOTER - ENHANCED DESIGN
   ================================ */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

/* Water wave effect at top of footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary) 0%,
            var(--accent) 50%,
            var(--primary) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.footer-section h4 {
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--accent);
}

footer a {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

footer a:hover {
    color: var(--accent);
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

footer iframe {
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
    border: none;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--surface-hover) 25%, var(--border) 50%, var(--surface-hover) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 0.5rem;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ============================================
   MODERN PAGE TRANSITIONS & ANIMATIONS
   ============================================ */

/* Main page content container */
.page-content {
    position: relative;
}

/* Fade in animation for page content */
@keyframes pageSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageSlideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-30px);
    }
}

/* Page fade animations */
@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pageFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Apply animations to page content */
.page-content.page-fade-in {
    animation: pageSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.page-content.page-fade-out {
    animation: pageSlideDown 0.3s ease-in forwards;
}

/* ============================================
   BUTTON & FORM MICRO-INTERACTIONS
   ============================================ */

/* Smooth button transitions */
.btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
}

.btn:active {
    transform: translateY(0);
}

/* Ripple effect on buttons */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn:active::before {
    animation: buttonRipple 0.6s ease-out;
}

@keyframes buttonRipple {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

/* Form input animations */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
    transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Smooth card hover effects */
.cart-item,
.service-card,
[class*="card"],
[class*="item"] {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cart-item:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
}

/* Smooth loading state */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* ============================================
   WATER CANVAS BACKGROUND
   ============================================ */

#water-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   FLYING CART ANIMATION
   ============================================ */

.flying-cart-item {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-auto {
    margin-left: auto;
}

.mr-2 {
    margin-right: 0.5rem;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-inline-block {
    display: inline-block;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -0.5rem;
}

.col-md-6 {
    flex: 0 0 50%;
    padding: 0.5rem;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    padding: 0.5rem;
}

@media (max-width: 992px) {
    .col-lg-4 {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {

    .col-md-6,
    .col-lg-4 {
        flex: 0 0 100%;
    }

    .d-md-none {
        display: none;
    }

    .d-md-block {
        display: block;
    }
}

/* ============================================
   WATER CANVAS BACKGROUND
   ============================================ */

#water-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}


/* ============================================
   FLYING CART ANIMATION
   ============================================ */

.flying-cart-item {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

@keyframes cartBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #06b6d4;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
}

.cart-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 9999;
    max-width: 350px;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification-warning {
    border-left: 4px solid #f59e0b;
}

.cart-notification-success {
    border-left: 4px solid #10b981;
}

.cart-notification-info {
    border-left: 4px solid #0ea5e9;
}

/* ============================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ============================================ */

/* Tablet & Below (1024px) */
@media (max-width: 1024px) {

    /* Dashboard grid adjustments */
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Kanban board - 3 columns */
    .kanban-board {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    /* Admin navigation */
    .admin-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .admin-nav a {
        justify-content: center;
        width: 100%;
    }
}

/* Tablet Portrait & Below (768px) */
@media (max-width: 768px) {

    /* Typography scaling */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Container padding */
    .container {
        padding: 1rem;
    }

    /* Dashboard - single column */
    .dashboard-grid {
        grid-template-columns: 1fr !important;
    }

    /* Kanban board - single column (stack) */
    .kanban-board {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .kanban-column {
        min-height: auto;
    }

    /* Category accordion */
    .category-accordion {
        padding: 0.75rem 1rem;
    }

    /* Service cards */
    .service-card {
        margin: 0.75rem 0;
    }

    /* Cart sidebar */
    .cart-sidebar {
        width: 100% !important;
        border-radius: 0;
    }

    .cart-sidebar.open {
        width: 100% !important;
    }

    /* Forms */
    .form-group {
        margin-bottom: 1rem;
    }

    /* Buttons */
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Navigation */
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    /* Hero sections */
    .hero {
        padding: 2rem 1rem;
    }

    /* Gallery grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Table responsive wrapper */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        font-size: 0.875rem;
    }

    table th,
    table td {
        padding: 0.5rem;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    /* Chart containers */
    .chart-container {
        height: 250px !important;
    }

    /* Notification positioning */
    .cart-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    /* Inquiry form */
    .inquiry-form {
        padding: 1.5rem;
    }

    /* Admin header */
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .admin-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {

    /* Typography */
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    /* Container */
    .container {
        padding: 0.75rem;
    }

    /* Gallery - single column */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Service cards - compact */
    .service-card {
        padding: 1rem;
    }

    .service-price {
        font-size: 1.25rem;
    }

    /* Buttons - full width */
    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-group .btn {
        width: 100%;
    }

    /* Kanban cards - compact */
    .kanban-card {
        padding: 0.75rem;
    }

    .kanban-card-header {
        font-size: 0.875rem;
    }

    /* Dashboard stats */
    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    /* Form inputs */
    input,
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    /* Modal - full screen */
    .modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        max-height: none;
    }

    /* Cart items - compact */
    .cart-item {
        padding: 0.75rem;
    }

    .cart-item-info h4 {
        font-size: 0.875rem;
    }

    /* Admin table - card view on mobile */
    .admin-table-mobile {
        display: block;
    }

    .admin-table-mobile tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--border);
        border-radius: 0.5rem;
        padding: 1rem;
    }

    .admin-table-mobile td {
        display: block;
        text-align: left;
        padding: 0.5rem 0;
        border: none;
    }

    .admin-table-mobile td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 0.25rem;
        color: var(--text-secondary);
    }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 1.5rem 1rem;
    }

    .modal-content {
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    /* Sharper borders */
    .card,
    .btn,
    input,
    textarea {
        border-width: 0.5px;
    }
}

/* Print styles */
@media print {

    /* Hide UI elements */
    nav,
    .admin-nav,
    .cart-sidebar,
    .btn,
    .admin-actions,
    .notification {
        display: none !important;
    }

    /* Expand content */
    .container {
        max-width: 100%;
        padding: 0;
    }

    /* Clean backgrounds */
    body,
    .card,
    .surface {
        background: white;
        box-shadow: none;
    }

    /* Black text for readability */
    * {
        color: black !important;
    }

    /* Page breaks */
    .kanban-column,
    .stat-card,
    .service-card {
        page-break-inside: avoid;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    /* Disable water effects */
    #water-canvas,
    .water-effect {
        display: none !important;
    }
}

/* Homepage Hero Buttons */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.btn-hero:first-of-type {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
}

.btn-hero:first-of-type:hover {
    background: linear-gradient(135deg, #0284c7 0%, #0891b2 100%);
}

.btn-hero:last-of-type {
    background: white;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.btn-hero:last-of-type:hover {
    background: #f0f9ff;
}

/* Gallery Styles */
.gallery-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.photo-collage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 16/9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 165, 233, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    \n transition: background 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.lightbox-image.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.lightbox-caption {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.lightbox-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.lightbox-controls button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Cookie Consent Banner */
/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 -8px 32px rgba(14, 165, 233, 0.12), 0 -4px 16px rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    z-index: 9998;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-top: 3px solid #0ea5e9;
    backdrop-filter: blur(10px);
}

#cookie-consent-banner.show {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h4 {
    color: #0ea5e9;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.cookie-consent-text h4 i {
    font-size: 1.5rem;
    animation: cookieBounce 2s infinite;
}

@keyframes cookieBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.cookie-consent-text p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.cookie-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.cookie-link:hover {
    border-bottom-color: #0ea5e9;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cookie-consent-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cookie-consent-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.cookie-consent-buttons .btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.cookie-consent-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.cookie-consent-buttons .btn-primary:active {
    transform: translateY(0);
}

.cookie-consent-buttons .btn-secondary {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookie-consent-buttons .btn-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        padding: 1.5rem 1rem;
    }

    .cookie-consent-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .cookie-consent-buttons .btn {
        flex: 1;
        justify-content: center;
    }
}

/* User Dropdown Menu */
.user-dropdown {
    position: relative;
}

.notification-dropdown {
    position: relative;
}

.notification-toggle {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -0.3rem;
    right: -0.2rem;
    min-width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
    line-height: 1;
}

.notification-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: min(24rem, 90vw);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100;
    border: 1px solid #e2e8f0;
}

.notification-dropdown.active .notification-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-menu__header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 0.9rem;
}

.notification-menu__list {
    max-height: 20rem;
    overflow-y: auto;
}

.notification-item {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: #334155;
}

.notification-item:hover {
    background: #f8fafc;
}

.notification-item__title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #0f172a;
}

.notification-item__message {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 0.25rem;
}

.notification-item__time {
    font-size: 0.75rem;
    color: #94a3b8;
}

.notification-empty {
    margin: 0;
    padding: 1rem;
    color: #64748b;
    font-size: 0.9rem;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.user-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.user-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: #334155;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: #0ea5e9;
}

.dropdown-menu li a i {
    width: 20px;
    text-align: center;
}

.dropdown-menu .divider {
    height: 1px;
    background: #e2e8f0;
    margin: 0.5rem 0;
}

.btn-login {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

@media (max-width: 768px) {
    .dropdown-menu {
        right: -1rem;
    }

    .notification-menu {
        right: -1rem;
    }
}

/* Footer Enhancements */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(14, 165, 233, 0.15);
    border: 2px solid rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    color: var(--primary-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 0.9rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-links a i {
    color: var(--primary-light);
    width: 20px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 0.5rem;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--primary-light);
    width: 20px;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-hours {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(14, 165, 233, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.footer-hours h5 {
    margin-bottom: 0.75rem;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1rem;
}

.footer-hours p {
    margin: 0;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ====================================
   SERVICES PAGE STYLES
   ==================================== */

/* Services Page Specific Styles */
.services-page {
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Accordion Styles */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.accordion-item {
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    transition: background-color var(--transition-fast);
    animation: slideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.accordion-header:hover {
    background-color: var(--surface-hover);
}

.accordion-header[data-index="0"] {
    animation-delay: 0s;
}

.accordion-header[data-index="1"] {
    animation-delay: 0.1s;
}

.accordion-header[data-index="2"] {
    animation-delay: 0.2s;
}

.accordion-header[data-index="3"] {
    animation-delay: 0.3s;
}

.accordion-header[data-index="4"] {
    animation-delay: 0.4s;
}

.accordion-header[data-index="5"] {
    animation-delay: 0.5s;
}

.accordion-header[data-index="6"] {
    animation-delay: 0.6s;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.accordion-title h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.service-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.accordion-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.category-description {
    color: var(--text-secondary);
    margin: 0;
    max-width: 400px;
    font-size: 0.875rem;
}

.accordion-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    border: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.accordion-toggle:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    padding: 0 2rem;
}

.accordion-item.active .accordion-content {
    max-height: 5000px;
    padding: 0 2rem 2rem;
    opacity: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--accent);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

/* Gallery */
.service-gallery {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--surface-hover);
    overflow: hidden;
}

.gallery-main {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-gallery:hover .gallery-nav {
    opacity: 1;
}

.gallery-prev,
.gallery-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--primary);
    color: white;
}

.gallery-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

.indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.no-image i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Service Content */
.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-tasks {
    margin-bottom: 1.5rem;
}

.service-tasks h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-tasks h4 i {
    color: var(--accent);
}

.tasks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tasks-list li {
    padding: 0.375rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.tasks-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.service-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-actions {
    display: flex;
    gap: 0.75rem;
}

.service-actions .btn {
    flex: 1;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .accordion-meta {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .accordion-toggle {
        align-self: flex-end;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* Dark Mode Support (Future) */
@media (prefers-color-scheme: dark) {
    /* Can be expanded when dark mode is implemented */
    /* Currently light theme only */
}
/* Remove all visual effects for the homepage hero image */
.hero-image,
.hero-image img {
    box-shadow: none !important;
    filter: none !important;
    border: none !important;
    outline: none !important;
    border-radius: 0 !important;
    -webkit-box-shadow: none !important;
    -webkit-filter: none !important;
    transform: none !important;
}

/* Global mobile usability overrides */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h1,
    .hero-title,
    .page-title {
        font-size: 1.85rem !important;
        line-height: 1.25;
    }

    h2 {
        font-size: 1.45rem;
    }

    .page-subtitle,
    .hero-subtitle {
        font-size: 1rem;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .navbar-nav .nav-link {
        justify-content: flex-start;
        text-align: left;
    }

    .service-actions,
    .form-actions,
    .cart-actions,
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn,
    button,
    input,
    select,
    textarea {
        min-height: 44px;
    }

    .inquiry-container,
    .form-row,
    .profile-grid,
    .dashboard-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .inquiry-sidebar {
        position: static;
    }

    .table-responsive,
    .admin-table,
    .table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    footer iframe {
        width: 100%;
        min-height: 220px;
    }
}

@media (max-width: 480px) {
    main.container {
        padding: 0.75rem;
    }

    .card,
    .service-card,
    .inquiry-form-section,
    .sidebar-content,
    .accordion-item {
        border-radius: 0.75rem;
    }

    .service-footer,
    .service-content {
        gap: 0.75rem;
    }

    .service-price .price-value {
        font-size: 1.2rem;
    }

    .auth-page-wrapper {
        padding: 1rem 0.5rem;
    }

    .auth-container {
        border-radius: 16px;
    }

    .auth-content,
    .cart-items,
    .sidebar-content,
    .inquiry-form-section {
        padding: 1rem;
    }

    .cart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .progress-steps {
        margin-bottom: 1rem;
    }

    .step-icon {
        width: 34px;
        height: 34px;
    }

    .item-description {
        font-size: 0.82rem;
    }
}