:root {
    --primary: #059669; /* Emerald Green */
    --primary-dark: #047857;
    --secondary: #10b981; /* Mint Green */
    --accent: #059669;
    --background: #ffffff; /* Clean White for Pharma site */
    --surface: #f4fbf7; /* Premium light minty-white surface for container backgrounds */
    --text: #0f172a; /* Dark slate for high readability */
    --text-light: #475569;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(5, 150, 105, 0.1);
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pulse-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    position: relative;
}

.pulse-icon i {
    width: 40px;
    height: 40px;
    z-index: 2;
}

.pulse-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: medicalPulse 2s linear infinite;
}

@keyframes medicalPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.preloader-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: var(--primary);
    animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Entrance Animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
}

.loaded .hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.loaded .hero-content .badge { animation-delay: 0.1s; }
.loaded .hero-content h1 { animation-delay: 0.3s; }
.loaded .hero-content p { animation-delay: 0.5s; }
.loaded .hero-content .hero-btns { animation-delay: 0.7s; }

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

/* Background Gradients for Light Theme */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(5, 150, 105, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(5, 150, 105, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 0; /* Increased from 1.5rem */
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0; /* Increased from 1rem */
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem; /* Increased gap between logo and text */
    text-decoration: none;
    color: var(--primary);
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    white-space: nowrap;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    border-radius: 12px;
    transition: var(--transition);
}

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

/* Fallback: if logo-img is present but fails to load, the alt text will show. 
   If you want to use the text logo instead when image is missing: */
.logo-img[src="assets/img/logo.jpeg"]:not([alt=""]) {
    /* This ensures that if the image is missing, it doesn't leave a huge gap */
    max-width: 200px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section Light */
.hero {
    position: relative;
    background-image: linear-gradient(to right, rgba(244, 251, 247, 0.98) 35%, rgba(244, 251, 247, 0.75) 55%, rgba(244, 251, 247, 0.1) 80%, rgba(244, 251, 247, 0) 100%), url('assets/img/hero-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 12rem 0 8rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    display: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    color: var(--text);
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(5, 150, 105, 0.1);
    padding: 3.5rem;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(5, 150, 105, 0.1);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.floating-icons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow);
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.card-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

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

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

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 10rem 0;
    background: var(--surface);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--background), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.cert-item {
    background: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(5, 150, 105, 0.1);
    transition: var(--transition);
}

.cert-item:hover {
    background: rgba(5, 150, 105, 0.05);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.about-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pillar-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid rgba(5, 150, 105, 0.05);
}

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

/* Services */
.services {
    padding: 10rem 0;
    background: var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 3.5rem 3rem;
    border-radius: 32px;
    transition: var(--transition);
    border: 1px solid rgba(5, 150, 105, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.03;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(5, 150, 105, 0.1);
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-card i {
    color: var(--primary);
    width: 50px;
    height: 50px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(5, 150, 105, 0.2));
}

/* Product Grid Section */
.product-grid-section {
    padding: 12rem 0; /* Increased from default */
    background: var(--surface);
    position: relative;
}

/* Category Toggle */
.category-toggle {
    display: inline-flex;
    background: #f1f5f9;
    padding: 0.5rem;
    border-radius: 50px;
    position: relative;
    margin-top: 4rem; /* Increased from 2rem */
    border: 1px solid rgba(5, 150, 105, 0.1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.toggle-btn {
    padding: 0.8rem 2rem;
    border: none;
    background: transparent;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    font-family: inherit;
    font-size: 1rem;
}

.toggle-btn.active {
    color: var(--white);
}

.toggle-slider {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    height: calc(100% - 1rem);
    width: calc(50% - 0.5rem);
    background: var(--primary);
    border-radius: 50px;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    pointer-events: none;
}

/* Category Grid Visibility */
.category-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem; /* Increased from 2rem for more space between cards */
    margin-top: 5rem; /* Increased from 3rem for more space from toggle */
}

.category-grid.active {
    display: grid;
    animation: slideInUp 0.6s ease forwards;
}

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

/* Magical Cards */
.magical-card {
    position: relative;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 32px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(5, 150, 105, 0.05);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
}

.magical-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(5, 150, 105, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.magical-card:hover .card-glow {
    opacity: 1;
}

.magical-card .cat-icon-container {
    width: 80px;
    height: 80px;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: all 0.5s;
}

.magical-card .cat-icon-container i {
    width: 40px;
    height: 40px;
}

.magical-card:hover .cat-icon-container {
    background: var(--primary);
    color: var(--white);
    transform: translateZ(30px) scale(1.1);
    animation: floatIcon 3s ease-in-out infinite;
}

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

.magical-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: transform 0.5s;
}

.magical-card:hover h3 {
    transform: translateZ(20px);
}

.magical-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    transition: transform 0.5s;
}

.magical-card:hover p {
    transform: translateZ(10px);
}

.magical-card .pack-size {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transition: transform 0.5s;
}

.magical-card:hover .pack-size {
    transform: translateZ(12px);
}

.composition-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(5, 150, 105, 0.06);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(5, 150, 105, 0.1);
    white-space: normal;
    word-break: break-word;
}

.magical-card:hover .composition-badge {
    background: var(--primary);
    color: var(--white);
    transform: translateZ(18px);
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.25);
    border-color: var(--primary);
}

.magical-card .details {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
}


/* Markets */
.markets {
    padding: 10rem 0;
    background: #0f172a;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

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

.markets .section-header p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.market-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.market-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.market-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.market-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.world-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.market-card h3 {
    font-size: 1.75rem;
    margin: 0;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.market-card p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.market-list {
    margin: 0 0 2rem 0;
    font-size: 0.95rem;
    color: #94a3b8;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.market-certs {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.market-certs span {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Compliance */
.compliance {
    padding: 6rem 0;
    background: #0f172a;
}

.compliance-box {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: var(--white);
    border-radius: 40px;
    padding: 5rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
    position: relative;
    overflow: hidden;
}

.compliance-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.compliance-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.compliance-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.compliance-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 0;
}

.compliance-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-list li i {
    color: #fff;
    width: 24px;
    height: 24px;
}

.compliance-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 24px;
    text-align: center;
    font-weight: 800;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: 10rem 0;
    background: var(--background);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--surface);
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

/* FAQ */
.faq {
    padding: 10rem 0;
    background: var(--surface);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background);
    margin-bottom: 1.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(5, 150, 105, 0.05);
}

.faq-question {
    padding: 2rem 2.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1.5rem;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact */
.contact {
    padding: 10rem 0;
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-items {
    margin-top: 3.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start; /* Icon stays at the top of multi-line text */
    text-align: left;
}

.info-item i {
    width: 48px; /* Slightly smaller icon */
    height: 48px;
    background: rgba(5, 150, 105, 0.05); /* Light blue background */
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.info-item div strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text); /* Dark color so it's visible on white background */
}

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

.contact-form {
    background: var(--surface);
    padding: 4.5rem;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.75rem;
    background: var(--white);
    border: 1px solid rgba(5, 150, 105, 0.15);
    border-radius: 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    background: var(--white);
}

.w-full {
    width: 100%;
}

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

.social-links a {
    color: var(--text-light);
    transition: var(--transition);
}

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

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
}

.close-menu {
    cursor: pointer;
    color: var(--text);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.75rem 0; /* Reduced padding for cleaner mobile header */
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center; /* Ensures logo and hamburger are perfectly aligned */
    }
    
    .navbar .logo-text {
        display: none; 
    }

    .logo-img {
        height: 45px; /* Slightly smaller for mobile header */
    }
    
    .hero {
        background-image: linear-gradient(to bottom, rgba(244, 251, 247, 0.96) 0%, rgba(244, 251, 247, 0.9) 100%), url('assets/img/hero-bg.png');
        background-position: center;
        padding: 8rem 0 4rem; /* reduced padding on mobile */
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        order: 1; /* Content (Headline) now comes first */
    }
    
    .hero-image {
        order: 2; /* Image (Card) now comes second */
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-grid, .contact-grid, .compliance-box {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 5rem 0;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .info-item i {
        margin: 0 auto;
    }

    .hero {
        padding: 6rem 0 3rem; /* Significantly reduced top padding for mobile */
    }
    
    .about, .services, .product-grid-section, .markets, .testimonials, .faq, .contact {
        padding: 5rem 0;
    }
    
    .compliance-box {
        padding: 3rem 1.5rem;
    }
    
    .compliance-list {
        grid-template-columns: 1fr;
    }
    
    .compliance-badges {
        grid-template-columns: 1fr 1fr;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .category-toggle {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
    }
    
    .toggle-slider {
        display: none; /* Hide slider on mobile for vertical list */
    }
    
    .toggle-btn {
        width: 100%;
        border-radius: 15px;
        margin-bottom: 0.5rem;
    }
    
    .toggle-btn.active {
        background: var(--primary);
    }
    
    .contact-form {
        padding: 2.5rem 1.5rem;
    }

    /* Responsive paddings, font sizes, and layout structures */
    .glass-card {
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }
    
    .floating-icons {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }
    
    .card-stats {
        gap: 1.5rem;
    }
    
    .stat-num {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 2.25rem 1.5rem;
    }
    
    .service-card i {
        margin-bottom: 1.5rem;
    }
    
    .market-card {
        padding: 2.25rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        padding-top: 1rem;
    }
    
    .magical-card {
        padding: 2rem 1.5rem;
    }
    
    .about-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .compliance-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .compliance-badges {
        grid-template-columns: 1fr;
    }
    
    .navbar .logo-text {
        display: none; /* Hide text on very small screens to save space */
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(100px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.toast-notification.show {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.toast-icon {
    color: #10b981; /* Success Green */
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon.error {
    color: #ef4444; /* Error Red */
}

.toast-message {
    font-weight: 600;
    font-size: 0.95rem;
}
