/**
 * NajahMED - Ultra Premium Glassmorphism Design v4.0
 * Medical products background, rounded hero, premium cards
 */

/* ========================================
   MEDICAL PRODUCTS BACKGROUND IMAGES
======================================== */
.medical-bg-images {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-image {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

/* Medical Device - Top Right - Stethoscope */
.bg-image-1 {
    width: 280px;
    height: 280px;
    top: 8%;
    right: 5%;
    background-image: url('../images/bg-stethoscope.webp');
    opacity: 0.15;
    transform: rotate(-5deg);
}

/* Medical Equipment - Bottom Left - Syringe */
.bg-image-2 {
    width: 260px;
    height: 260px;
    bottom: 20%;
    left: 3%;
    background-image: url('../images/bg-syringe.webp');
    opacity: 0.12;
    transform: rotate(5deg);
}

/* Medical Tools - Top Left - Blood Pressure */
.bg-image-3 {
    width: 220px;
    height: 220px;
    top: 45%;
    left: 8%;
    background-image: url('../images/bg-blood-pressure.webp');
    opacity: 0.12;
    transform: rotate(-3deg);
}

/* Medical Supplies - Bottom Right - Surgical */
.bg-image-4 {
    width: 240px;
    height: 240px;
    bottom: 30%;
    right: 10%;
    background-image: url('../images/bg-surgical.webp');
    opacity: 0.15;
    transform: rotate(8deg);
}

/* Subtle animation for floating effect */
@keyframes floatMedical {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.bg-image-1 {
    animation: floatMedical 15s ease-in-out infinite;
}

.bg-image-2 {
    animation: floatMedical 18s ease-in-out infinite;
    animation-delay: -5s;
}

.bg-image-3 {
    animation: floatMedical 20s ease-in-out infinite;
    animation-delay: -10s;
}

.bg-image-4 {
    animation: floatMedical 16s ease-in-out infinite;
    animation-delay: -8s;
}

/* ========================================
   GLOBAL RESET & BASICS
======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: linear-gradient(160deg,
            #e6f7f5 0%,
            #f0faf9 20%,
            #f5fbfa 40%,
            #faf8f2 60%,
            #fdf5e6 80%,
            #fef9ec 100%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ========================================
   LAYOUT CONTAINER
======================================== */
.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
}

/* Gradient Overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(20, 184, 166, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(212, 168, 71, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   HEADER - CLEAN GLASSMORPHISM
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s ease;
}

.glass-header {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 30px rgba(13, 148, 136, 0.08);
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 40px rgba(13, 148, 136, 0.12);
    padding: 8px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo - BIGGER */
.site-branding .custom-logo {
    max-height: 80px;
    width: auto;
    transition: all 0.4s ease;
}

.site-branding:hover .custom-logo {
    transform: scale(1.05);
}

/* Navigation - Clean Style with Underline */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu .menu-item a {
    display: block;
    padding: 8px 0;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--nm-gray-600);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--nm-primary);
    transition: width 0.3s ease;
}

.nav-menu .menu-item a:hover {
    color: var(--nm-primary);
}

.nav-menu .menu-item a:hover::after {
    width: 100%;
}

.nav-menu .menu-item.current-menu-item a,
.nav-menu .menu-item:first-child a {
    color: var(--nm-primary);
    font-weight: 600;
}

.nav-menu .menu-item.current-menu-item a::after,
.nav-menu .menu-item:first-child a::after {
    width: 100%;
}

/* Header CTA */
.header-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: rgba(13, 148, 136, 0.1);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--nm-primary);
    border-radius: 2px;
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* ========================================
   PREMIUM BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--nm-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--nm-white);
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.4);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-primary-dark) 100%);
    color: var(--nm-white);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--nm-gray-800);
    border: 2px solid var(--nm-gray-300);
}

