/* Global Styles & Variables */
:root {
    --primary-font: 'Outfit', 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Corporate Brand Theme (DentalSoftCloud Orange & Slate) */
    --clr-dark-bg: #090d16;
    --clr-dark-card: #121824;
    --clr-light-bg: #fdfaf7; /* Warm peach tint background */
    --clr-white: #ffffff;
    --clr-border: #e2e8f0;
    --clr-border-dark: #2d3748;

    /* Corporate Brand Accents */
    --clr-orange: #ea580c;
    --clr-orange-hover: #c2410c;
    --clr-orange-light: #ffedd5;
    --clr-orange-glow: rgba(234, 88, 12, 0.4);
    
    /* Text Colors */
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f1f5f9;
    --text-light-muted: #94a3b8;

    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #f59e0b;

    /* Shadows & Transitions */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 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-premium: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03), 0 0 15px rgba(234, 88, 12, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--clr-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 1.25;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-glow-orange {
    0%, 100% { box-shadow: 0 0 5px var(--clr-orange-glow); }
    50% { box-shadow: 0 0 15px var(--clr-orange); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--primary-font);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    text-decoration: none;
}

.btn-primary.orange-btn {
    background: linear-gradient(135deg, var(--clr-orange) 0%, #f97316 100%);
    color: var(--clr-white);
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25);
}

.btn-primary.orange-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.btn-secondary.orange-border {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--clr-orange);
    border: 2px solid var(--clr-orange);
}

.btn-secondary.orange-border:hover {
    background-color: var(--clr-orange-light);
    color: var(--clr-orange-hover);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Header & Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 14px 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-right: 40px;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.DentalSoftCloud-text.orange {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.digital-badge.orange {
    background-color: var(--clr-orange);
    color: var(--clr-white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ai-chip.orange {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--clr-orange) 0%, #fdba74 100%);
    color: var(--clr-white);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse-glow-orange 3s infinite ease-in-out;
}

/* DentalSoftCloud IA como chip animado en el menú */
.ai-chip-nav {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--clr-orange) 0%, #fdba74 100%) !important;
    color: #fff !important;
    padding: 5px 13px !important;
    border-radius: 20px !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    text-decoration: none;
    animation: pulse-glow-orange 3s infinite ease-in-out;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(234,88,12,0.25);
}
.ai-chip-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(234,88,12,0.4);
    color: #fff !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: var(--clr-orange);
}

/* Dropdown Menu */
.dropdown-item {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--clr-white);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    min-width: 220px;
    padding: 8px 0;
    z-index: 10;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

.dropdown-item:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #334155;
    padding: 10px 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: #fafafa;
    color: var(--clr-orange);
}

