/* ===================================
   ROOT VARIABLES & CORE DESIGN
   =================================== */

:root {
    /* Brand Color Palette - BALA PHARMACO INC. */
    --primary-color: #2da44e;
    --primary-dark: #22863a;
    --primary-light: #eafbef;
    --secondary-color: #004a99;
    --accent-teal: #2a9d8f;
    --accent-blue: #0077be;
    --accent-golden: #ffd700;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-secondary: linear-gradient(135deg, #004a99 0%, #0077be 100%);
    --gradient-primary: linear-gradient(135deg, #2da44e 0%, #22863a 100%);
    --gradient-golden: linear-gradient(135deg, #ffb700 0%, #ffcc00 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Baskervville', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

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

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* TOP BAR */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.top-bar-item a:hover {
    opacity: 0.8;
}


.separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.nav-mobile-contact {
    display: none;
}

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 46px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(0, 74, 153, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    object-fit: contain;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.75rem 0.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-normal);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: var(--primary-light);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link.active {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.3);
}

.nav-link.active::before {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(45, 164, 78, 0.05);
    border-radius: var(--radius-md);
    border: 2px solid rgba(45, 164, 78, 0.1);
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(45, 164, 78, 0.1);
    border-color: rgba(45, 164, 78, 0.2);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.menu-toggle:hover span {
    background: var(--primary-color);
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1100;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 25px;
    color: var(--primary-light);
}

/* For long export list */
.export-dropdown {
    max-height: 600px;
    overflow-y: auto;
}

.export-dropdown::-webkit-scrollbar {
    width: 6px;
}

.export-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.export-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.nav-item.dropdown .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* HERO SLIDER SECTION */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    z-index: 1;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto;
    transition: opacity 1s ease-in-out;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 2rem;
}

.hero-slide-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
    font-family: var(--font-secondary);
}

.hero-slide.active .hero-slide-title {
    animation: slideInUp 0.8s ease-out forwards;
}

.hero-slide-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.hero-slide.active .hero-slide-subtitle {
    animation: slideInUp 0.8s ease-out 0.2s forwards;
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.4s ease;
    opacity: 0;
}

.hero-slide.active .hero-slide-btn {
    animation: slideInUp 0.8s ease-out 0.4s forwards;
}

.hero-slide-btn:hover {
    background: var(--white);
    color: var(--black);
}

.hero-slide-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.hero-slide-btn:hover span.arrow {
    transform: translateX(5px);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-prev,
.hero-slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(45, 164, 78, 0.4);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(45, 164, 78, 0.5);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

/* SECTIONS & CONTAINER */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

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

.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--off-white);
    border: 2px dashed var(--primary-color);
    border-radius: 50px;
}

.section-subtitle img {
    height: 24px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.7rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(45, 164, 78, 0.1);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 45px;
    height: 45px;
    background: rgba(45, 164, 78, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon-wrapper {
    background: var(--primary-color);
}

.feature-icon-wrapper i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper i {
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.05rem;
    color: var(--black);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    align-self: flex-start;
}

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

.about-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

/* Modern About Section (Internal Pages) */
.about-modern-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-modern-visual {
    position: relative;
}

.main-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.modern-about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.main-image-wrapper:hover .modern-about-img {
    transform: scale(1.05);
}


.modern-feature-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modern-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.modern-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--off-white);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.modern-feature-item:hover .modern-feature-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(10deg);
}

.modern-feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-family: var(--font-secondary);
}

.modern-feature-text p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