.btn-outline:hover {
    background: var(--nm-gray-800);
    color: var(--nm-white);
    border-color: var(--nm-gray-800);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* Product Label for Slides */
.product-label {
    display: block;
    width: fit-content;
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-primary-dark) 100%);
    color: var(--nm-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Product Showcase Image */
.product-showcase {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 30px;
}

.product-showcase img {
    max-height: 480px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* ========================================
   HERO SECTION - ROUNDED GLASSMORPHIC
======================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
    z-index: 1;
}

.hero-slider {
    position: relative;
}

.slider-container {
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Hero Glass Card Container */
.hero-glass-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    padding: 60px;
    box-shadow:
        0 20px 60px rgba(13, 148, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

/* Hero Text */
.hero-text {
    max-width: 500px;
}

.hero-badge {
    display: none;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--nm-gray-900);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--nm-primary) 0%, #0e7490 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1rem;
    color: var(--nm-gray-600);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.hero-image-wrapper img {
    max-width: 100%;
    max-height: 480px;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    color: var(--nm-gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.slider-arrow:hover {
    background: var(--nm-primary);
    color: var(--nm-white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--nm-primary), var(--nm-primary-light));
}

.dot:hover:not(.active) {
    background: rgba(13, 148, 136, 0.4);
}

/* ========================================
   SLIDE DECORATIONS - PREMIUM MEDICAL
======================================== */
.slide-category-title {
    display: inline-block;
    border-bottom: 5px solid var(--nm-primary, #0d9488);
    padding-bottom: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.slide-decorations {
    margin-top: 20px;
    position: relative;
    min-height: 120px;
}

/* Heartbeat Pulse Line */
.heartbeat-line {
    width: 280px;
    height: 50px;
    opacity: 0.7;
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.heartbeat-line path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawPulse 3s ease-in-out infinite;
}

@keyframes drawPulse {
    0% { stroke-dashoffset: 600; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -600; }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(13, 148, 136, 0.3)); }
    50% { filter: drop-shadow(0 0 8px rgba(13, 148, 136, 0.6)); }
}

/* Floating Medical Icons */
.floating-icons {
    position: relative;
    height: 60px;
    margin-top: 10px;
}

.float-cross {
    position: absolute;
    font-size: 1.2rem;
    color: rgba(13, 148, 136, 0.25);
    animation: floatUpDown 3s ease-in-out infinite;
}

.float-cross:first-child {
    left: 0;
    top: 5px;
}

.float-cross.delay-1 {
    left: 80px;
    top: 20px;
    font-size: 0.8rem;
    color: rgba(13, 148, 136, 0.15);
    animation-delay: -1.5s;
}

.float-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nm-primary, #0d9488), #06b6d4);
    opacity: 0.35;
    animation: floatUpDown 4s ease-in-out infinite;
}

.float-dot:nth-child(3) {
    left: 140px;
    top: 10px;
}

.float-dot.delay-2 {
    left: 200px;
    top: 25px;
    width: 6px;
    height: 6px;
    animation-delay: -2s;
}

.float-ring {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(13, 148, 136, 0.15);
    border-radius: 50%;
    left: 250px;
    top: 5px;
    animation: pulseRing 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseRing {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.4;
        border-color: rgba(13, 148, 136, 0.3);
    }
}

/* ========================================
   PRODUCTS SECTION - 2x2 GRID CARDS
======================================== */
.products-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--nm-primary);
    background: rgba(13, 148, 136, 0.1);
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
    color: var(--nm-gray-900);
}

.section-description {
    color: var(--nm-gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Product Card - Rounded Premium */
.product-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.12);
}

.product-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image img {
    max-width: 100%;
    max-height: 110px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    display: none;
}

.product-content {
    flex: 1;
    padding: 0;
}

.product-category {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nm-white);
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-primary-dark) 100%);
    border-radius: 20px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--nm-gray-900);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--nm-gray-600);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--nm-white);
    background: var(--nm-gray-800);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    background: var(--nm-primary);
    transform: translateX(5px);
}

.btn-text svg {
    width: 14px;
    height: 14px;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-images.single-storefront {
    display: flex;
    justify-content: center;
    align-items: center;
}

.single-storefront .storefront-wrapper {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    width: max-content; /* This ensures the frame perfectly matches the image size! */
    max-width: 100%;
    margin: 0 auto;
}

img.storefront-img {
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    max-height: 480px !important;
    border-radius: 20px !important;
    transition: transform 0.5s ease;
}

.single-storefront .storefront-wrapper:hover .storefront-img {
    transform: scale(1.02);
}

.about-image-main {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.about-image-main img {
    border-radius: 18px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-image-secondary {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.about-image-secondary img {
    border-radius: 14px;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-secondary) 100%);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.3);
}

.stat {
    text-align: center;
    color: var(--nm-white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.95;
    margin-top: 5px;
}

.about-content {
    position: relative;
}

.about-text {
    color: var(--nm-gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nm-white);
    background: linear-gradient(135deg, var(--nm-primary) 0%, var(--nm-primary-dark) 100%);
    border-radius: 12px;
}

.feature-text h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: var(--nm-gray-900);
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--nm-gray-600);
    margin: 0;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    overflow-x: hidden;
    max-width: 100vw;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 100%;
    overflow: hidden;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nm-gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-family: var(--nm-font-primary);
    font-size: 0.95rem;
    color: var(--nm-gray-800);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--nm-gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--nm-primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--nm-gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 20px;
    padding-right: 40px;
}

