/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc2626;
    --primary-dark: #991b1b;
    --secondary-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #fef2f2;
    --bg-white: #ffffff;
    --bg-red-light: #fef2f2;
    --border-color: #fecaca;
    --gradient-1: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    --gradient-2: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --shadow-sm: 0 1px 2px 0 rgba(220, 38, 38, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(220, 38, 38, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(220, 38, 38, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(220, 38, 38, 0.1);
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 40px;
    }
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.21);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    padding: 0.25rem 1.5rem;
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    z-index: 1;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3)
    );
    z-index: 1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 18px;
}

.navbar.scrolled .nav-wrapper {
    padding: 0.4rem 0;
}

.navbar.scrolled .logo img {
    height: 48px;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.visible {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: slideInDown 0.4s ease-out;
}

.navbar.visible .nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
}

.navbar.visible .logo img {
    transform: scale(1);
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    position: relative;
    z-index: 2;
}

.logo img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-buttons .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}

.nav-link {
    color: var(--text-dark) !important;
}

.nav-link-primary {
    background: var(--gradient-2);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px;
    display: inline-block;
    margin-top: 0.5rem;
}

/* User Menu */
.nav-user-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: none; /* Hidden by default, shown in dropdown */
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: rgba(220, 38, 38, 0.1);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.dropdown-toggle:hover svg {
    color: white;
}

.dropdown-toggle svg {
    width: 22px;
    height: 22px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-menu,
.dropdown-toggle:focus + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .user-info {
    padding: 0.875rem 1.25rem;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-red-light);
}

.dropdown-menu .user-info .user-name {
    display: block !important;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.dropdown-menu .user-info .user-email {
    font-size: 0.85rem;
    color: var(--text-light);
}

.dropdown-menu a,
.dropdown-menu button {
    display: block;
    width: 100%;
    padding: 0.875rem 1.25rem;
    text-align: left;
    text-decoration: none;
    color: var(--text-dark);
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
    background: var(--bg-red-light);
    color: var(--primary-color);
}

.dropdown-menu hr {
    margin: 0.5rem 0;
    border: none;
    border-top: 1px solid var(--border-color);
}

.nav-link-logout {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* Language Switcher - Simple Button */
.lang-switcher-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    min-width: 60px;
}

.lang-switcher-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.lang-text,
.lang-text-mobile {
    font-weight: 700;
}

.mobile-actions {
    display: none;
}

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

.logout-modal.active {
    opacity: 1;
    visibility: visible;
}

.logout-modal-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    width: 90%;
    animation: modalSlideIn 0.3s ease-out;
}

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

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

.logout-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border-color);
}

.logout-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-red-light);
    color: var(--primary-color);
}

.logout-modal-body {
    padding: 2rem;
    text-align: center;
}

.user-info-modal {
    margin-bottom: 2rem;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.user-avatar-large svg {
    width: 40px;
    height: 40px;
    color: white;
}

.user-info-modal h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.user-info-modal p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.logout-message {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.logout-modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--border-color);
}

.logout-modal-footer .btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(220, 38, 38, 0.1);
    transform: scale(1.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.35rem 3rem;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1400px) {
    .hero-content {
        max-width: 1400px;
        gap: 6rem;
    }
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.1);
    max-width: 800px;
    margin: 1.5rem auto 0;
    border: 2px solid var(--border-color);
}

.stat {
    text-align: center;
    padding: 0.75rem 1.25rem;
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.stat p {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    transform: translateX(-100px);
}

.floating-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.1);
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

.floating-card:hover {
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.2);
    transform: translateY(-5px);
}

.floating-card img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