/* Strategic Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pillar-card {
    position: relative;
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border: 1px solid var(--light-gray);
}

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

.pillar-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    color: rgba(45, 164, 78, 0.03);
    z-index: -1;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-bg-icon {
    color: rgba(45, 164, 78, 0.06);
    transform: scale(1.1) rotate(-10deg);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: var(--off-white);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.pillar-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: var(--font-secondary);
}

.pillar-content p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}


/* ===================================
   PRODUCTS SHOWCASE SECTION
   =================================== */

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Quality Control Section (Dark) */
.qc-section-dark {
    background: #0a1118;
    /* Very deep dark blue/black */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.qc-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(45, 164, 78, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(45, 164, 78, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.text-white {
    color: var(--white) !important;
}

.text-light {
    color: #e9ecef !important;
}

.opacity-80 {
    opacity: 0.8;
}

.qc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.qc-card {
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.qc-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.qc-icon {
    width: 70px;
    height: 70px;
    background: rgba(45, 164, 78, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.qc-card:hover .qc-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.qc-info h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
}

.qc-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}


.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    text-decoration: none;
    transition: transform 0.4s ease;
}

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

.showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.showcase-card:hover .showcase-bg {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.showcase-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.showcase-content h3 {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    font-family: var(--font-primary);
    letter-spacing: -0.5px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.6rem;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid var(--white);
    transition: all 0.3s ease;
}

.showcase-btn-yellow {
    border-color: #FFB300;
    color: #FFB300;
}

.showcase-card:hover .showcase-btn {
    background: var(--white);
    color: var(--black);
    transform: translateX(5px);
}

.showcase-card:hover .showcase-btn-yellow {
    background: #FFB300;
    color: var(--black);
}

/* FOOTER */
.footer-new {
    background: var(--dark-gray);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.8) 0%, rgba(17, 17, 17, 0.95) 100%), url('assets/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===================================
   MANUFACTURING CAPABILITIES
   =================================== */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.capability-card {
    position: relative;
    background: var(--white);
    padding: 3rem 2rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

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

.capability-step {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(45, 164, 78, 0.05);
    line-height: 1;
    z-index: 1;
    transition: all 0.4s ease;
}

.capability-card:hover .capability-step {
    color: rgba(45, 164, 78, 0.1);
    transform: scale(1.1) translate(-10px, 10px);
}

.capability-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.capability-card:hover .capability-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.capability-content {
    position: relative;
    z-index: 2;
}

.capability-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.capability-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo-img {
    height: 130px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}


.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-links-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 0.8rem;
}

.footer-links-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links-col ul li a i {
    font-size: 0.7rem;
    margin-right: 10px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.footer-links-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links-col ul li a:hover i {
    transform: translateX(3px);
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 1.2rem !important;
}

.contact-icon-svg {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-credits {
    text-align: center;
    padding-bottom: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-credits p {
    font-size: 0.9rem;
}

.footer-credits span {
    color: var(--primary-light);
    font-weight: 600;
}

/* ANIMATIONS */
@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

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

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

/* STATS COUNTER */
/* ===================================
   TEXT TICKER / MARQUEE
   =================================== */
.text-ticker {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
}

.ticker-content span {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 40px;
    font-family: var(--font-secondary);
}

.ticker-content .dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    margin: 0;
    opacity: 0.5;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.text-ticker:hover .ticker-track {
    animation-play-state: paused;
}

/* ===================================
   INFINITE PRODUCT MARQUEE
   =================================== */
.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.marquee-row {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    padding: 15px 0;
}

.marquee-group {
    display: flex;
    gap: 30px;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-group img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-group img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 30px));
    }
}

.marquee-row:hover .marquee-group {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-group img {
        width: 250px;
        height: 250px;
    }

    .marquee-container {
        gap: 20px;
    }

    .marquee-group {
        gap: 20px;
    }
}

.counter-section {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.counter-item {
    position: relative;
    padding: 1rem;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.counter-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
    line-height: 1;
}

.counter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }

    .counter-item:nth-child(even)::after {
        display: none;
    }
}

/* WHATSAPP & SCROLL TOP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.call-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-golden);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

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

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 20px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        top: 0 !important;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: var(--primary-color);
        border-color: var(--primary-color);
    }

    .menu-toggle.active span {
        background: var(--white);
    }

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

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

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

    .nav-menu {
        position: fixed;
        top: 110px;
        right: -100%;
        width: 85%;
        height: calc(100vh - 110px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--dark-gray);
        font-size: 1rem;
        font-weight: 500;
    }

    .mobile-contact-item i {
        color: var(--primary-color);
        font-size: 1.1rem;
        width: 25px;
        text-align: center;
    }

    .mobile-contact-item a {
        color: var(--dark-gray);
        text-decoration: none;
    }


    .nav-item {
        width: 100%;
    }

    .hero-slide-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-slide-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .hero-slide-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-slider-nav {
        display: none;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-visual {
        min-height: 300px;
    }

    .about-main-image {
        min-height: auto;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .products-showcase-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Dropdown adjustment */
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 20px !important;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    .nav-item.dropdown.active .dropdown-menu {
        height: auto;
        padding-bottom: 10px !important;
        padding-top: 10px !important;
    }

    .nav-item.dropdown.active .fa-chevron-down {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        color: var(--dark-gray) !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        border-left: 2px solid transparent;
        border-bottom: none !important;
    }

    .dropdown-menu li a:hover,
    .dropdown-menu li a:active {
        color: var(--primary-color) !important;
        background: rgba(45, 164, 78, 0.05) !important;
        border-left: 2px solid var(--primary-color);
    }

    .export-dropdown {
        max-height: none !important;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    .showcase-card {
        height: 320px;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .showcase-content h3 {
        font-size: 1.8rem;
    }

    .showcase-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .capability-card {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .capability-step {
        font-size: 4rem;
    }
}

/* UTILITIES */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-3rem {
    margin-bottom: 3rem;
}

.justify-center {
    justify-content: center;
}

.section-header {
    display: flex;
    flex-direction: column;
}

.section-header.text-center {
    align-items: center;
}

/* ============================================
   GLOBAL EXPORT SECTION — 2-COLUMN LAYOUT
   ============================================ */
.global-export-section {
    background: #040c14;
    position: relative;
    overflow: hidden;
}

/* 2-column grid */
.ge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 620px;
}

/* --- Left: Content Column --- */
.ge-content {
    padding-right: 60px;
}

.ge-title {
    color: #ffffff !important;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

.ge-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 440px;
}

/* Stats row */
.ge-stats-row {
    display: flex;
    gap: 2rem;
}

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

.ge-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
    font-family: var(--font-secondary);
}

.ge-lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

/* --- Right: Globe Column --- */
.ge-globe-col {
    position: relative;
}

.globe-canvas-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
}

#globeCanvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 992px) {
    .ge-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ge-content {
        padding-right: 0;
        order: 1;
    }



    .ge-globe-col {
        order: 2;
    }

    .globe-canvas-wrapper {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .ge-num {
        font-size: 1.9rem;
    }

    .ge-stats-row {
        gap: 1.5rem;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-wrapper {
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    /* Hide overflow from the track */
    padding: 20px 0 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-slide {
    flex: 0 0 100%;
    /* Default 100% width, will adjust in grid or via JS width calc */
    width: 100%;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide.active .testimonial-card {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(45, 164, 78, 0.1);
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.star-rating i {
    font-size: 20px;
    color: #ffc107;
    /* Gold stars */
}

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

.testimonial-author {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin: 0 0 8px 0;
    font-family: var(--font-secondary);
}

.author-position {
    font-size: 14px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 74, 153, 0.82) 0%, rgba(0, 51, 102, 0.82) 100%), url('assets/cta-img.jpeg');
    background-size: cover;
    background-position: center;
    padding: 80px;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: var(--white);
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-secondary);
}

.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 250px;
}

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

.cta-btn-outline {
    background: transparent;
    border: 2px solid var(--white);
}

.cta-btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .testimonial-slide {
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .cta-wrapper {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
        text-align: center;
    }

    .cta-action {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .testimonial-text {
        font-size: 17px;
    }

    .cta-wrapper {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

/* ===================================
   CONTACT PAGE & FORM STYLES
   =================================== */
.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('assets/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(4, 12, 20, 0.9) 0%, rgba(0, 74, 153, 0.4) 100%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-family: var(--font-secondary);
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(15px);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Info Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}



/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-form-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-secondary);
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
    text-align: left;
}

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

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 164, 78, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

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

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 164, 78, 0.2);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: var(--black);
    color: var(--white);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qc-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .page-hero {
        padding: 150px 0 80px;
    }

    .qc-card {
        padding: 2rem;
        gap: 1.5rem;
        flex-direction: column;
    }

    .qc-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Moving Text & Facilities Showcase (Exact Hotel Safari Logic) */
.facilities-showcase {
    position: relative;
    padding: 100px 0 150px 0;
    background: var(--white);
    overflow: hidden;
}

.moving-text-container {
    position: absolute;
    bottom: -65px;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.04;
    user-select: none;
}

.moving-text-track {
    display: flex;
    white-space: nowrap;
    animation: moveText 10s linear infinite;
}

.moving-text-track span {
    font-size: 8rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 50px;
    color: var(--black);
}

@keyframes moveText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 2;
}

.facility-card-new {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.facility-card-new:last-child {
    border-right: none;
}

.facility-card-new:hover {
    background: rgba(45, 164, 78, 0.02);
    transform: translateY(-5px);
}

.facility-icon-new {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.facility-card-new:hover .facility-icon-new {
    opacity: 1;
    transform: scale(1.1);
}

.facility-card-new h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: var(--font-secondary);
}

.facility-card-new p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-card-new:nth-child(even) {
        border-right: none;
    }

    .facility-card-new {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .moving-text-track span {
        font-size: 5rem;
    }

    .moving-text-container {
        bottom: -36px;
    }
}

@media (max-width: 768px) {
    .facility-grid {
        grid-template-columns: 1fr;
    }

    .facility-card-new {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .facility-card-new:last-child {
        border-bottom: none;
    }
}

/* ===================================
   CERTIFICATE PAGE STYLES
   =================================== */
.certificate-showcase {
    background-color: var(--white);
    padding: 80px 0;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.certificate-card {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    align-items: center;
    text-align: center;
}

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

.cert-thumbnail {
    width: 100%;
    max-width: 180px;
    height: 250px;
    margin-bottom: 25px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.cert-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.certificate-card:hover .cert-thumbnail {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(45, 164, 78, 0.15);
}

.certificate-card:hover .cert-thumbnail img {
    transform: scale(1.08);
}

.cert-info h3 {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}


.cert-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--off-white);
    color: var(--dark-gray);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cert-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.cert-btn i {
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certificate-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }

    .certificate-card {
        padding: 30px 20px;
    }
}

/* ===================================
   PRODUCT PAGE STYLES
   =================================== */
.product-page-section {
    background-color: var(--white);
    padding: 80px 0;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.product-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-list-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-right: 5px;
}


.product-item-arrow {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    border: 1px solid var(--primary-color);
}

.product-list-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(45, 164, 78, 0.1);
}

.product-list-item:hover span {
    color: var(--primary-color);
}

.product-list-item:hover .product-item-arrow {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(-45deg);
}

@media (max-width: 1200px) {
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .product-list-item {
        padding: 18px 20px;
    }
}

/* ===================================
   PRODUCT SHOWCASE STYLES
   =================================== */
.product-showcase-section {
    background-color: var(--off-white);
    padding: 80px 0;
}

.product-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 164, 78, 0.12);
    border-color: var(--primary-color);
}

.product-img {
    height: 250px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.product-composition {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
    min-height: 2.7rem;
    /* Maintain consistent height for 2 lines */
}

.product-meta {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.product-packing {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--primary-light);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-btn {
    margin-top: auto;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

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

@media (max-width: 1200px) {
    .product-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===================================
   FORM CONSENT STYLES
   =================================== */
.form-consent {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}

.consent-checkbox input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.consent-checkbox label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
    text-align: left;
}

.consent-checkbox.error label {
    color: #e74c3c;
}

.consent-checkbox .error-message {
    position: absolute;
    bottom: -15px;
    left: 30px;
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
    font-weight: 500;
}

.consent-checkbox.error .error-message {
    display: block;
}

/* ===================================
   BROCHURE STICKY BUTTON
   =================================== */
.brochure-sticky-btn {
    position: fixed;
    left: 0;
    top: 40%;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: left top;
    background: #f19e1f;
    /* Premium orange */
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .brochure-sticky-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* ===================================
   CONTACT POPUP STYLES
   =================================== */
.contact-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-popup.show {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: popupFadeIn 0.5s ease forwards;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: var(--primary-color);
}

.popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.popup-header h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 10px;
}

.popup-header p {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

@media (max-width: 576px) {
    .popup-content {
        padding: 30px 20px;
    }

    .popup-header h3 {
        font-size: 1.5rem;
    }
}