.dropdown-content i {
    color: var(--clr-orange);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-icon-wrapper {
    position: relative;
    color: #475569;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}

.cart-icon-wrapper:hover {
    color: var(--clr-orange);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--clr-orange);
    color: var(--clr-white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-panel-toggle {
    color: #475569;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(234, 88, 12, 0.08);
    border: 1px solid rgba(234, 88, 12, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.admin-panel-toggle:hover {
    background-color: var(--clr-orange);
    color: var(--clr-white);
    border-color: var(--clr-orange);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #475569;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--clr-white);
    z-index: 101;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    padding: 24px;
    overflow-y: auto;
    border-right: 1px solid var(--clr-border);
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.close-drawer-btn {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

.mobile-drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    color: #475569;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--clr-orange);
}

.mobile-divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin: 8px 0;
}

/* Hero Carousel Section */
.hero-carousel-section {
    background: linear-gradient(180deg, #fffcf9 0%, #fff7ed 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
    position: relative;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.slide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slide-badge {
    background-color: var(--clr-orange-light);
    color: var(--clr-orange);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -1px;
}

.highlight-orange {
    color: var(--clr-orange);
}

.slide-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Slide Graphics */
.slide-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.rounded-image-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #ffedd5 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-avatar-container {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: var(--shadow-premium);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon {
    position: absolute;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-orange);
    font-size: 1.2rem;
    animation: float 4s infinite ease-in-out;
}

.icon-1 { top: 10px; left: -10px; animation-delay: 0.5s; }
.icon-2 { top: -20px; right: 20px; animation-delay: 1.5s; }
.icon-3 { bottom: 20px; right: -15px; animation-delay: 0.8s; }
.hero-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.vector-scene {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid rgba(234,88,12,0.1);
}

.laptop-icon {
    font-size: 4rem;
    color: #475569;
}

.certificate-badge-svg {
    background-color: var(--clr-orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: var(--shadow-sm);
}

.clock-scene .user-check-icon {
    font-size: 4rem;
    color: var(--success);
}

.clock-scene .time-stamp-box {
    background-color: #334155;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    margin-top: 10px;
}

.pos-scene .trends-icon {
    font-size: 4rem;
    color: var(--clr-orange);
}

.pos-scene .sales-total-box {
    background-color: #0f172a;
    color: var(--clr-cyan);
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 10px;
}

/* Carousel Control Bar */
.carousel-indicators-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    position: relative;
    z-index: 5;
}

.carousel-dot {
    width: 32px;
    height: 6px;
    background-color: #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--clr-orange);
    width: 48px;
}

.carousel-pause-btn {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 5px;
    margin-left: 10px;
    transition: var(--transition);
}

.carousel-pause-btn:hover {
    color: var(--clr-orange);
}

/* Marketplace Section */
.marketplace-section {
    padding: 80px 0;
}

.market-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.market-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.orange-span {
    color: var(--clr-orange);
}

.search-bar-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

#searchBar {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-family: var(--body-font);
    font-size: 1rem;
    border: 2px solid var(--clr-border);
    border-radius: 30px;
    outline: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    background-color: #fafafa;
}

#searchBar:focus {
    border-color: var(--clr-orange);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.1);
}

.search-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.15rem;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(234, 88, 12, 0.2);
}

.product-card-image {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.crm-btn-row {
    display: flex;
    gap: 8px;
    width: 100%;
}

.crm-free-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}

.product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.product-name {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 700;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-price-box {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.price-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.price-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.1;
}

.price-tax {
    font-size: 0.75rem;
    color: var(--clr-orange);
    font-weight: 600;
}

.product-card-footer {
    padding: 0 24px 24px;
}

.market-actions {
    margin-top: 40px;
}

/* Platform Features block */
.features-text-block {
    background-color: var(--clr-light-bg);
    padding: 80px 0;
    border-top: 1px solid rgba(234, 88, 12, 0.05);
    border-bottom: 1px solid rgba(234, 88, 12, 0.05);
}

.features-text-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.text-block-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
}

.features-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.text-block-graphic {
    display: flex;
    justify-content: center;
}

.features-icon-cloud {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cloud-item {
    background-color: #fff;
    border: 1px solid var(--clr-border);
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--primary-font);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    color: #334155;
    animation: float 5s infinite ease-in-out;
}

.cloud-item:nth-child(2) { animation-delay: 1.5s; }
.cloud-item:nth-child(3) { animation-delay: 0.8s; }

.cloud-item i {
    color: var(--clr-orange);
    font-size: 1.15rem;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 80px 0;
}

.section-badge.orange {
    background-color: rgba(234, 88, 12, 0.08);
    color: var(--clr-orange);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 32px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    background-color: var(--clr-white);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--primary-font);
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--clr-orange);
}

.accordion-header i {
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--text-muted);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.accordion-item.active {
    border-color: rgba(234, 88, 12, 0.3);
    box-shadow: var(--shadow-sm);
}

.accordion-item.active .accordion-header {
    color: var(--clr-orange);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--clr-orange);
}

/* AI Suite Highlight Section */
.ai-suite-section {
    background-color: var(--clr-light-bg);
    padding: 80px 0;
    border-top: 1px solid rgba(234, 88, 12, 0.05);
}

.ai-suite-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.ai-suite-desc {
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-muted);
}

.ai-features-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ai-feature-tag {
    background-color: #fff;
    border: 1px solid var(--clr-orange);
    color: var(--clr-orange);
    font-family: var(--primary-font);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

/* Action Card Section */
.digitise-cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 16px;
    padding: 48px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
}

.cta-card-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-card-content p {
    color: var(--text-light-muted);
}

.cta-card-btn {
    flex-shrink: 0;
}

.font-lg {
    font-size: 1.1rem;
    padding: 14px 36px;
}

/* Lead & Contact Form */
.contact-section {
    background-color: var(--clr-light-bg);
}

