:root {
    /* Color Palette */
    --primary-teal: #2DD4BF;
    --primary-deep: #0F766E;
    --secondary-rose: #FB7185;
    --accent-coral: #FCA5A5;
    --neutral-100: #F8FAFC;
    --neutral-200: #E2E8F0;
    --neutral-300: #CBD5E1;
    --neutral-700: #334155;
    --neutral-900: #0F172A;
    --bg-gradient: linear-gradient(135deg, #F0FDFA 0%, #ECFEFF 50%, #FDF2F8 100%);
    
    /* Typography */
    --font-display: 'Crimson Pro', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Borders */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--neutral-700);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--neutral-100);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Text Animation Classes */
.animate-text {
    animation: fadeIn 1s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

.animate-scale {
    animation: scaleIn 0.6s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Stagger Animation for Lists */
.animate-stagger > * {
    animation: fadeIn 0.6s ease-out backwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Scroll Animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-deep);
}

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

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-deep);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-teal);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-deep);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--bg-gradient);
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 45%;  /* Reduced from 50% to accommodate larger image */
    padding-right: 2rem;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 .highlight {
    color: var(--primary-teal);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--neutral-700);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-bottom: 3rem;
}

.primary-btn {
    background: var(--primary-deep);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.3);
}

.secondary-btn {
    background: white;
    color: var(--primary-deep);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary-deep);
    transition: all 0.3s ease;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--neutral-700);
    font-size: 0.95rem;
}

/* Large floating hero image - covers approximately 50% of hero space */
.hero-image-large {
    position: absolute;
    right: 0;
    top: 0;  /* Changed from 50% to start at top */
    bottom: 0;  /* Stretch to bottom */
    width: 55%;  /* Increased from 50% for larger appearance */
    display: flex;
    align-items: flex-end;  /* Align image to bottom for natural positioning */
    justify-content: center;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-large img {
    width: 100%;
    height: 100%;  /* Fill the full height */
    max-height: none;  /* Remove height restriction */
    object-fit: cover;  /* Cover the space while maintaining aspect ratio */
    object-position: center bottom;  /* Position from bottom center */
    /* Remove all borders, shadows, and backgrounds to let transparent image blend seamlessly */
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
}

/* Keep old hero-image class for backward compatibility but hide it */
.hero-image {
    display: none;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--neutral-700);
}

/* Services Preview Section */
.services-preview {
    padding: var(--spacing-xl) 2rem;
    background: white;
}

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

.service-card {
    background: var(--neutral-100);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-teal);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-deep));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--neutral-700);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--neutral-700);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
}

.service-link {
    color: var(--primary-deep);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-large {
    display: inline-block;
    background: var(--primary-deep);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.3);
}

/* Products Preview */
.products-preview {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-gradient);
}

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

.category-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.category-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin: 1.5rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--neutral-700);
    margin: 0 1.5rem 1.5rem;
}

.category-link {
    display: block;
    background: var(--primary-teal);
    color: white;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.category-link:hover {
    background: var(--primary-deep);
}

/* Brands */
.brands {
    padding: var(--spacing-lg) 2rem;
    background: white;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brands-container h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.brands-subtitle {
    color: var(--neutral-700);
    margin-bottom: 2rem;
}

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

.brand-item {
    padding: 1.5rem;
    background: var(--neutral-100);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--neutral-700);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: var(--primary-teal);
    color: white;
    transform: scale(1.05);
}

/* Pricing */
.pricing {
    padding: var(--spacing-xl) 2rem;
    background: var(--neutral-100);
}

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

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-teal);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pricing-header {
    border-bottom: 2px solid var(--neutral-200);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--neutral-900);
}

.pricing-details {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--neutral-200);
}

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

.pricing-service {
    color: var(--neutral-700);
    font-weight: 500;
}

.pricing-rate {
    color: var(--primary-deep);
    font-weight: 700;
}

.pricing-cta {
    display: block;
    text-align: center;
    background: var(--primary-deep);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose {
    padding: var(--spacing-xl) 2rem;
    background: white;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--neutral-700);
}