/* Carousel Caption */
.carousel-caption {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.carousel-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-caption p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Carousel Navigation - Auto slide only */

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Carousel Navigation Arrows */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(220, 38, 38, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    transition: stroke 0.3s ease;
}

.carousel-nav-btn:hover svg {
    stroke: white;
}

.carousel-prev {
    left: -70px;
}

.carousel-next {
    right: -70px;
}

@keyframes slideDown {
    0% {
        top: -100vh;
        opacity: 0;
        transform: translateY(-20px);
        visibility: hidden;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 30px rgba(220, 38, 38, 0.6);
    }
}

@keyframes shimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

@media (max-width: 968px) {
    @keyframes slideDown {
        100% { top: 75px; }
    }
}

@media (max-width: 640px) {
    @keyframes slideDown {
        100% { top: 65px; }
    }
}

/* Section Styles */
section {
    padding: 3rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    background: var(--bg-red-light);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    color: var(--text-light);
    text-align: center;
}

/* Product Line Section */
.product-line {
    background: var(--bg-white);
    padding: 6rem 0;
}

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

.product-tab {
    padding: 0.875rem 1.75rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.product-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.product-tab.active {
    background: var(--gradient-2);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.product-content {
    position: relative;
    min-height: 500px;
}

.category-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.category-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

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

.product-category-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-category-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(239, 68, 68, 0.05) 100%);
}

.category-badge {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.category-badge.bestseller {
    background: var(--gradient-2);
}

.category-image {
    background: var(--bg-red-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    width: 100%;
}

.category-image img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.product-category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    height: 120px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    line-clamp: 5;
}

.product-category-card .btn {
    margin-top: auto;
    width: 100%;
    max-width: 200px;
    padding: 0.75rem 2rem;
}

/* Devices Section */
.devices {
    background: var(--bg-red-light);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.device-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.device-card.animate {
    opacity: 1;
    transform: scale(1);
}

.device-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.device-image {
    background: var(--bg-light);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
}

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

.device-info {
    padding: 1.5rem;
    text-align: center;
}

.device-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.device-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: center;
}

/* Pricing Section */
.pricing {
    background: var(--bg-red-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
    min-height: 650px;
    border: 2px solid transparent;
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(220, 38, 38, 0.2);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(239, 68, 68, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.2);
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.3);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-category {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-description {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    min-height: 60px;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.4rem;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: auto;
    flex-grow: 1;
    padding-bottom: 1rem;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.package-info {
    text-align: center;
    padding: 0.7rem 0;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-devices {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-red-light);
    border-radius: 8px;
}

.included-devices small {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.device-item-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.device-price-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.more-features {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: none !important;
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.package-actions .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.package-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

.package-actions .btn-primary {
    animation: buttonPulse 2s ease-in-out infinite;
}

.package-actions .btn-outline {
    animation: buttonGlow 2.5s ease-in-out infinite;
}

.package-actions .btn:hover {
    animation: none;
    transform: translateY(-2px) scale(1.05);
}

.package-actions .btn:hover::before {
    animation: shimmer 0.6s;
}

.package-actions .btn-sm {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

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

.package-modal.active {
    opacity: 1;
    visibility: visible;
}

.package-modal-content {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(220, 38, 38, 0.25);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
}

.package-modal-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem 1.5rem;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-radius: 24px 24px 0 0;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
}

.package-modal-header h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

.package-modal-register-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 0.5rem;
    background: linear-gradient(to bottom, rgba(254, 242, 242, 0), rgba(254, 242, 242, 0.5));
    padding-top: 1rem;
    border-radius: 12px;
}

.modal-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 3rem !important;
    font-size: 1.15rem !important;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-radius: 12px;
    letter-spacing: 0.3px;
}

.modal-register-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.45);
}

.modal-register-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.modal-register-btn svg {
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.package-modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.modal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.modal-section p {
    text-align: center;
    margin: 0.75rem auto;
    max-width: 700px;
}

.modal-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    text-align: center;
}

.package-category-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    padding: 1rem;
    background: var(--bg-red-light);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.devices-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.device-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-red-light);
    border-radius: 8px;
}

.price-tag {
    color: var(--primary-color);
    font-weight: 700;
}

.modal-features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
}