.contact-section .section-badge {
    font-size: 1.35rem !important;
    padding: 10px 26px !important;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-celebration-wrapper {
    margin-top: 15px;
    text-align: center;
    max-width: 100%;
}

.contact-celebration-img {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    transition: var(--transition);
}

.contact-celebration-img:hover {
    transform: scale(1.02);
}

.contact-title {
    font-size: 2.2rem;
    color: #1e293b;
    letter-spacing: -0.5px;
}

.contact-desc {
    color: var(--text-muted);
}

.purchase-summary-card {
    background-color: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 10px 0;
}

.purchase-summary-card h4 {
    font-size: 1rem;
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 12px;
    color: var(--text-dark);
}

.form-purchase-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.purchase-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.total-row {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.05rem;
    border-top: 1px solid var(--clr-border);
    padding-top: 12px;
}

.payment-select-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
}

.payment-select-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Form Styles */
.contact-form-wrapper {
    background-color: var(--clr-white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-header {
    margin-bottom: 10px;
}

.form-header h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.form-group input, .form-group select {
    font-family: var(--body-font);
    font-size: 0.9rem;
    padding: 10px 14px;
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    background-color: #fafafa;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--clr-orange);
    background-color: var(--clr-white);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

.phone-input-group {
    display: flex;
}

.prefix-badge {
    background-color: #f1f5f9;
    border: 1px solid var(--clr-border);
    border-right: none;
    padding: 10px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
}

.phone-input-group input {
    border-radius: 0 6px 6px 0;
    flex-grow: 1;
}

.form-status-message {
    padding: 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    display: none;
    text-align: center;
}

.form-status-message.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status-message.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Shopping Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--clr-white);
    z-index: 102;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-grow: 1;
    color: var(--text-muted);
}

.cart-empty-state i {
    font-size: 3.5rem;
    opacity: 0.3;
}

.cart-content-state {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-items-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--clr-border);
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--clr-border);
    border-radius: 4px;
    width: fit-content;
    margin-top: 8px;
}

.qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    cursor: pointer;
}

.qty-val {
    padding: 0 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.item-price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.item-price-val {
    font-weight: 700;
    font-size: 0.95rem;
}

.item-remove-btn {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 0.85rem;
}

.cart-totals {
    border-top: 2px solid var(--clr-border);
    padding-top: 16px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-totals .total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cart-totals .total-row.grand-total {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 6px;
}

.cart-actions {
    margin-top: 24px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 13, 22, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: none;
}

.drawer-overlay.active {
    display: block;
}

/* Admin Dashboard Modal */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-modal.active {
    display: flex;
}

.admin-modal-container {
    background-color: var(--clr-dark-bg);
    color: var(--clr-white);
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.admin-modal-header {
    padding: 20px 24px;
    background-color: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-modal-header h3 {
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--clr-orange);
}

.close-admin-btn {
    background: none;
    border: none;
    color: var(--text-light-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-admin-btn:hover {
    color: var(--clr-white);
}

.admin-modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Health Cards in Admin Panel */
.health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.health-card {
    background-color: var(--clr-dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 16px;
}

.health-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.health-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.health-indicator {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-online {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-offline {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-pending {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.health-details {
    font-size: 0.75rem;
    color: var(--text-light-muted);
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-light-muted);
    font-family: var(--primary-font);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    color: var(--clr-white);
}

.tab-btn.active {
    color: var(--clr-orange);
    border-bottom-color: var(--clr-orange);
}

.tab-content {
    display: none;
    flex-grow: 1;
}

.tab-content.active {
    display: block;
}

/* Admin Table Styles */
.table-responsive {
    overflow-x: auto;
    width: 100%;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    text-align: left;
}

.admin-table th, .admin-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.admin-table th {
    background-color: rgba(0,0,0,0.15);
    color: var(--text-light);
    font-weight: 600;
}

.admin-table td {
    color: var(--text-light-muted);
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-table tr:hover td {
    background-color: rgba(255,255,255,0.02);
    color: var(--clr-white);
}

.admin-modal-footer {
    padding: 16px 24px;
    background-color: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: flex-end;
}

.text-center {
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--clr-dark-bg);
    color: var(--clr-white);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer .brand-col img.nav-logo-img {
    mix-blend-mode: multiply;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-light-muted);
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.04);
    border-radius: 50%;
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-socials a:hover {
    background-color: var(--clr-orange);
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--clr-white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: var(--text-light-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--clr-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
    color: var(--text-light-muted);
    font-size: 0.8rem;
}

/* Responsiveness adjustments */
@media (max-width: 992px) {
    .slide-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .slide-badge {
        margin: 0 auto;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .features-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .health-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-modal-container {
        height: 95vh;
    }
    
    .cta-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 99999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    color: #fff;
}
/* Pulse ripple animation */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.7;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}
@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