/* Contact */
.contact {
    padding: var(--spacing-xl) 2rem;
    background: var(--bg-gradient);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--neutral-900);
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--neutral-900);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--neutral-700);
}

.contact-text a {
    color: var(--primary-deep);
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--neutral-900);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-teal);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-deep);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.3);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
}

.footer-section p,
.footer-section li {
    color: var(--neutral-300);
    margin-bottom: 0.75rem;
}

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

.footer-section a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: bounce 4s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Shopping Cart */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-rose);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-image-large {
        position: relative;
        width: 80%;
        height: auto;
        transform: none;
        margin: 2rem auto 0;
    }
    
    .hero-image-large img {
        max-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-image-large {
        width: 100%;
    }
    
    .hero-image-large img {
        max-height: 50vh;
    }
    
    .services-grid,
    .products-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

/* ==================== V1.3 ENHANCEMENTS ==================== */

/* Brand Badge on Product Cards */
.brand-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--primary-deep), var(--primary-teal));
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
    z-index: 2;
}

/* Product SKU */
.product-sku {
    font-size: 0.8rem;
    color: #94a3b8;
    font-family: 'Courier New', monospace;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Cart Item Brand */
.cart-item-brand {
    font-size: 0.75rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Service Option in Cart */
.service-option {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--neutral-300);
}

.service-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--neutral-700);
}

.service-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-teal);
}

.service-checkbox span {
    user-select: none;
}

.service-checkbox:hover {
    color: var(--primary-deep);
}

/* Cart Breakdown */
.cart-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breakdown-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.breakdown-line.service-line {
    color: var(--primary-teal);
    font-weight: 600;
}

.breakdown-line.total-line {
    border-top: 2px solid var(--primary-teal);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

.breakdown-line.total-line strong {
    color: var(--primary-deep);
}

/* Enhanced Product Card Image Container */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Card Hover Effects */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(15, 118, 110, 0.2);
}

.product-card:hover .brand-badge {
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.4);
}

/* ==================== V1.4 ADVANCED ANIMATIONS & VISUALS ==================== */

/* Animated Text Classes */
.animate-text {
    animation: fadeInUp 1s ease-out;
}

.animate-text-slow {
    animation: fadeInUp 1.5s ease-out;
}

.animate-slide-left {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideInRight 1s ease-out;
}

.animate-scale {
    animation: scaleIn 0.8s ease-out;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Stagger Animation for Lists */
.animate-stagger > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.animate-stagger > *:nth-child(2) { animation-delay: 0.2s; }
.animate-stagger > *:nth-child(3) { animation-delay: 0.3s; }
.animate-stagger > *:nth-child(4) { animation-delay: 0.4s; }
.animate-stagger > *:nth-child(5) { animation-delay: 0.5s; }
.animate-stagger > *:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Hero Section with Background */
.hero {
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.95), rgba(236, 254, 255, 0.95)), 
                url('../assets/img/healthcare-concept-clinic_BACKGROUND.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.05), rgba(251, 113, 133, 0.05));
    pointer-events: none;
}

.hero-content h1 {
    animation: fadeInLeft 1.2s ease-out;
}

.hero-content p {
    animation: fadeInLeft 1.4s ease-out;
}

.hero-buttons {
    animation: fadeInUp 1.6s ease-out;
}

.hero-stats {
    animation: fadeInUp 1.8s ease-out;
}

.hero-image {
    animation: fadeInRight 1.5s ease-out, float 4s ease-in-out 2s infinite;
}

/* Section Headers with Animation */
.section-header h2 {
    position: relative;
    display: inline-block;
    animation: fadeInUp 1s ease-out;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--secondary-rose));
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out 0.5s forwards;
}

@keyframes expandWidth {
    to {
        width: 100px;
    }
}

/* Service Cards with Hover Effects */
.service-card {
    animation: scaleIn 0.8s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(45, 212, 191, 0.3);
}

