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

:root {
    /* Color Tokens - Light Theme Default */
    --primary-color: #0066FF;
    --primary-rgb: 0, 102, 255;
    --primary-gradient: linear-gradient(135deg, #0066FF 0%, #0047AB 100%);
    --secondary-gradient: linear-gradient(135deg, #00A3FF 0%, #0066FF 100%);
    --accent-gradient: linear-gradient(135deg, #4D9EFF 0%, #0080FF 100%);

    /* Backgrounds */
    --bg-primary: #e1e6ee;
    --card-bg: rgba(255, 255, 255, 0.95);
    --card-border: rgba(0, 102, 255, 0.15);

    /* Text */
    --text-primary: #1a1a1a;
    --text-secondary: rgba(0, 0, 0, 0.65);
    --whatsapp-green: #25d366;
    --whatsapp-dark: #128c7e;

    /* Spacing */
    --section-padding: 100px 20px;
    --card-padding: 30px;
    --border-radius: 10px;

    /* Shadows */
    --card-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
    --glow-shadow: 0 0 30px rgba(0, 102, 255, 0.2);
}

/* Dark Theme Overrides */
body.dark-theme {
    --bg-primary: #0a0e1a;
    --card-bg: rgba(0, 102, 255, 0.08);
    --card-border: rgba(0, 102, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --card-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
    --glow-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
}

body {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Ensure header centers */
.contact-header .container,
.header .container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    /* Light theme default */
    mix-blend-mode: multiply;
    animation: float 20s ease-in-out infinite;
    transition: opacity 0.5s ease;
}

body.dark-theme .gradient-orb {
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #c4b5fd 0%, #818cf8 100%);
    bottom: -200px;
    right: -200px;
    animation-delay: 7s;
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
    /* display: none; */
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(100px, -100px) scale(1.1);
    }

    50% {
        transform: translate(-50px, 100px) scale(0.9);
    }

    75% {
        transform: translate(-100px, -50px) scale(1.05);
    }
}

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

.header {
    h3 {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
}

/* Hero Section */
.hero {
    padding: 0;
    padding-top: 5px;
    align-items: center;
    justify-content: center;

    /* Account for fixed header if needed */
    position: relative;
    overflow-x: hidden;

    h1 {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    animation: fadeInUp 1s ease-out;
    padding: 20px;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-text {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 102, 255, 0.15));
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 6vw, 5rem) !important;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-primary);
}

.hero-tagline {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
    font-weight: 400;
}

.btn-outline {
    background: transparent;
    border: 1px solid gray !important;
    color: var(--text-primary);
    box-shadow: none;

}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    /* Invert colors on hover */
    transform: translateY(-3px);
}

/* Dark theme specific for outline button */
body.dark-theme .btn-outline {
    border-color: white;
    color: white;
}

body.dark-theme .btn-outline:hover {
    background: white;
    color: #0a0e1a;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    /* Align left */
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    /* Align left */
    flex-wrap: wrap;
}

/* Gradient Text Wrapper */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive for Hero */
@media (max-width: 992px) {
    .hero {
        padding-top: 20px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 10rem) !important;

    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-image img {
        max-width: 90%;
        /* Larger on mobile */
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;


    @media (max-width: 768px) {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(25, 236, 103, 0.2);
}

.btn-whatsapp-large {
    padding: 20px 48px;
    background: var(--whatsapp-green);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.btn-whatsapp-large:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}



.badge {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out;
}

/* Section Styling */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-top: 5vh;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
    background: rgba(255, 255, 255, 0.044);
    padding: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 25px;
    margin-top: 50px;
}


.service-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeIn 0.6s ease-out;
    overflow: hidden;
    padding-bottom: 5px;
    position: relative;
}


/* Service Card Redesign */
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: start !important;
    height: 100%;
    position: relative;

    p {
        padding: 0;
        margin: 0;
    }
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.card-image-container {
    width: 100%;
    height: 180px;
    position: relative;
    background: #f0f4f8;
    /* Light placeholder bg */
}

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

/* Badge */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e9505062;
    border: 1px solid #e95050;
    color: #ffffff;
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    line-height: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-grow: 1;
    gap: 5px;

    p {
        align-self: start;
    }
}