.modal-features-list li {
    padding: 0.75rem;
    background: var(--bg-red-light);
    border-radius: 8px;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.payment-badge {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.contact-item svg {
    width: 40px;
    height: 40px;
    color: white;
    background: var(--gradient-2);
    padding: 10px;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover svg {
    animation: iconBounce 0.6s ease;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    transform: scale(1.1);
}

.contact-item > div {
    flex: 1;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.contact-item-link .contact-item {
    cursor: pointer;
}

.contact-item-link:hover .contact-item {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.contact-item-link .contact-item p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Working Hours */
.working-hours {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(220, 38, 38, 0.15);
}

.working-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.hours-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.hours-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Contact Social Media */
.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-item.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
}

.social-link-item.instagram {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.social-link-item span {
    font-size: 1rem;
}

/* Contact Map */
.contact-map {
    display: flex;
    flex-direction: column;
}

.contact-map h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.map-container {
    flex: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.map-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

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

.form-group label {
    text-align: center;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.form-group textarea {
    text-align: center;
    resize: vertical;
    min-height: 160px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    text-align: center;
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 110px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .logo img {
        height: 65px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .product-tabs {
        gap: 0.75rem;
    }
    
    .product-tab {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .contact .container {
        padding: 0;
    }
    
    .navbar {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.5rem 1rem;
        border-radius: 16px;
    }
    
    .nav-wrapper {
        padding: 0.8rem 0;
    }
    
    .logo img {
        height: 55px;
    }
    
    .navbar.scrolled .logo img {
        height: 45px;
    }
    
    .navbar.visible .logo img {
        height: 50px;
    }
    
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0.5rem;
        right: 0.5rem;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
        padding: 2rem 0;
        border-radius: 16px;
        margin-top: 85px;
        z-index: 999;
        gap: 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    /* Show mobile-only items in mobile */
    .mobile-only {
        display: list-item !important;
        border-top: 1px solid var(--border-color);
        padding-top: 1rem !important;
        margin-top: 1rem !important;
    }
    
    .mobile-only:first-of-type {
        margin-top: 1rem !important;
    }
    
    .nav-menu .nav-link {
        color: var(--text-dark) !important;
        font-weight: 600;
    }
    
    .nav-menu .nav-link-primary {
        background: var(--gradient-2);
        color: white !important;
        padding: 0.75rem 2rem !important;
        border-radius: 8px;
        display: inline-block;
        margin-top: 0.75rem;
        font-weight: 700;
        width: 80%;
        max-width: 250px;
        text-align: center;
    }
    
    .nav-menu .nav-link-primary::after {
        display: none;
    }
    
    .nav-menu .nav-link-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    }
    
    .nav-menu .nav-link-logout {
        background: transparent;
        color: var(--text-dark) !important;
        padding: 0.5rem 0;
        display: block;
        margin: 0.5rem 0;
        font-weight: 600;
        border: none;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link-logout:hover {
        color: var(--primary-color) !important;
    }
    
    .nav-user-menu {
        display: flex !important;
    }
    
    .nav-user-menu .user-name {
        display: none;
    }
    
    .lang-switcher-btn {
        margin-left: 0.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Hide desktop lang/user in mobile */
    .nav-user-menu,
    .lang-switcher-btn:not(.lang-switcher-btn-mobile) {
        display: none !important;
    }
    
    /* Mobile actions in menu */
    .mobile-actions {
        display: flex !important;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 0 !important;
        margin-top: 1rem !important;
        border-top: 2px solid var(--border-color);
    }
    
    .lang-switcher-btn-mobile {
        padding: 0.6rem 1.5rem;
        background: rgba(220, 38, 38, 0.1);
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 700;
        color: var(--primary-color);
        font-size: 0.9rem;
    }
    
    .lang-switcher-btn-mobile:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .dropdown-toggle-mobile {
        background: rgba(220, 38, 38, 0.1);
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dropdown-toggle-mobile:hover {
        background: var(--primary-color);
    }
    
    .dropdown-toggle-mobile svg {
        width: 20px;
        height: 20px;
        color: var(--primary-color);
        transition: color 0.3s ease;
    }
    
    .dropdown-toggle-mobile:hover svg {
        color: white;
    }

    .nav-menu.active {
        top: 0;
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-buttons {
        display: none;
    }
    
    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

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

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

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

    .nav-buttons {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        order: 1;
        margin-top: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
        padding: 0 1rem;
    }
    
    .working-hours,
    .contact-social {
        padding: 1.5rem;
    }
    
    .social-links-contact {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-map {
        padding: 0 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-form {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 0.5rem;
    }
    
    .contact-form form {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-group {
        width: 100%;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-info > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-details {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
    
    .contact-item-link:hover .contact-item {
        transform: translateY(-5px);
    }
    
    .contact-item svg {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .contact-item h4 {
        font-size: 1.15rem;
    }
    
    .contact-item p {
        font-size: 1.05rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2.5rem;
    }

    .pricing-card {
        min-height: 0;
        padding: 2rem 1.5rem;
        border: 3px solid rgba(220, 38, 38, 0.3) !important;
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25) !important;
        margin-bottom: 0;
    }

    .pricing-card.featured {
        border: 4px solid var(--primary-color) !important;
        box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4) !important;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(239, 68, 68, 0.12) 100%) !important;
        transform: scale(1.02);
    }
    
    .badge {
        padding: 0.6rem 2rem;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    }
    
    .package-actions .btn {
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        font-weight: 700;
    }
    
    .package-actions .btn-primary {
        animation: buttonPulse 1.5s ease-in-out infinite;
        background: var(--gradient-2);
    }
    
    .package-actions .btn-outline {
        border-width: 2px;
        font-weight: 700;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 10px;
    }
    
    .contact .container {
        padding: 0;
    }
    
    .navbar {
        top: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.4rem 0.75rem;
        border-radius: 14px;
    }
    
    .nav-wrapper {
        padding: 0.6rem 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .nav-menu {
        top: -100vh;
        left: 0.5rem;
        right: 0.5rem;
        margin-top: 75px;
        border-radius: 14px;
    }
    
    .nav-menu.active {
        top: 0;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger span {
        width: 22px;
        height: 2px;
    }
    
    .nav-user-menu .user-name {
        display: none;
    }
    
    .dropdown-toggle {
        width: 40px;
        height: 40px;
    }
    
    .dropdown-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    /* Carousel Mobile */
    .carousel-container {
        height: 400px;
    }
    
    .floating-card {
        padding: 2.5rem;
        max-width: 420px;
    }
    
    .floating-card img {
        max-height: 280px;
        margin-bottom: 1rem;
    }
    
    /* Carousel Navigation on Mobile */
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .carousel-dots {
        bottom: -30px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .stat {
        padding: 1rem;
    }
    
    .stat:not(:last-child)::after {
        display: none;
    }
    
    .stat:not(:last-child) {
        border-bottom: 2px solid var(--border-color);
        padding-bottom: 1.5rem;
    }
    
    .stat h3 {
        font-size: 2.2rem;
    }
    
    .stat p {
        font-size: 0.85rem;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .product-tabs {
        gap: 0.5rem;
    }
    
    .product-tab {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .product-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category-card p {
        min-height: 0;
    }
    
    .product-category-card .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-wrapper {
        padding: 1.5rem 0;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-details {
        gap: 1.25rem;
    }
    
    .contact-item {
        padding: 1.25rem 0.875rem;
    }
    
    .contact-form {
        padding: 0 0.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1.05rem;
        padding: 1rem 1.75rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .btn-block {
        padding: 1.35rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 10px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h4 {
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

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

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

.success-modal-content {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(34, 197, 94, 0.25);
    max-width: 500px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;
    animation: successModalFadeIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
    position: relative;
    border: 3px solid #22c55e;
}

@keyframes successModalFadeIn {
    from {
        transform: scale(0.7) translateY(30px) rotate(-5deg);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successIconPulse 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

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

.success-icon svg {
    width: 60px;
    height: 60px;
    color: white;
    stroke-width: 3;
}

.success-modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-modal-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.countdown-wrapper {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(22, 163, 74, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.countdown-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

.countdown-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #22c55e;
    min-width: 30px;
    animation: countdownPulse 1s infinite;
}

@keyframes countdownPulse {
    0%, 100% {
        transform: scale(1);
        color: #22c55e;
    }
    50% {
        transform: scale(1.2);
        color: #16a34a;
    }
}

.success-modal-content .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.success-modal-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.success-modal-content .btn:active {
    transform: translateY(-1px);
}

/* Mobile Responsive for Success Modal */
@media (max-width: 640px) {
    .success-modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .success-icon svg {
        width: 50px;
        height: 50px;
    }

    .success-modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .success-modal-content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .countdown-wrapper {
        padding: 0.75rem 1rem;
        margin-bottom: 1.5rem;
    }

    .countdown-text {
        font-size: 0.9rem;
    }

    .countdown-number {
        font-size: 1.25rem;
    }

    .success-modal-content .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Tracking Animation Section */
.tracking-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(239, 68, 68, 0.05) 100%);
    overflow: hidden;
}

.tracking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 600px;
}

.tracking-animation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 600px;
}

#lottie-tracking {
    width: 100%;
    max-width: 650px;
    height: 600px;
    margin: 0 auto;
}

.tracking-text {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

.tracking-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.tracking-title span {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tracking-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tracking-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.tracking-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.tracking-features li svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Responsive Tracking Section */
@media (max-width: 968px) {
    .tracking-section {
        padding: 3rem 0;
    }
    
    .tracking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: 0;
    }
    
    .tracking-animation {
        order: 0;
        min-height: 450px;
    }
    
    .tracking-text {
        order: 1;
        text-align: center;
        padding: 1rem 0;
    }
    
    #lottie-tracking {
        max-width: 500px;
        height: 450px;
    }
    
    .tracking-title {
        font-size: 2rem;
    }
    
    .tracking-features li {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .tracking-section {
        padding: 2rem 0;
    }
    
    .tracking-content {
        gap: 1.5rem;
    }
    
    .tracking-animation {
        min-height: 350px;
    }
    
    #lottie-tracking {
        max-width: 100%;
        height: 350px;
    }
    
    .tracking-title {
        font-size: 1.75rem;
    }
    
    .tracking-description {
        font-size: 1rem;
    }
    
    .tracking-features li {
        font-size: 0.95rem;
    }
    
    .tracking-features li svg {
        width: 20px;
        height: 20px;
    }
}

/* Hide Devices Section on Mobile */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/* Devices Modal for Mobile */
.devices-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.devices-modal.active {
    display: flex;
    opacity: 1;
}

.devices-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.devices-modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.devices-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
}

.devices-modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.devices-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.devices-modal-close svg {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    pointer-events: none;
}

.devices-modal-close:hover svg {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.devices-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.device-card-modal {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.device-card-modal:last-child {
    margin-bottom: 0;
}

.device-card-modal:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
    transform: translateY(-3px);
}

.device-card-modal .device-image {
    text-align: center;
    margin-bottom: 1rem;
}

.device-card-modal .device-image img {
    max-width: 200px;
    height: auto;
}

.device-card-modal .device-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.device-card-modal .device-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.device-card-modal .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}


/* Package Selection Modal */
.package-selection-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-selection-modal.active {
    display: flex;
    opacity: 1;
}

.package-selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.package-selection-content {
    position: relative;
    background: white;
    width: 95%;
    max-width: 700px;
    max-height: 90vh;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.package-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: white;
    color: var(--text-dark);
    border-bottom: 1px solid #e5e7eb;
}

.package-selection-header h2 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--primary-color);
}

.package-selection-close {
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.package-selection-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.package-selection-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
    pointer-events: none;
}

.package-selection-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.selection-step {
    display: none;
}

.selection-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.selection-step h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selection-step h3::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(180deg, var(--primary-color), #b91c1c);
    border-radius: 2px;
}

.customer-type-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.customer-type-card {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 3px solid rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customer-type-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(239, 68, 68, 0.15) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.customer-type-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.customer-type-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-back {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
}

.btn-back:hover {
    transform: translateX(-5px);
}

/* Form Styling in Modal */
.selection-step .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.selection-step .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.selection-step .form-group input[type="number"],
.selection-step .form-group input[type="text"],
.selection-step .form-group input[type="tel"],
.selection-step .form-group input[type="email"],
.selection-step .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.selection-step .form-group input:focus,
.selection-step .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.selection-step .form-group input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.selection-step .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dc2626'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.selection-step .form-group select:hover {
    border-color: var(--primary-color);
}

.selection-step .form-group select option {
    padding: 1rem;
    color: var(--text-dark);
}

.vehicle-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    min-height: 80px;
    text-align: center;
}

.checkbox-card:hover {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 250, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
}

.checkbox-card input[type='checkbox'] {
    display: none;
}

.checkbox-card input[type='checkbox']:checked ~ span {
    font-weight: 600;
    color: var(--primary-color);
}

.checkbox-card:has(input:checked),
.checkbox-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.3) 0%, rgba(255, 182, 193, 0.4) 100%);
    border-width: 3px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

.checkbox-card.selected span {
    font-weight: 600;
    color: var(--primary-color);
}

.checkbox-card span {
    transition: all 0.2s ease;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    width: 100%;
    pointer-events: none;
}

.available-packages-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

.package-option-card {
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #b91c1c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-option-card:hover::before,
.package-option-card.selected::before {
    transform: scaleX(1);
}

.package-option-card:hover,
.package-option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 250, 1) 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.package-option-card.selected {
    border-width: 3px;
    border-color: var(--primary-color);
}

.package-option-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.package-option-card .price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.75rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.package-option-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.package-option-card small {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-red-light);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.selected-package-summary {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.selected-package-summary h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.selected-package-summary p {
    margin: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding-left: 0.5rem;
    border-left: 3px solid rgba(220, 38, 38, 0.2);
}

.selected-package-summary p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Continue Button Styling */
.selection-step .btn-primary {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.selection-step .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.selection-step .btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .customer-type-options {
        grid-template-columns: 1fr;
    }
    
    .vehicle-models-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .checkbox-card {
        padding: 1rem 0.75rem;
        min-height: 75px;
    }

    .checkbox-card span {
        font-size: 0.9rem;
    }
    
    .package-selection-header h2 {
        font-size: 1.25rem;
    }
    
    .package-selection-body {
        padding: 1.5rem;
    }
}


/* Floating Package Button */
.floating-package-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    z-index: 9999;
    animation: floatPulse 3s ease-in-out infinite;
    white-space: nowrap;
}

.floating-package-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-package-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
    animation: none;
}

.floating-package-btn:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-package-btn {
        bottom: 1rem;
        left: 1rem;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .floating-package-btn span {
        display: none;
    }
    
    .floating-package-btn svg {
        width: 28px;
        height: 28px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .floating-package-btn {
        width: 56px;
        height: 56px;
    }
    
    .floating-package-btn svg {
        width: 24px;
        height: 24px;
    }
}


/* Floating Package Button */
.floating-package-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b91c1c 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    z-index: 9999;
    animation: floatPulse 3s ease-in-out infinite;
    white-space: nowrap;
}

.floating-package-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.floating-package-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
    animation: none;
}

.floating-package-btn:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(220, 38, 38, 0.5);
    }
}

@media (max-width: 768px) {
    .floating-package-btn {
        bottom: 1rem;
        left: 1rem;
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .floating-package-btn span {
        display: none;
    }
    
    .floating-package-btn svg {
        width: 28px;
        height: 28px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .floating-package-btn {
        width: 56px;
        height: 56px;
    }
    
    .floating-package-btn svg {
        width: 24px;
        height: 24px;
    }
}



/* Package Selection Card Styles */
.package-selection-card {
    background: white;
    border-radius: 16px;
    border: 3px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.package-selection-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.bestseller-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.package-selection-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.package-selection-header h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.package-range {
    font-size: 0.9rem;
    opacity: 0.9;
}

.package-selection-body {
    padding: 1.5rem;
}

.package-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pricing Breakdown */
.pricing-breakdown {
    background: var(--bg-soft);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.pricing-row span {
    font-size: 0.95rem;
}

.pricing-row strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.pricing-row.total-row {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

.pricing-row.total-row strong {
    font-size: 1.25rem;
    color: var(--primary);
}

/* Payment Periods */
.payment-periods-section {
    margin: 1.5rem 0;
}

.payment-periods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.period-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-option:hover {
    border-color: #dc2626;
    background: #fee;
}

.period-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.period-option:has(input:checked) {
    background: #dc2626 !important;
    border-color: #dc2626 !important;
}

.period-option span {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: color 0.2s ease;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.period-option:has(input:checked) span {
    color: white !important;
}

/* Package Features */
.package-features-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.feature-icon {
    font-size: 1.1rem;
}

.package-selection-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* Package Summary Box */
.package-summary-box .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .payment-periods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-selection-header h4 {
        font-size: 1.25rem;
    }
    
    .pricing-row.total-row strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .payment-periods-grid {
        grid-template-columns: 1fr;
    }
    
    .period-option {
        padding: 0.6rem;
    }
}

/* Grand Total Styling */
.pricing-breakdown .grand-total {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: var(--primary) !important;
}

.pricing-breakdown .service-total {
    font-weight: 600;
}

.pricing-row:has(.grand-total) {
    background: linear-gradient(to right, rgba(220, 38, 38, 0.05), rgba(220, 38, 38, 0.1));
    padding: 0.75rem !important;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.pricing-row:has(.grand-total) span {
    font-weight: 700;
    font-size: 1.05rem;
}