.service-card:hover .service-image img {
    transform: scale(1.1) rotate(2deg);
}

/* Button Animations */
.primary-btn, .secondary-btn, .cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.primary-btn:hover::before, .secondary-btn:hover::before {
    width: 300px;
    height: 300px;
}

.primary-btn:hover, .secondary-btn:hover, .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.4);
}

/* Product Cards Enhanced Animation */
.product-card {
    animation: fadeInUp 0.6s ease-out;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.25);
}

.product-card:hover .brand-badge {
    animation: pulse 0.6s ease;
}

.product-card:hover .add-to-cart-btn {
    animation: bounce 0.6s ease;
}

/* Background Patterns for Sections */
.services-preview {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9)),
                url('../assets/img/frame-medical-equipment_BACKGROUND.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.pricing {
    background: linear-gradient(135deg, rgba(240, 253, 250, 0.95), rgba(236, 254, 255, 0.95)),
                url('../assets/img/medical-equipment_BACKGROUND.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Text Shimmer Effect for Highlights */
.highlight {
    background: linear-gradient(90deg, var(--primary-teal), var(--secondary-rose), var(--primary-teal));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s linear infinite;
}

/* Stat Items Animation */
.stat-item {
    animation: scaleIn 1s ease-out;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
    animation: pulse 1s ease infinite;
}

.stat-item h3 {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading Animation for Images */
.service-image img, .product-image img {
    animation: fadeIn 0.8s ease-out;
}

/* Footer Animation */
.footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 118, 110, 0.98)),
                url('../assets/img/circles-squares-background-design_BACKGROUND.jpg');
    background-size: cover;
    background-position: center;
}

/* WhatsApp Float Button Enhanced */
.whatsapp-float {
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    animation: pulse 0.6s ease;
    transform: scale(1.2);
}

/* Cart Badge Animation */
.cart-badge {
    animation: scaleIn 0.4s ease-out;
}

.cart-badge[style*="display: flex"] {
    animation: bounce 0.6s ease;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.4s ease-out;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Gradient Background Animation for Hero */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced Contact Section */
#contact {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95), rgba(240, 253, 250, 0.95)),
                url('../assets/img/daily-tablets-with-pills_BACKGROUND.jpg');
    background-size: cover;
    background-position: center;
}

/* Service Link Hover Animation */
.service-link {
    position: relative;
    overflow: hidden;
}

.service-link::after {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-link:hover::after {
    right: 10px;
    opacity: 1;
}

/* Price Card Hover */
.price-card {
    transition: all 0.4s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 212, 191, 0.3);
}

.price-card:hover .price-amount {
    animation: pulse 0.8s ease;
}

/* ==================== V1.5 FLOATING DECORATIVE ELEMENTS ==================== */

/* Decorative Shape Containers */
.decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    pointer-events: none;
}

/* Individual Shape Animations */
.shape-1 {
    top: 10%;
    right: 8%;
    width: 80px;
    height: 80px;
    animation: float 4s ease-in-out infinite;
}

.shape-2 {
    top: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    animation: float 5s ease-in-out infinite 0.5s;
}

.shape-3 {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    animation: float 6s ease-in-out infinite 1s;
}

.shape-4 {
    bottom: 15%;
    left: 10%;
    width: 50px;
    height: 50px;
    animation: float 5.5s ease-in-out infinite 1.5s;
}

.shape-5 {
    top: 35%;
    right: 5%;
    width: 45px;
    height: 45px;
    animation: float 4.5s ease-in-out infinite 2s;
}

.shape-6 {
    bottom: 25%;
    right: 8%;
    width: 35px;
    height: 35px;
    animation: float 5s ease-in-out infinite 0.8s;
}