.card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #10b981;
    /* Green accent */
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 0.5;
}

.service-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: auto;
    margin: 0;
    padding: 0;
    text-align: start;
    overflow: hidden;
}

/* Pricing Box */
.pricing-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
    border: 1px solid var(--card-border);
    align-self: center;
    width: 100%;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.official-price {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    margin-bottom: 2px;
    align-self: start;
}

.our-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.our-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.discount-pill {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(16, 185, 129, 0.3);
    white-space: nowrap;
}

/* Place Order Button */
.place-order-btn {
    background: #10b981;
    /* Green button */
    color: #fff;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.place-order-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.place-order-btn svg {
    width: 20px;
    height: 20px;
}

/* Clean up old styles */
/*
.custom-card-styles-removed {
    display: none;
}
*/

/* Mobile Header & Navigation */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    margin-right: -8px;
}

@media (max-width: 768px) {
    .header .header-content {
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1003;
        /* Ensure button is above menu */
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        /* Changed from right: -100% to basic positioning */
        width: 100%;
        height: 100vh;
        max-width: none;
        /* Remove max-width constraint */
        background: rgba(var(--primary-rgb), 0.95);
        /* More solid background */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        /* Center vertically */
        align-items: center;
        /* Center horizontally */
        transform: translateX(100%);
        /* Start off-screen right */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        gap: 30px;
        padding: 40px;
    }

    /* Dark theme adjustment for nav background */
    body.dark-theme .nav {
        background: rgba(10, 14, 39, 0.98);
    }

    body.light-theme .nav {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav.active {
        transform: translateX(0);
        /* Slide in to view */
        right: 0;
        /* meaningful only if we kept right positioning, but transform overrides */
    }

    .nav-link {
        font-size: 1.5rem;
        /* Larger text for mobile */
        width: auto;
        text-align: center;
        margin: 10px 0;
    }
}



.service-card:hover .service-icon {
    animation: spin 0.6s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

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

.duration {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: small;
    border: 0px;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    text-align: center;
    margin-top: 20px;

    .cta-content {
        background-color: transparent !important;
        box-shadow: none !important;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
    }
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.049);
    border-top: 1px solid var(--card-border);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
        --card-padding: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: white;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    margin: 40px auto;
    width: 100%;
    justify-content: center;
}

.category-banner {
    width: 100%;
    max-width: 200px;
    /* Constrain max width */
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
    object-fit: cover;
    margin: 0 auto;
    /* Center in grid cell if smaller */
}

.category-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2 0%, #667eea 100%);
}

/* Login Modal Styles */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.login-container {
    width: 100%;
    max-width: 450px;
    padding: 20px;
}

.login-form {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    animation: fadeInUp 0.5s ease-out;
}

.login-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
    display: none;
    animation: shake 0.3s ease-in-out;
}