/* Contact CTA Side */
.contact-cta-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-cta {
    background: linear-gradient(135deg, var(--nm-primary) 0%, #0e7490 50%, var(--nm-secondary) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.25);
}

.contact-cta h3 {
    color: var(--nm-white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.contact-cta .btn {
    background: var(--nm-white);
    color: var(--nm-primary);
}

.contact-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Quick Contact Info */
.quick-contact-info {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 25px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--nm-gray-100);
}

.quick-contact-item:last-child {
    border-bottom: none;
}

.quick-contact-item svg {
    color: var(--nm-primary);
    flex-shrink: 0;
}

.quick-contact-item span {
    font-size: 0.9rem;
    color: var(--nm-gray-600);
}

/* Google Maps Container */
.contact-map {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.1);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 15px;
    color: var(--nm-primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: var(--nm-primary);
    color: var(--nm-white);
    transform: scale(1.1);
}

.contact-whatsapp .contact-card-icon {
    background: #25d366;
    color: var(--nm-white);
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--nm-gray-900);
}

.contact-card a,
.contact-card p {
    color: var(--nm-gray-600);
    font-size: 0.85rem;
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--nm-primary) 0%, #0e7490 50%, var(--nm-secondary) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.25);
}

.contact-cta h3 {
    color: var(--nm-white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.contact-cta .btn {
    background: var(--nm-white);
    color: var(--nm-primary);
}

.contact-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER - DARK BLUE PREMIUM
======================================== */
.site-footer {
    background: linear-gradient(180deg, #0c4a6e 0%, #0a3d5c 50%, #073047 100%);
    color: var(--nm-gray-200);
    position: relative;
    z-index: 1;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--nm-primary), var(--nm-secondary), var(--nm-primary));
    background-size: 200% 100%;
    animation: gradientSlide 4s linear infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    max-height: 80px;
    margin-bottom: 25px;
    background: #ffffff !important;
    padding: 15px !important;
    border-radius: 12px !important;
    display: inline-block !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.9rem;
}

.widget-title {
    color: var(--nm-white);
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--nm-primary-light);
    padding-left: 8px;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 6px 0;
}