.shape-line-1 {
    top: 15%;
    left: 12%;
    width: 150px;
    height: 150px;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

.shape-line-2 {
    bottom: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.25;
    animation: rotate 25s linear infinite reverse;
}

/* Plus/Cross Shapes */
.shape-plus {
    color: var(--secondary-rose);
    font-size: 40px;
    font-weight: 300;
    line-height: 1;
}

.shape-plus-1 {
    top: 12%;
    left: 8%;
    animation: pulse 3s ease-in-out infinite;
}

.shape-plus-2 {
    top: 70%;
    right: 12%;
    animation: pulse 3.5s ease-in-out infinite 1s;
}

.shape-plus-3 {
    bottom: 20%;
    left: 15%;
    font-size: 30px;
    animation: pulse 4s ease-in-out infinite 1.5s;
}

.shape-plus-4 {
    top: 40%;
    left: 5%;
    font-size: 25px;
    color: var(--primary-teal);
    animation: pulse 3.2s ease-in-out infinite 0.5s;
}

/* Heart Shapes */
.shape-heart {
    background-color: var(--secondary-rose);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
}

.shape-heart::before {
    content: '♥';
    position: absolute;
    color: white;
    font-size: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Decorative Lines */
.decorative-line {
    position: absolute;
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.decorative-line-1 {
    top: 25%;
    right: 20%;
    width: 120px;
}

.decorative-line-2 {
    bottom: 30%;
    left: 18%;
    width: 100px;
    animation-delay: 2s;
}

/* Wavy Lines Background */
.wavy-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.wavy-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section with decorative elements */
.section-with-shapes {
    position: relative;
    overflow: hidden;
}

/* Mobile responsiveness for shapes */
@media (max-width: 768px) {
    .shape-1, .shape-2, .shape-3, .shape-4, .shape-5, .shape-6 {
        width: 40px !important;
        height: 40px !important;
    }
    
    .shape-line-1, .shape-line-2 {
        width: 80px !important;
        height: 80px !important;
    }
    
    .shape-plus {
        font-size: 25px !important;
    }
    
    .decorative-line-1, .decorative-line-2 {
        width: 60px !important;
    }
}

/* Specific section enhancements */
.hero {
    position: relative;
}

.services-preview,
.pricing,
#contact {
    position: relative;
}

/* Z-index management for layering */
.hero-content,
.service-card,
.product-card,
.price-card {
    position: relative;
    z-index: 2;
}

/* ==================== V1.5 FLOATING DECORATIVE SHAPES ==================== */

/* Floating Shapes Container */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.hero .floating-shapes {
    z-index: 1;
}

/* Individual Shape Styles */
.shape {
    position: absolute;
    pointer-events: none;
}

/* Heart Blue Shape - Top Right */
.shape-heart-1 {
    top: 15%;
    right: 8%;
    width: 80px;
    height: 80px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
}

/* Heart Blue Shape - Bottom Left Services */
.shape-heart-2 {
    bottom: 10%;
    left: 5%;
    width: 60px;
    height: 60px;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Pink Lines - Top Left */
.shape-lines-pink-1 {
    top: 20%;
    left: 10%;
    width: 50px;
    height: 50px;
    animation: float 3.5s ease-in-out infinite, rotate 20s linear infinite;
    animation-delay: 0.5s;
}

/* Pink Lines - Right Side */
.shape-lines-pink-2 {
    top: 60%;
    right: 15%;
    width: 45px;
    height: 45px;
    animation: float 4.5s ease-in-out infinite, rotate 15s linear infinite;
    animation-delay: 2s;
}

/* Dark Lines - Middle Right */
.shape-lines-dark-1 {
    top: 45%;
    right: 5%;
    width: 60px;
    height: 60px;
    animation: float 5s ease-in-out infinite, rotate 25s linear infinite reverse;
    animation-delay: 1.5s;
}

/* Dark Lines - Bottom Right */
.shape-lines-dark-2 {
    bottom: 15%;
    right: 20%;
    width: 55px;
    height: 55px;
    animation: float 4s ease-in-out infinite, rotate 18s linear infinite;
    animation-delay: 0.8s;
}

/* Plus/Cross Shapes */
.shape-plus {
    font-size: 40px;
    color: var(--secondary-rose);
    font-weight: 300;
    opacity: 0.6;
}

.shape-plus-1 {
    top: 25%;
    left: 15%;
    animation: float 4s ease-in-out infinite, pulse 3s ease-in-out infinite;
    animation-delay: 0s;
}

.shape-plus-2 {
    top: 10%;
    right: 25%;
    animation: float 5s ease-in-out infinite, pulse 4s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-plus-3 {
    bottom: 20%;
    left: 20%;
    animation: float 4.5s ease-in-out infinite, pulse 3.5s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-plus-4 {
    bottom: 30%;
    right: 10%;
    animation: float 3.5s ease-in-out infinite, pulse 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Cyan/Turquoise Plus Shapes */
.shape-plus-cyan {
    color: var(--primary-teal);
}

.shape-plus-cyan-1 {
    top: 50%;
    left: 8%;
    animation: float 5s ease-in-out infinite, pulse 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.shape-plus-cyan-2 {
    top: 70%;
    right: 12%;
    animation: float 4s ease-in-out infinite, pulse 3.5s ease-in-out infinite;
    animation-delay: 0.7s;
}

/* Wave Lines Background - Subtle */
.wave-lines-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../assets/img/bg-wave-lines.png') no-repeat right center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

/* Section-specific Shapes */
.services-preview .floating-shapes {
    position: absolute;
    z-index: 1;
}

.pricing .floating-shapes {
    position: absolute;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .shape-heart-1, .shape-heart-2 {
        width: 60px;
        height: 60px;
    }
    
    .shape-lines-pink-1, .shape-lines-pink-2,
    .shape-lines-dark-1, .shape-lines-dark-2 {
        width: 40px;
        height: 40px;
    }
    
    .shape-plus {
        font-size: 30px;
    }
    
    /* Hide some shapes on mobile for cleaner look */
    .shape-plus-3, .shape-plus-4,
    .shape-lines-dark-2, .shape-heart-2 {
        display: none;
    }
}

@media (max-width: 640px) {
    .shape-heart-1 {
        width: 50px;
        height: 50px;
        right: 5%;
    }
    
    .shape-lines-pink-1,
    .shape-lines-dark-1 {
        width: 35px;
        height: 35px;
    }
    
    .shape-plus {
        font-size: 25px;
    }
    
    /* More aggressive hiding on small screens */
    .shape-plus-2, .shape-plus-cyan-2,
    .shape-lines-pink-2 {
        display: none;
    }
}

/* Hover Interaction (Optional Enhancement) */
.shape:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Performance Optimization */
.shape, .floating-shapes {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ==================== ABOUT SECTION STYLES ==================== */
.about-section {
    padding: var(--spacing-xl) 2rem;
    background: white;
    position: relative;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--neutral-700);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.about-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--neutral-700);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-teal);
    font-weight: bold;
    font-size: 1.3rem;
}

.about-features li strong {
    color: var(--neutral-900);
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin: 0;
}

.badge-text p {
    margin: 0;
    color: var(--neutral-700);
    font-size: 0.95rem;
}

/* ==================== IMPROVED MOBILE RESPONSIVENESS ==================== */

/* Tablet and Mobile Navigation */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .cta-button {
        display: block;
        text-align: center;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 5rem 1.5rem 3rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.85rem;
    }
    
    .hero-image {
        order: -1;
        max-width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .about-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
    
    .badge-text h4 {
        font-size: 1.2rem;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Pricing Grid Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Contact Section Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.05rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .primary-btn, .secondary-btn {
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: white;
        border-radius: var(--radius-sm);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-badge {
        position: static;
        margin-top: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero {
        padding: 4.5rem 1rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Landscape Orientation Fixes */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 5rem 1.5rem 2rem;
    }
    
    .hero-image img {
        max-height: 300px;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link::after {
        display: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .service-card:active {
        transform: translateY(-4px);
    }
    
    .primary-btn:hover,
    .secondary-btn:hover {
        transform: none;
    }
    
    .primary-btn:active,
    .secondary-btn:active {
        transform: translateY(-2px);
    }
}