.btn-login {
    width: 100%;
    padding: 15px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-login:hover::before {
    transform: translateX(100%);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.login-hint {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Logout Button */
.logout-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

.logout-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.logout-btn svg {
    width: 18px;
    height: 18px;
}

/* Hidden utility class */
.hidden {
    display: none !important;
}

/* Shake animation for errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

/* Responsive styles for login */
@media (max-width: 480px) {
    .login-form {
        padding: 30px 20px;
    }

    .login-title {
        font-size: 1.6rem;
    }

    .logout-btn {
        top: 10px;
        right: 10px;
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Modal Overlays for Delete/Edit */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease-out;
}

.modal-container {
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.modal-content {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    animation: fadeInUp 0.3s ease-out;
    text-align: center;
}

/* Delete Modal Specific */
.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.delete-icon {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-message {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.service-info strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 5px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn-cancel,
.btn-delete,
.btn-save {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-delete {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.btn-delete:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.btn-save {
    background: var(--primary-gradient);
    color: white;
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Edit Modal Specific */
.edit-modal-content {
    text-align: left;
    max-width: 600px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-border);
}

.modal-header .modal-title {
    margin-bottom: 0;
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select:focus {
    border-color: rgba(102, 126, 234, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group select:hover {
    border-color: rgba(102, 126, 234, 0.3);
    background-color: rgba(255, 255, 255, 0.07);
}

.form-group select option {
    background: #1a1f3a;
    color: var(--text-primary);
    padding: 10px;
}


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

/* Responsive Modal Styles */
@media (max-width: 600px) {
    .modal-container {
        max-width: calc(100% - 40px);
    }

    .modal-content {
        padding: 30px 20px;
    }

    .edit-modal-content {
        padding: 25px 20px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-cancel,
    .btn-delete,
    .btn-save {
        width: 100%;
    }

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

    .modal-icon {
        width: 60px;
        height: 60px;
    }

    .modal-icon svg {
        width: 40px;
        height: 45px;
    }
}

/* ===================================
   RICH TEXT EDITOR
   =================================== */

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid var(--card-border);
    border-bottom: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    max-width: 1200px;
    flex-wrap: wrap;
}

.editor-btn {
    padding: 6px 8px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.editor-btn:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.2);
}

.editor-btn.active {
    background: rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.editor-btn svg {
    color: var(--text-primary);
}

.toolbar-separator {
    width: 1px;
    height: 20px;
    background: var(--card-border);
    margin: 0 4px;
}

.rich-text-editor {
    min-height: 200px;
    max-height: 400px;
    max-width: 1200px;
    overflow-y: auto;
    padding: 12px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    color: var(--text-primary);
    line-height: 1.6;
    outline: none;
}

.rich-text-editor:focus {
    border-color: rgba(0, 102, 255, 0.5);
}

/* Mobile responsive adjustments for editor */
@media (max-width: 768px) {
    .editor-toolbar {
        padding: 6px;
        gap: 2px;
    }

    .editor-btn {
        padding: 5px 6px;
    }

    .rich-text-editor {
        min-height: 150px;
        max-height: 300px;
        padding: 10px;
        font-size: 14px;
    }
}

.rich-text-editor p {
    margin-bottom: 12px;
}

.rich-text-editor p:last-child {
    margin-bottom: 0;
}

.rich-text-editor ul,
.rich-text-editor ol {
    margin: 12px 0;
    padding-left: 24px;
}

.rich-text-editor li {
    margin-bottom: 6px;
}

.rich-text-editor b,
.rich-text-editor strong {
    font-weight: 700;
}

.rich-text-editor i,
.rich-text-editor em {
    font-style: italic;
}

.rich-text-editor u {
    text-decoration: underline;
}

/* Rich text content display on service details page */
.description-card p b,
.description-card p strong {
    font-weight: 700;
    color: var(--text-primary);
}

.description-card p i,
.description-card p em {
    font-style: italic;
}

.description-card p u {
    text-decoration: underline;
}

.description-card ul,
.description-card ol {
    margin: 16px 0;
    padding-left: 24px;
}

.description-card ul:last-child,
.description-card ol:last-child {
    margin-bottom: 0;
}

.description-card li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.description-card li:last-child {
    margin-bottom: 0;
}

.description-card ul {
    list-style-type: disc;
}

.description-card ol {
    list-style-type: decimal;
}

/* Privacy Policy Page Styles */
.policy-container {
    padding: var(--section-padding);
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
}

.back-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.back-link svg {
    transition: transform 0.3s ease;
}

.back-link:hover svg {
    transform: translateX(-3px);
}

.policy-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-date {
    color: var(--text-secondary);
    font-size: 1rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--card-shadow);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.policy-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.policy-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(102, 126, 234, 0.7);
    font-weight: bold;
}

.policy-section ul li strong {
    color: var(--text-primary);
}

.contact-box {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px;

    .submit-btn {
        font-size: 1rem;
        align-self: center;
    }

    @media (max-width: 768px) {
        padding: 15px;
    }


}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: rgba(102, 126, 234, 1);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    color: rgba(118, 75, 162, 1);
    text-decoration: underline;
}

.policy-footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    text-align: center;
}

.policy-footer-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.footer-separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

/* Responsive Privacy Policy Styles */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px 25px;
    }

    .policy-section h2 {
        font-size: 1.5rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 25px 20px;
    }

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

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .back-link {
        font-size: 0.9rem;
    }

    .contact-box {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-separator {
        display: none;
    }
}

/* ===================================
   SERVICE DETAILS PAGE
   =================================== */

.loading-container,
.error-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(var(--primary-rgb), 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-container p,
.error-container p {
    margin-top: 20px;
    color: var(--text-secondary);
}

.error-container h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.details-hero {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.details-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.details-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.details-image-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.details-image-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.details-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.meta-item {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.meta-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.details-right h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.description-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.description-card h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.description-card h2 svg {
    color: var(--primary-color);
}

.description-card p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
    white-space: pre-wrap;
}

.features-section {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(102, 126, 234, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
}

.features-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.cta-section {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-large svg {
    flex-shrink: 0;
}

/* Responsive for details page */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .details-left {
        order: 1;
    }

    .details-right {
        order: 2;
    }

    .details-meta {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .details-hero {
        padding: 100px 0 60px;
    }

    .details-right h1 {
        font-size: 2rem;
    }

    .description-card {
        padding: 20px;
    }

    .description-card h2 {
        font-size: 1.3rem;
    }

    .description-card p {
        font-size: 1rem;
    }

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

    .cta-section {
        flex-direction: column;
    }

    .cta-section .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .details-meta {
        flex-direction: column;
    }
}

/* ===================================
   THEME TOGGLE BUTTON (IN NAVBAR)
   =================================== */

.theme-toggle-nav {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    flex-shrink: 0;
}

.theme-toggle-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg);
}

.theme-toggle-nav svg {
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

/* ===================================
   FLOATING WHATSAPP COMMUNITY BUTTON
   =================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.floating-whatsapp svg {
    flex-shrink: 0;
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* ===================================
   CATEGORY FILTER BAR
   =================================== */

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    color: var(--text-secondary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    width: 150px !important;
    aspect-ratio: 3/4 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.filter-btn:hover {
    border-color: rgba(0, 102, 255, 0.5);
    color: var(--text-primary);
    background: rgba(0, 102, 255, 0.1);
}

.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

/* ===================================
   SECTION TITLE WITH ROCKET SVG
   =================================== */

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.rocket-icon {
    flex-shrink: 0;
    animation: rocketBounce 2s ease-in-out infinite;
}

@keyframes rocketBounce {

    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* ===================================
   SERVICE DETAILS - CLEAN COLUMN LAYOUT
   =================================== */

.details-hero-clean {
    padding: 20px 0 60px;
    min-height: auto;
    margin-top: 50px;
}

.details-column {
    max-width: 700px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.details-column .details-image-card {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.details-column .details-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.details-title {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0 !important;
    line-height: 1.2;
}

.details-meta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.meta-chip svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.details-column .description-card {
    width: 100%;
    margin-bottom: 0;
}

.back-link-bottom {
    margin-top: 10px;
    align-self: flex-start;
}

.details-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.details-cta-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.btn-outline-detail {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

.btn-outline-detail:hover {
    background: var(--primary-gradient) !important;
    color: white !important;
    border-color: transparent !important;
}

@media (max-width: 768px) {
    .details-hero-clean {
        padding: 10px 0 40px;
        margin-top: 30px;
    }

    .details-column {
        gap: 18px;
    }

    .details-title {
        font-size: 1.8rem !important;
    }

    .meta-chip {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .details-cta-buttons {
        align-items: center;
        width: 100%;
    }

    .details-cta-buttons .btn {
        width: 100% !important;
        justify-content: center;
    }
}

/* ===================================
   ADMIN FORM PAGES (Add/Edit Service)
   =================================== */

.admin-form-section {
    padding: 100px 0 60px;
    min-height: 100vh;
}

.form-page-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 800px;
    margin: 30px auto 0;
    box-shadow: var(--card-shadow);
}

.form-page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.form-page-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-page-header h1 svg {
    color: var(--primary-color);
}

.form-page-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.form-actions-page {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.form-actions-page .btn {
    min-width: 140px;
    justify-content: center;
}

@media (max-width: 768px) {
    .admin-form-section {
        padding: 80px 0 40px;
    }

    .form-page-card {
        padding: 25px 20px;
        margin: 20px auto 0;
    }

    .form-page-header h1 {
        font-size: 1.4rem;
    }

    .form-actions-page {
        flex-direction: column;
    }

    .form-actions-page .btn {
        width: 100%;
    }
}

/* ===================================
   FILE UPLOAD ZONE
   =================================== */

.file-upload-zone {
    border: 2px dashed rgba(0, 102, 255, 0.25);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.file-upload-zone:hover,
.file-upload-zone.drag-over {
    border-color: rgba(0, 102, 255, 0.6);
    background: rgba(0, 102, 255, 0.05);
}

.file-upload-zone.drag-over {
    transform: scale(1.01);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.15);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px;
    color: var(--text-secondary);
    text-align: center;
}

.upload-placeholder svg {
    color: rgba(0, 102, 255, 0.4);
}

.upload-placeholder span {
    font-size: 0.95rem;
    font-weight: 500;
}

.upload-placeholder small {
    font-size: 0.8rem;
    opacity: 0.6;
}

.upload-preview {
    width: 100%;
    position: relative;
}

.upload-preview img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    padding: 10px;
}

.remove-image-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

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

/* Light theme */
body.light-theme .file-upload-zone {
    border-color: rgba(0, 102, 255, 0.2);
}

body.light-theme .file-upload-zone:hover,
body.light-theme .file-upload-zone.drag-over {
    border-color: rgba(0, 102, 255, 0.5);
    background: rgba(0, 102, 255, 0.03);
}

/* ===================================
   CATEGORIES MANAGER
   =================================== */

.categories-manager {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius);
    padding: 28px;
    backdrop-filter: blur(20px);
}

.add-category-form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.category-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.category-input:focus {
    border-color: rgba(0, 102, 255, 0.5);
}

.category-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
    animation: fadeIn 0.3s ease;
}

.category-chip:hover {
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.3);
}

.category-delete-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.category-delete-btn:hover {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* Light theme */
body.light-theme .category-input {
    background: rgba(0, 0, 0, 0.02);
}

body.light-theme .category-chip {
    background: rgba(0, 102, 255, 0.06);
}

/* Responsive */
@media (max-width: 600px) {
    .add-category-form {
        flex-direction: column;
    }

    .categories-manager {
        padding: 20px;
    }
}

/* Notification */
.notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 8px 30px white;
}

.notification.success {
    background: rgba(16, 185, 129, 0.95);
    color: #fff;
}

.notification.error {
    background: rgba(239, 68, 68, 0.95);
    color: #fff;
}

.notification button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.notification button:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===================================
   SCROLLING BANNER MARQUEE
   =================================== */

.banner-marquee {
    width: 100%;
    overflow: hidden;
    padding: 18px 0;
    margin-top: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    background-color: white !important;
    display: none;
}

/* Gradient fade on edges */
.banner-marquee::before,
.banner-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.banner-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.banner-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.banner-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    width: max-content;
}

.banner-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.banner-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.banner-marquee:hover .banner-track {
    animation-play-state: paused;
}

/* Light theme */
body.light-theme .banner-marquee {
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-track img {
        height: 45px;
    }

    .banner-track {
        gap: 20px;
        animation-duration: 30s;
    }

    .banner-marquee {
        padding: 14px 0;
    }
}

/* ===================================
   SPARKLE CANVAS & TYPING EFFECT
   =================================== */

.hero {
    position: relative;
    overflow: hidden;
}

#sparkle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.typing-wrapper {
    display: inline;
}

#typing-text {
    background: linear-gradient(135deg, #00a8ff, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.typing-cursor {
    display: inline-block;
    color: #00a8ff;
    font-weight: 300;
    animation: blink 0.8s infinite;
    margin-left: 2px;
    font-size: inherit;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* STATIC CATEGORY STYLES */
/* GRID CATEGORY STYLES */
.category-filter {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Base button styles */
.filter-btn {
    display: flex;
    /* Changed from inline-flex to fill grid cell */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    padding: 0;
    width: 100%;
    /* Fill grid cell */
}

/* Specific style for "All" text button - THIS BUTTON DOES NOT EXIST IN HTML ANYMORE BUT KEEPING CSS JUST IN CASE */
.filter-btn[data-category="all"] {
    grid-column: 1 / -1;
    /* Span full width if present */
    width: 200px;
    margin: 0 auto;
    padding: 10px 30px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    height: 50px;
}

.filter-btn[data-category="all"]:hover,
.filter-btn[data-category="all"].active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Image-based category buttons */
.filter-btn:not([data-category="all"]) {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    /* 3:4 Aspect Ratio */
    width: 100%;
    /* Fill the grid column */
    height: auto;
    aspect-ratio: 3/4;
    background: var(--card-bg);
}

.filter-btn:not([data-category="all"]):hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.filter-btn:not([data-category="all"]).active {
    box-shadow: 0 0 0 3px var(--primary-color), 0 10px 25px rgba(0, 102, 255, 0.3);
    transform: translateY(-5px);
}

.category-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.filter-btn:hover .category-icon {
    transform: scale(1.05);
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .category-filter {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 20px;
        /* Add some side padding on tablet */
    }
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .category-filter {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin: 0 auto;
        padding: 0;
    }

    .filter-btn:not([data-category="all"]) {
        border-radius: 8px;
        /* Slightly smaller radius for small screens */
        width: 100px !important;
    }
}

/* Filter Bullets */
.filter-bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.bullet-btn {
    padding: 8px 24px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bullet-btn:hover {
    background: rgba(0, 102, 255, 0.05);
    color: var(--primary-color);
}

.bullet-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* Dark mode adjustment if needed */
body.dark-theme .bullet-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

body.dark-theme .bullet-btn.active {
    color: white;
    border-color: var(--primary-color);
}

/* Admin Table Styles */
.admin-table-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow-x: auto;
    padding: 0;
    margin-top: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    /* Changed from collapse for border-radius */
    border-spacing: 0;
    min-width: 800px;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.admin-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--card-border);
    vertical-align: middle;
    color: var(--text-primary);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Product Cell */
.product-cell .product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.table-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.product-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* Category */
.category-tag {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Price */
.price-text {
    font-weight: 700;
    color: var(--text-primary);
}

.period-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Actions */
.actions-cell {
    /* Removed display: flex to fix table cell border alignment */
    vertical-align: middle;
    white-space: nowrap;
}

.action-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    /* Changed from flex */
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-right: 8px;
    /* Replacement for gap */
}

.action-btn:last-child {
    margin-right: 0;
}

.action-btn:hover {
    color: var(--primary-color);
    background: rgba(102, 126, 234, 0.1);
}

.delete-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}