.contact-icon {
    color: var(--nm-primary-light);
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--nm-primary-light);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--nm-white);
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s ease;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--nm-white);
    animation: none;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .products-grid {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .hero-glass-container {
        padding: 40px;
        border-radius: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Contact Form - Tablet */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-container {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 10px);
        left: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }

    .nav-menu .menu-item a {
        text-align: center;
        padding: 12px;
    }

    .header-cta {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-image {
        width: 100%;
        height: 180px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .contact-item {
        justify-content: center;
    }

    .bubble-1,
    .bubble-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-glass-container {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-images {
        grid-template-columns: 1fr;
    }
}

/* Hide background images on tablet and mobile */
@media (max-width: 1024px) {
    .medical-bg-images {
        display: none;
    }

    .bg-image {
        display: none;
    }
}

/* Mobile Comprehensive Fixes */
@media (max-width: 768px) {

    /* Container */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Header */
    .header-inner {
        padding: 0 10px;
    }

    .site-branding .custom-logo {
        max-height: 50px;
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0 30px;
        min-height: auto;
    }

    .hero-glass-container {
        padding: 20px 15px;
        border-radius: 20px;
    }

    .slide-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-image {
        display: block !important;
        margin-bottom: 15px;
    }

    .hero-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .product-showcase {
        padding: 15px;
        background: rgba(255, 255, 255, 0.2);
    }

    .product-showcase img {
        max-height: 250px;
        max-width: 100%;
        width: auto;
    }

    .product-label {
        font-size: 0.65rem;
        padding: 4px 12px;
    }

    .hero-buttons {
        margin-top: 10px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Slider Navigation Mobile */
    .slider-nav {
        margin-top: 15px;
        padding: 0 10px;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

    .slider-dots {
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    /* Products Section */
    .products-section {
        padding: 50px 0;
    }

    .product-card {
        padding: 15px;
        border-radius: 20px;
    }

    .product-image {
        height: 150px;
        padding: 10px;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    /* About Section */
    .about-section {
        padding: 50px 0;
    }

    .about-grid {
        gap: 30px;
    }

    .about-image-main img {
        height: 180px;
    }

    .about-image-secondary img {
        height: 120px;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    /* Contact Section */
    .contact-section {
        padding: 50px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-form-container {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .contact-cta {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .contact-cta h3 {
        font-size: 1.2rem;
    }

    .quick-contact-info {
        padding: 20px 15px;
    }

    /* Footer */
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-logo {
        max-height: 45px;
    }

    .widget-title {
        font-size: 0.9rem;
    }

    .footer-menu a,
    .contact-item span,
    .contact-item a {
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.4rem;
    }

    .hero-glass-container {
        padding: 20px 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .product-card {
        padding: 12px;
    }

    .contact-form-container {
        padding: 20px 15px;
    }
}

/* Landscape Mode - Mobile */
@media (max-width: 812px) and (orientation: landscape) {

    /* Prevent horizontal overflow */
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Show hamburger menu in landscape too */
    .menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 10px);
        left: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu {
        flex-direction: column;
        background: transparent;
        padding: 0;
    }

    .header-cta {
        display: none;
    }

    .hero-section {
        padding: 70px 0 20px;
        min-height: auto;
    }

    .hero-glass-container {
        padding: 15px 20px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        flex-direction: row;
    }

    .product-image {
        width: 100px;
        height: auto;
    }

    /* Fix Contact Section - Stack Vertically */
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .contact-cta-side {
        order: -1;
    }

    .contact-cta {
        padding: 20px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero Image in Landscape */
    .slide-content {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .hero-image {
        display: block !important;
        flex: 0 0 35%;
    }

    .hero-text {
        flex: 1;
    }

    .product-showcase img {
        max-height: 150px;
    }

    /* Slider Nav in Landscape */
    .slider-nav {
        position: relative;
        margin-top: 10px;
        gap: 10px;
    }

    .slider-arrow {
        position: relative;
        left: auto;
        right: auto;
        transform: none;
        width: 30px;
        height: 30px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }
}

/* Landscape Mode - Tablet */
@media (min-width: 813px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-section {
        padding: 100px 0 40px;
    }

    .hero-glass-container {
        padding: 30px 40px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Portrait Mode - Tablet */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-section {
        padding: 120px 0 50px;
    }

    .hero-glass-container {
        padding: 35px 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        height: 150px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Hero Image in Tablet Portrait */
    .slide-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-image {
        display: block !important;
        margin-bottom: 20px;
    }

    .hero-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .product-showcase img {
        max-height: 280px;
    }
}

/* Safe Area for Notch Devices */
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }

    .container {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
}.product-features-mini {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    text-align: left;
    font-size: 0.85rem;
    color: var(--nm-gray-600);
}

.product-features-mini li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    padding-left: 18px;
    position: relative;
    line-height: 1.3;
}

.product-features-mini li::before {
    content: "?";
    position: absolute;
    left: 0;
    color: var(--nm-primary);
    font-weight: bold;
}

.product-features-mini { list-style: none; padding: 0; margin: 15px 0 0 0; text-align: left; font-size: 0.82rem; color: var(--nm-gray-600); } .product-features-mini li { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; padding-left: 18px; position: relative; line-height: 1.2; } .product-features-mini li::before { content: '?'; position: absolute; left: 0; color: var(--nm-primary); font-weight: bold; }





.products-grid { grid-template-columns: repeat(3, 1fr) !important; } @media (max-width: 992px) { .products-grid { grid-template-columns: repeat(2, 1fr) !important; } } @media (max-width: 600px) { .products-grid { grid-template-columns: 1fr !important; } }


.product-card { height: auto !important; min-height: 500px; display: flex; flex-direction: column; } .product-features-mini { margin-top: 20px; flex-grow: 1; } .product-features-mini li { font-size: 0.78rem; margin-bottom: 4px; }


.product-card { flex-direction: column !important; align-items: stretch !important; padding: 0 !important; overflow: hidden; } .product-image { width: 100% !important; height: 260px !important; margin-right: 0 !important; background: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(0,0,0,0.05); } .product-image img { width: 100% !important; height: 100% !important; object-fit: contain !important; padding: 15px; } .product-content { padding: 25px !important; text-align: left !important; } .product-title { margin-bottom: 15px !important; font-size: 1.25rem !important; border-bottom: 2px solid var(--nm-primary); display: inline-block; padding-bottom: 5px; } .product-features-mini li { font-size: 0.85rem !important; margin-bottom: 8px !important; padding-left: 20px !important; }


/* About Slider Styles */.about-images { padding: 0 !important; height: 500px; position: relative; }.about-slider-container { width: 100%; height: 100%; position: relative; overflow: hidden; }.about-slides { width: 100%; height: 100%; position: relative; }.about-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: all 0.8s ease-in-out; display: flex; align-items: center; justify-content: center; background: #fff; }.about-slide.active { opacity: 1; visibility: visible; }.about-slide img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }.about-slider-nav { position: absolute; top: 50%; width: 100%; transform: translateY(-50%); display: flex; justify-content: space-between; padding: 0 15px; z-index: 10; pointer-events: none; }.about-arrow { width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.8); border: none; color: var(--nm-primary); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; pointer-events: auto; }.about-arrow:hover { background: var(--nm-primary); color: #fff; transform: scale(1.1); }.about-slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }.about-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(0,0,0,0.15); cursor: pointer; transition: all 0.3s ease; }.about-dot.active { width: 25px; border-radius: 10px; background: var(--nm-primary); }

