/* ===================================
   PIONEERSX - MAIN STYLESHEET
   ================================== */

/* ===================================
   CSS VARIABLES & ROOT SETTINGS
   ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-red: #ff1e1e;
    --secondary-blue: #2563eb;
    --dark-bg: #000;
    --darker-bg: #0a0a0a;
    --text-white: #fff;
    --text-gray: #b0b0b0;
    --card-bg: #1a1a1a;
    --border-color: #333;
    --success-green: #10b981;
    
    /* Typography */
    --font-main: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max-width: 1200px;
}

/* ===================================
   GLOBAL STYLES
   ================================== */
body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: none;
}

/* ===================================
   CUSTOM CURSOR
   ================================== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.05s ease, height 0.05s ease;
    box-shadow: 0 0 3px rgba(0,0,0,0.8),
               inset 0 0 3px rgba(255,255,255,0.2);
    overflow: hidden;
    opacity: 0;
}

.cursor-dot::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255,255,255,0.4) 50%, 
        transparent 70%);
    animation: glitter 1.5s linear infinite;
}

.cursor-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(1px 1px at 20% 30%, white, transparent),
                    radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.8), transparent),
                    radial-gradient(0.5px 0.5px at 80% 20%, white, transparent);
    background-size: 100% 100%;
    animation: sparkle 2s linear infinite;
    opacity: 0.6;
}

.cursor-outline {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.08s ease, height 0.08s ease, border-width 0.08s ease;
    background: radial-gradient(circle, rgba(255, 30, 30, 0.1) 0%, transparent 70%);
    box-shadow: 0 0 10px var(--primary-red),
               0 0 20px var(--primary-red),
               0 0 30px rgba(255, 30, 30, 0.5),
               inset 0 0 10px rgba(255, 30, 30, 0.2);
    animation: glowPulse 2s infinite;
    opacity: 0;
}

.cursor-outline.hover {
    width: 40px;
    height: 40px;
    border-width: 3px;
    box-shadow: 0 0 15px var(--primary-red),
               0 0 30px var(--primary-red),
               0 0 45px rgba(255, 30, 30, 0.7),
               inset 0 0 15px rgba(255, 30, 30, 0.3);
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
}

.cursor-dot.click {
    width: 6px;
    height: 6px;
}

.cursor-outline.click {
    width: 25px;
    height: 25px;
    box-shadow: 0 0 20px var(--primary-red),
               0 0 40px var(--primary-red),
               0 0 60px rgba(255, 30, 30, 0.8),
               inset 0 0 20px rgba(255, 30, 30, 0.4);
}

/* Hide cursor on all elements */
* {
    cursor: none !important;
}

/* ===================================
   NAVIGATION
   ================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.98);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-direction: row-reverse;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--text-white);
    text-decoration: none;
}

.logo .x {
    color: var(--primary-red);
    animation: glowPulse 2s infinite;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-direction: row-reverse;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    cursor: pointer;
}

/* ===================================
   HERO SECTION
   ================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 30, 30, 0.1) 0%, transparent 70%);
    padding: 100px 20px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   BUTTONS
   ================================== */
.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 30, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 30, 30, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: white;
}

.btn-whatsapp {
    background: var(--success-green);
    color: white;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

/* ===================================
   SECTIONS
   ================================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   STATS SECTION
   ================================== */
.stats {
    background: var(--darker-bg);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 30, 30, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* ===================================
   SERVICES SECTION
   ================================== */
.services {
    background: var(--dark-bg);
}

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-red);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 30, 30, 0.2);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-number {
    font-size: 3rem;
    color: var(--primary-red);
    font-weight: bold;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: block;
    margin-top: 30px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.service-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    color: var(--text-gray);
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* ===================================
   MEDICAL FOCUS SECTION
   ================================== */
.medical-focus {
    background: var(--darker-bg);
}

.medical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.medical-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.medical-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-blue);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.medical-icon {
    font-size: 3.5rem;
    color: var(--secondary-blue);
    margin-bottom: 20px;
}

.medical-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.medical-description {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   TEAM SECTION
   ================================== */
.team {
    background: var(--dark-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 30, 30, 0.2);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--primary-red);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.team-name {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.team-role {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.team-bio {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   PROCESS SECTION
   ================================== */
.process {
    background: var(--darker-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -40px;
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.process-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.process-step:hover .process-icon-wrapper {
    border-color: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 30, 30, 0.3);
}

.process-icon {
    font-size: 3rem;
    color: var(--primary-red);
}

.process-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.process-items {
    list-style: none;
    color: var(--text-gray);
    line-height: 1.8;
}

.process-items li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.process-items li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-red);
}

/* ===================================
   CLIENTS SECTION
   ================================== */
.clients {
    background: var(--dark-bg);
    padding: 80px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.client-logo {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 30, 30, 0.2);
}

.client-logo i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

/* ===================================
   CASE STUDIES SECTION
   ================================== */
.case-studies {
    background: var(--darker-bg);
}

.case-study {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.case-study:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 30, 30, 0.2);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.case-study-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.case-study-title {
    font-size: 1.4rem;
    color: var(--text-white);
}

.case-study-client {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.case-study-content {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.result-item {
    text-align: center;
    padding: 15px;
    background: var(--darker-bg);
    border-radius: 8px;
}

.result-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success-green);
}

.result-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===================================
   TESTIMONIALS
   ================================== */
.testimonials {
    background: var(--dark-bg);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 30, 30, 0.2);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.author-info h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===================================
   CTA SECTION
   ================================== */
.cta {
    background: linear-gradient(135deg, rgba(255, 30, 30, 0.1) 0%, transparent 100%);
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.cta p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* ===================================
   CONTACT FORM
   ================================== */
.contact {
    background: var(--darker-bg);
    padding: 100px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-details h4 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-gray);
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255, 30, 30, 0.2);
}

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

/* ===================================
   FOOTER
   ================================== */
footer {
    background: var(--dark-bg);
    padding: 50px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-red);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.social-links a[href*="tiktok"]:hover {
    background: #000;
    color: #ff0050;
}

.social-links a[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-links a[href*="youtube"]:hover {
    background: #ff0000;
}

.social-links a[href*="linkedin"]:hover {
    background: #0077b5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* ===================================
   LOADING & SCROLL TO TOP
   ================================== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 30, 30, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 30, 30, 0.5);
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   ================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ===================================
   PRODUCTS SECTION
   ================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 30, 30, 0.3);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-badge.coming-soon {
    background: #666;
}

.product-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.product-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.product-name .x-glow {
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red);
    animation: glowPulse 2s ease-in-out infinite;
}

.product-tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.product-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    list-style: none;
    text-align: right;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.product-features i {
    color: var(--primary-red);
}

.product-price {
    background: rgba(255, 30, 30, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-from {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(255, 30, 30, 0.5);
}

.price-currency {
    font-size: 1rem;
    color: var(--text-gray);
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-buttons .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CliniX Featured Card */
.clinix-card {
    border-color: var(--primary-red);
    box-shadow: 0 0 40px rgba(255, 30, 30, 0.2);
}

.clinix-card:hover {
    box-shadow: 0 20px 60px rgba(255, 30, 30, 0.4);
}

/* Coming Soon Card */
.coming-soon-card {
    opacity: 0.7;
    filter: grayscale(30%);
}

.coming-soon-card:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.coming-soon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-top: 2rem;
}

.coming-soon-text i {
    font-size: 2rem;
    color: var(--primary-red);
}

.coming-soon-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}
