/* ====================================
   RESPONSIVE TYPOGRAPHY VARIABLES
   ==================================== */
:root {
    /* Responsive typography sizes */
    --h1-size-xl: 4.5rem;
    --h1-size-lg: 3.5rem;
    --h1-size-md: 2.5rem;
    --h1-size-sm: 2rem;
    --h1-size-xs: 1.8rem;
    
    --h2-size-xl: 3.5rem;
    --h2-size-lg: 2.8rem;
    --h2-size-md: 2rem;
    --h2-size-sm: 1.75rem;
    --h2-size-xs: 1.5rem;
    
    --h3-size-xl: 2.5rem;
    --h3-size-lg: 2rem;
    --h3-size-md: 1.5rem;
    --h3-size-sm: 1.25rem;
    --h3-size-xs: 1.1rem;
    
    --body-size-xl: 1.2rem;
    --body-size-lg: 1.1rem;
    --body-size-md: 1rem;
    --body-size-sm: 0.9rem;
    --body-size-xs: 0.85rem;
}

/* ====================================
   LOADING SCREEN
   ==================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Highest z-index to ensure it's above everything */
    transition: opacity 0.8s ease, visibility 0.8s ease;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(228, 72, 126, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.03) 0%, transparent 50%);
    animation: background-shift 8s ease-in-out infinite;
}

@keyframes background-shift {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(1deg);
    }
}

/* Floating particles */
.loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(228, 72, 126, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(243, 156, 18, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(228, 72, 126, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(243, 156, 18, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(228, 72, 126, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particle-float 20s linear infinite;
    opacity: 0.6;
}

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

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-screen.removed {
    display: none !important;
}

/* Hide main content during loading */
body.loading {
    overflow: hidden;
}

body.loading #header,
body.loading #main-content,
body.loading main,
body.loading .hero,
body.loading .key-services,
body.loading .about,
body.loading .contact,
body.loading footer {
    display: none !important;
}

/* Ensure main content is visible after loading */
body:not(.loading) #header,
body:not(.loading) #main-content,
body:not(.loading) main,
body:not(.loading) .hero,
body:not(.loading) .key-services,
body:not(.loading) .about,
body:not(.loading) .contact,
body:not(.loading) footer {
    display: block !important;
}



.loader {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.loader-circle {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    animation: loader-bounce 1.4s ease-in-out infinite both;
}

.loader-circle.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -0.32s;
}

.loader-circle.circle-2 {
    top: 20px;
    right: 20px;
    animation-delay: -0.16s;
}

.loader-circle.circle-3 {
    bottom: 20px;
    right: 20px;
    animation-delay: 0s;
}

.loader-circle.circle-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -0.48s;
}

.loader-circle.circle-5 {
    bottom: 20px;
    left: 20px;
    animation-delay: -0.32s;
}

@keyframes loader-bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loader-logo {
    animation: logo-float 2s ease-in-out infinite;
    position: relative;
    margin-bottom: 30px;
}

.loader-logo img {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(228, 72, 126, 0.3));
}

.loader-logo::before, 
.loader-logo::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 3px;
    background: linear-gradient(to right, transparent, #ff6b35, #f39c12, transparent);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.loader-logo::before {
    top: -25px;
    animation: line-glow 2s ease-in-out infinite;
}

.loader-logo::after {
    bottom: -25px;
    animation: line-glow 2s ease-in-out infinite reverse;
}

.loading-text {
    font-family: var(--heading-font);
    color: #2c3e50;
    margin-top: 25px;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    max-width: 400px;
    line-height: 1.6;
    animation: text-fade-in 2s ease-in-out infinite;
    background: linear-gradient(135deg, #ff6b35, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes text-fade-in {
    0%, 100% {
        opacity: 0.7;
        transform: translateY(5px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes line-glow {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}



/* Loading screen animation states */
.loading-screen.removed {
    display: none !important;
    animation: none !important;
}

.loading-screen.removed .loader-circle,
.loading-screen.removed .loader-logo,
.loading-screen.removed .loading-text {
    animation: none !important;
}

/* Additional loading screen fixes */
body.loading .loading-screen {
    z-index: 99999 !important;
    display: flex !important;
}

body:not(.loading) .loading-screen.hidden,
body:not(.loading) .loading-screen.removed {
    z-index: -1 !important;
}

/* Force hide all content during loading */
body.loading *:not(.loading-screen):not(.loading-screen *) {
    visibility: hidden !important;
}

/* Ensure loading screen is always on top during loading */
body.loading .loading-screen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: #ffffff !important;
    z-index: 99999 !important;
}





/* ====================================
   HEADER ANIMATIONS
   ==================================== */
#header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#header.header-hidden {
    transform: translateY(-100%);
}

#header.header-visible {
    transform: translateY(0);
    animation: slide-down 0.3s ease-in-out;
}

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

/* ====================================
   ROOT VARIABLES AND RESET
   ==================================== */
:root {
    /* Main Colors - Neutral scheme (page-specific colors will override) */
    --primary-color: #666666;
    --secondary-color: #888888;
    --accent-color: #aaaaaa;
    --light-color: #f5f5f5;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #EEEEEE;
    --medium-gray: #CCCCCC;
    --dark-gray: #666666;
    --black: #000000;
    --text-dark: #333333;
    --text-gray: #6c757d;
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-xxl: 7rem;
    
    /* Border Radius - Square edges */
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-xl: 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Container Widths */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
}

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

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

body {
    font-family: var(--body-font);
    color: var(--black);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-orange);
}

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

ul, ol {
    list-style-type: none;
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    border: none;
    border-radius: 0; /* Completely squared */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;  
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.3);
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    border-bottom: 2px solid rgba(228, 72, 126, 0.1);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.logo img {
    height: 65px;
    width: auto;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

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

.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.desktop-nav a {
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.8rem 1rem;
    position: relative;
    transition: all var(--transition-medium);
    margin: 0 2px;
}

.desktop-nav a:hover {
    color: var(--primary-pink);
    background-color: rgba(228, 72, 126, 0.05);
}

.desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-pink);
    transition: height var(--transition-fast);
}

.desktop-nav a:hover::before {
    height: 3px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width var(--transition-medium), left var(--transition-medium);
}

.desktop-nav a:hover::after {
    width: 80%;
    left: 10%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.has-dropdown .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px; /* Slightly blunt squared */
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--primary-pink);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-align: center;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(228, 72, 126, 0.1);
    color: var(--primary-pink);
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    display: none;
}

/* Mobile dropdown */
.mobile-nav .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--primary-pink);
    margin-left: 20px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav .has-dropdown.active .dropdown-menu {
    max-height: 200px;
}

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

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

.mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav ul {
    padding: var(--spacing-md);
}

.mobile-nav li {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav a {
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    padding: var(--spacing-xs) 0;
}

/* ====================================
   FOOTER - IMPROVED DESIGN
   ==================================== */
#footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.footer-main {
    padding: 30px 0 25px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 20px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
    max-width: 350px;
    font-family: 'Georgia', serif;
}

.footer-social h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link i {
    font-size: 0.9rem;
    z-index: 1;
    position: relative;
}

/* Social Media Specific Colors */
.social-link.linkedin:hover {
    background: #0077b5;
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.social-link.facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

/* Footer Links Sections */
.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-services a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #ff6b35;
    transition: color 0.3s ease;
}

/* Footer Contact Section */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact .contact-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact .contact-icon i {
    font-size: 0.8rem;
    color: #ffffff;
}

.footer-contact .contact-details h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin: 0 0 3px 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact .contact-details p {
    font-size: 0.8rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.3;
    font-family: 'Georgia', serif;
}

/* Newsletter Section */
.newsletter h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter p {
    font-size: 0.8rem;
    color: #cccccc;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Georgia', serif;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 0.8rem;
    outline: none;
    font-family: 'Georgia', serif;
}

.newsletter-form input::placeholder {
    color: #cccccc;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    border: none;
    padding: 10px 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--secondary-pink), var(--primary-pink));
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright p {
    margin: 0;
    color: #cccccc;
    font-size: 0.8rem;
    font-family: 'Georgia', serif;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    font-family: 'Georgia', serif;
}

.footer-bottom-links a:hover {
    color: #ff6b35;
}

.footer-bottom-links .separator {
    color: #666666;
    font-size: 0.7rem;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-content {
        gap: 35px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-description {
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .footer-links ul,
    .footer-services ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 35px 0 25px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form input,
    .newsletter-btn {
        border-radius: 0;
    }
    
    .newsletter-form input {
        border-radius: 15px 15px 0 0;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
    }
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====================================
   ACCESSIBILITY AND FOCUS MANAGEMENT
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (prefers-contrast: high) {
    .btn {
        border: 2px solid #000 !important;
    }
}

/* Focus visible for keyboard navigation */
.btn:focus-visible,
.mobile-nav a:focus-visible,
.dropdown-menu a:focus-visible {
    outline: 3px solid var(--primary-pink) !important;
    outline-offset: 2px !important;
}



/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .mobile-nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ====================================
   NAVBAR AND FOOTER INJECTION
   ==================================== */
/* This section handles dynamic injection of navbar and footer */
.navbar-injected {
    position: relative;
    z-index: 1000;
}

.footer-injected {
    position: relative;
    z-index: 100;
}

/* Ensure proper spacing when navbar is injected */
body:not(.index-page) {
    padding-top: 0;
}

/* Animation for injected elements */
.navbar-injected,
.footer-injected {
    animation: fadeInUp 0.5s ease-out;
}

/* Ensure injected navbar has the same layout as original */
.navbar-injected #header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    border-bottom: 2px solid rgba(228, 72, 126, 0.1);
}

/* Override about-us.css container styles specifically for navbar */
.navbar-injected #header .container,
.navbar-injected header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Override any centering from other CSS files */
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Additional override to ensure navbar container is not affected by about-us.css */
.navbar-injected #header .container,
.navbar-injected header .container,
.navbar-injected .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
}

/* Fix: Target the actual structure where header has class navbar-injected */
header.navbar-injected {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
    border-bottom: 2px solid rgba(228, 72, 126, 0.1);
}

header.navbar-injected .container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    height: 90px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo styles for injected navbar */
header.navbar-injected .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    /* Ensure logo is not centered */
    margin-right: auto;
}

header.navbar-injected .logo img {
    height: 65px;
    width: auto;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

/* Navigation styles for injected navbar */
header.navbar-injected .desktop-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

header.navbar-injected .desktop-nav ul {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin: 0;
    padding: 0;
    list-style: none;
}

header.navbar-injected .desktop-nav a {
    color: var(--black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.8rem 1rem;
    position: relative;
    transition: all var(--transition-medium);
    margin: 0 2px;
    text-decoration: none;
}

header.navbar-injected .desktop-nav a:hover {
    color: var(--primary-pink);
    background-color: rgba(228, 72, 126, 0.05);
}

header.navbar-injected .desktop-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-pink);
    transition: height var(--transition-fast);
}

header.navbar-injected .desktop-nav a:hover::before {
    height: 3px;
}

header.navbar-injected .desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-pink);
    transition: width var(--transition-medium), left var(--transition-medium);
}

header.navbar-injected .desktop-nav a:hover::after {
    width: 80%;
    left: 10%;
}

/* Mobile menu toggle for injected navbar */
header.navbar-injected .mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    margin-left: auto;
}

/* Mobile navigation for injected navbar */
header.navbar-injected .mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform var(--transition-medium);
    z-index: 999;
}

header.navbar-injected .mobile-nav.active {
    transform: translateY(0);
}

header.navbar-injected .mobile-nav ul {
    padding: var(--spacing-md);
    margin: 0;
    list-style: none;
}

header.navbar-injected .mobile-nav li {
    margin-bottom: var(--spacing-sm);
}

header.navbar-injected .mobile-nav a {
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    padding: var(--spacing-xs) 0;
    text-decoration: none;
}

/* Responsive design for injected navbar */
@media (max-width: 768px) {
    header.navbar-injected .desktop-nav {
        display: none;
    }
    
    header.navbar-injected .mobile-menu-toggle {
        display: block;
    }
}

/* Dropdown Menu for injected navbar */
header.navbar-injected .has-dropdown {
    position: relative;
}

header.navbar-injected .has-dropdown .fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

header.navbar-injected .has-dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}

header.navbar-injected .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--primary-pink);
}

header.navbar-injected .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

header.navbar-injected .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-align: center;
    transition: all 0.2s ease;
    text-decoration: none;
}

header.navbar-injected .dropdown-menu a:hover {
    background-color: rgba(228, 72, 126, 0.1);
    color: var(--primary-pink);
}

header.navbar-injected .dropdown-menu a::before,
header.navbar-injected .dropdown-menu a::after {
    display: none;
}

/* Mobile dropdown for injected navbar */
header.navbar-injected .mobile-nav .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--primary-pink);
    margin-left: 20px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

header.navbar-injected .mobile-nav .has-dropdown.active .dropdown-menu {
    max-height: 200px;
}

header.navbar-injected .mobile-nav .has-dropdown.active .fa-chevron-down {
    transform: rotate(180deg);
}

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

/* ====================================
   PRODUCT PAGES - COMPLETE STYLES
   ==================================== */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(228, 72, 126, 0.1);
    border: 2px solid transparent;
    transform: translateY(0);
    will-change: transform, box-shadow, border-color;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--secondary-pink));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(228, 72, 126, 0.25);
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.benefit-card:hover h3 {
    color: var(--primary-pink);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1 !important;
    z-index: 2;
    position: relative;
    transform: scale(1) rotate(0deg);
}

.benefit-card h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefit-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15) rotate(3deg);
    color: var(--secondary-pink);
    opacity: 1 !important;
}

/* Product Hero Section */
.product-hero {
    padding: 120px 0 80px;
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(228, 72, 126, 0.1) 0%, rgba(0, 150, 136, 0.1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(255, 182, 193, 0.4) 100%);
    z-index: 2;
}

.product-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.product-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Highlight styles moved to page-specific CSS files to avoid conflicts */

.product-hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(102, 102, 102, 0.3);
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out both;
    opacity: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature:nth-child(1) { animation-delay: 0.4s; }
.feature:nth-child(2) { animation-delay: 0.6s; }
.feature:nth-child(3) { animation-delay: 0.8s; }

.feature:hover {
    background: rgba(102, 102, 102, 0.1);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(102, 102, 102, 0.2);
    border-color: rgba(102, 102, 102, 0.6);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(102, 102, 102, 0.4));
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Product Overview Section */
.product-overview {
    padding: 80px 0;
    background: var(--white);
}

/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    box-shadow: 0 20px 40px rgba(228, 72, 126, 0.2);
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--primary-pink) transparent transparent;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.category-item h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.category-item p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.category-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-item li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 20px;
}

.category-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Manufacturing Process Section */
.manufacturing-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    color: var(--white);
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Specifications Section */
.specifications {
    padding: 80px 0;
    background: var(--light-gray);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.spec-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.spec-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(228, 72, 126, 0.2);
    border-color: var(--primary-pink);
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
}

.corner-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-pink);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.spec-item:hover .corner-decoration {
    opacity: 0.3;
    background: var(--secondary-pink);
}

.corner-decoration.top-left {
    top: 0;
    left: 0;
    border-radius: 0 0 20px 0;
}

.corner-decoration.top-right {
    top: 0;
    right: 0;
    border-radius: 0 0 0 20px;
}

.corner-decoration.bottom-left {
    bottom: 0;
    left: 0;
    border-radius: 0 20px 0 0;
}

.corner-decoration.bottom-right {
    bottom: 0;
    right: 0;
    border-radius: 20px 0 0 0;
}

.spec-item h4 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.spec-item p {
    color: var(--text-gray);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.spec-item:hover h4 {
    color: var(--primary-pink);
}

.spec-item:hover p {
    color: var(--dark-gray);
}

/* Call to Action Section */
.product-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-pink);
}

.cta-buttons .btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Product Pages */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-video-bg {
        min-height: 500px;
    }
    
    .product-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .product-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-video-bg {
        min-height: 400px;
    }
    
    .product-hero-content h1 {
        font-size: 2rem;
    }
    
    .product-hero-content p {
        font-size: 1rem;
    }
    
    .feature {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}
/* ====================================
   PRODUCTS SOFTPILLS PAGE STYLES - COMPLETE REDESIGN
   ==================================== */

/* Essential CSS Variables */
:root {
    --primary-orange: #f48448;
    --secondary-orange: #f5955a;
    --accent-orange: #f6a66c;
    --light-orange: #fef7f3;
    --white: #ffffff;
    --black: #000000;
    --dark-gray: #333333;
    --light-gray: #f8f9fa;
    --border-gray: #f5955a;
    --text-gray: #f48448;
    --shadow-light: rgba(244, 132, 72, 0.1);
    --shadow-medium: rgba(244, 132, 72, 0.2);
    --shadow-heavy: rgba(244, 132, 72, 0.3);
}

/* ====================================
   GLOBAL STYLES
   ==================================== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
}

.section-header h3 {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--white) 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.hero-btn-primary:hover {
    background: var(--secondary-orange);
    border-color: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

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

.hero-btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

/* ====================================
   PRODUCT OVERVIEW SECTION
   ==================================== */
.product-overview {
    padding: 120px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.overview-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.overview-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.overview-text ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.overview-text li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-gray);
}

.overview-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-light);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* ====================================
   FEATURES SECTION
   ==================================== */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--white) 100%);
    position: relative;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(244, 132, 72, 0.1);
    border: 1px solid rgba(244, 132, 72, 0.2);
    transform: translateY(0);
    will-change: transform, box-shadow, border-color, background;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(244, 132, 72, 0.2);
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.feature-card:hover h4 {
    color: var(--primary-orange);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    z-index: 2;
    position: relative;
    transform: scale(1) rotate(0deg);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-orange);
}

.feature-card h4 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.4s ease;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* ====================================
   BENEFITS SECTION
   ==================================== */
.benefits-section {
    padding: 120px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(244, 132, 72, 0.1);
    border: 1px solid rgba(244, 132, 72, 0.2);
    transform: translateY(0);
    will-change: transform, box-shadow, border-color, background;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.benefit-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(244, 132, 72, 0.2);
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.benefit-card:hover h4 {
    color: var(--primary-orange);
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    z-index: 2;
    position: relative;
    transform: scale(1) rotate(0deg);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-orange);
}

.benefit-card h4 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.4s ease;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* ====================================
   QUALITY SECTION
   ==================================== */
.quality-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--white) 100%);
    position: relative;
}

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

.quality-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(244, 132, 72, 0.1);
    border: 1px solid rgba(244, 132, 72, 0.2);
    transform: translateY(0);
    will-change: transform, box-shadow, border-color, background;
}

.quality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.quality-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(244, 132, 72, 0.2);
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.quality-card:hover h4 {
    color: var(--primary-orange);
}

.quality-icon {
    font-size: 3.5rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    z-index: 2;
    position: relative;
    transform: scale(1) rotate(0deg);
}

.quality-card:hover .quality-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-orange);
}

.quality-card h4 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.4s ease;
}

.quality-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* ====================================
   PROCESS SECTION
   ==================================== */
.process-section {
    padding: 120px 0;
    background: var(--white);
}

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

.process-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(244, 132, 72, 0.1);
    border: 1px solid rgba(244, 132, 72, 0.2);
    transform: translateY(0);
    will-change: transform, box-shadow, border-color, background;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.process-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 0 30px 60px rgba(244, 132, 72, 0.2);
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.process-card:hover h4 {
    color: var(--primary-orange);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    transform: scale(1.1);
}

.process-card h4 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: color 0.4s ease;
}

.process-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section,
.product-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.cta-section::before,
.product-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section h2,
.product-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section h2 .highlight,
.product-cta h2 .highlight {
    color: var(--white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 900;
}

.cta-section p,
.product-cta p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

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

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

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

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 1200px) {
    .overview-grid {
        gap: 60px;
    }
    
    .features-grid,
    .quality-grid,
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .product-overview,
    .features-section,
    .benefits-section,
    .quality-section,
    .process-section,
    .cta-section,
    .product-cta,
    .product-categories,
    .manufacturing-process {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .benefits-grid,
    .quality-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section h2,
    .product-cta h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .product-overview,
    .features-section,
    .benefits-section,
    .quality-section,
    .process-section,
    .cta-section,
    .product-cta {
        padding: 60px 0;
    }
    
    .overview-grid {
        gap: 30px;
    }
    
    .feature-card,
    .benefit-card,
    .quality-card,
    .process-card {
        padding: 25px 20px;
    }
    
    .cta-section h2,
    .product-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p,
    .product-cta p {
        font-size: 1rem;
    }
}

/* ====================================
   PRODUCT CATEGORIES SECTION
   ==================================== */
.product-categories {
    padding: 120px 0;
    background: var(--white);
}

/* Ensure tick marks are visible with high specificity */
.product-categories .category-item li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    top: 8px !important;
    color: var(--primary-orange) !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    z-index: 1 !important;
    display: block !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.category-item {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px var(--shadow-light);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    position: relative;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}





















 
.category-item:hover::before {
    transform: scaleX(1);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-medium);
    border-color: var(--primary-orange);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(244, 132, 72, 0.3);
}

.category-item:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-item h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-item p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.category-item li {
    padding: 8px 0;
    color: #666666;
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.category-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1rem;
    z-index: 1;
}

/* ====================================
   MANUFACTURING PROCESS SECTION - ROADMAP DESIGN
   ==================================== */
.manufacturing-process {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-orange) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.process-steps {
    max-width: 1400px;
    margin: 40px auto 60px;
    padding: 16px 12px;
    position: relative;
}

.process-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
}

.step {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(244, 132, 72, 0.15);
    width: 280px;
    height: 280px;
    flex: none;
    padding: 28px 20px 20px 20px;
    position: relative;
    text-align: center;
    transition: box-shadow 0.3s ease, border 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    border: 3px solid var(--white);
    box-shadow: 0 2px 12px rgba(244, 132, 72, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.3s ease, box-shadow 0.3s ease, font-size 0.3s ease, width 0.3s ease, height 0.3s ease, top 0.3s ease;
}

.step:hover,
.step:focus {
    box-shadow: 0 14px 40px rgba(244, 132, 72, 0.35);
    border: 2px solid var(--primary-orange);
    z-index: 3;
}

.step:hover .step-number,
.step:focus .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    top: 16px;
    box-shadow: 0 4px 24px rgba(244, 132, 72, 0.45);
}

.step-content h3 {
    color: var(--primary-orange);
    margin: 40px 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
    flex-shrink: 0;
}

.step-content p {
    color: var(--primary-orange);
    font-size: 1rem;
    opacity: 0.85;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease, opacity 0.3s ease;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.step:hover .step-content h3,
.step:focus .step-content h3 {
    color: var(--secondary-orange);
    text-shadow: 2px 2px 6px rgba(244, 132, 72, 0.8);
    transform: scale(1.05);
    text-decoration: none;
}

.step:hover .step-content p,
.step:focus .step-content p {
    opacity: 1;
    color: var(--secondary-orange);
}

/* Arrows */
.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    flex: 0 0 40px;
    min-width: 40px;
    margin: 0;
    z-index: 1;
    position: relative;
}

.process-arrow svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 18px;
    display: block;
}

.process-arrow svg path {
    stroke: var(--primary-orange);
    stroke-width: 4;
    fill: none;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .process-steps {
        max-width: 95vw;
    }

    .step {
        width: 260px;
        height: 260px;
        padding: 28px 20px 20px 20px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        top: 16px;
    }

    .step:hover .step-number,
    .step:focus .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        top: 12px;
    }

    .step-content h3 {
        font-size: 1.2rem;
        margin: 36px 0 16px 0;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .process-arrow {
        flex: 0 0 36px;
        min-width: 36px;
    }

    .process-arrow svg {
        width: 28px;
        height: 16px;
    }
}

@media (max-width: 700px) {
    .process-row {
        flex-direction: column;
        margin-bottom: 16px;
        gap: 16px;
    }

    .step {
        width: 90vw;
        max-width: 500px;
        height: 220px;
        padding: 28px 24px 24px 24px;
        border-radius: 10px;
    }

    .step-number {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin-bottom: 16px;
        width: 40px;
        height: 40px;
    }

    .step:hover .step-number,
    .step:focus .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        top: 0;
    }

    .process-arrow {
        display: none;
    }
}

/* ====================================
   OVERRIDE CONFLICTING STYLES FROM MAIN CSS
   ==================================== */

/* Override highlight colors to use orange instead of pink */
.highlight {
    color: var(--primary-orange) !important;
}

.section-header h2 .highlight {
    color: var(--primary-orange) !important;
}

.product-hero-content h1 .highlight {
    color: var(--primary-orange) !important;
}

/* Product features container */
.product-features {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 30px !important;
}

/* Override feature styles to match the image exactly */
.feature {
    color: var(--primary-orange) !important;
    border: 1px solid rgba(244, 132, 72, 0.2) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 15px 20px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(244, 132, 72, 0.1) !important;
    border-radius: 15px !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 60px !important;
}

.feature::before {
    content: '✓' !important;
    color: var(--white) !important;
    font-size: 1.6rem !important;
    font-weight: bold !important;
    margin-right: 15px !important;
    background: var(--primary-orange) !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 3px 10px rgba(244, 132, 72, 0.4) !important;
}

.feature:hover {
    background: rgba(244, 132, 72, 0.1) !important;
    border-color: rgba(244, 132, 72, 0.4) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(244, 132, 72, 0.2) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.feature i {
    color: inherit !important;
    filter: none !important;
    background: none !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
}

/* Override button styles to use orange */
.btn-primary {
    background-color: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    color: var(--white) !important;
    border-color: var(--secondary-orange) !important;
    background-color: var(--secondary-orange) !important;
    box-shadow: 0 8px 25px rgba(244, 132, 72, 0.3) !important;
    transform: translateY(-2px) !important;
}

.btn-secondary {
    background-color: transparent !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background-color: var(--white) !important;
    color: var(--primary-orange) !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* ====================================
   RESPONSIVE STYLES
   ==================================== */

/* Tablet and smaller screens */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefit-card {
        min-height: 260px;
        padding: 35px 25px;
    }
    
    .process-steps {
        max-width: 100%;
        padding: 16px 20px;
    }
    
    .step {
        width: 240px;
        height: 240px;
        padding: 24px 16px 16px 16px;
    }
}

/* Mobile screens */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        min-height: 240px;
        padding: 30px 20px;
    }
    
    .process-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 200px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}
/* ====================================
   RESPONSIVE STYLES
   ==================================== */

/* Global Responsive Styles */
html {
    font-size: 16px;
}

/* ====================================
   RESPONSIVE NAVBAR
   ==================================== */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle.active {
    color: var(--primary-pink);
}

.mobile-menu-toggle .fa-bars {
    transition: transform 0.4s ease;
}

.mobile-menu-toggle.active .fa-bars {
    transform: rotate(90deg);
}

.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

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

.mobile-nav.active::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav ul {
    padding: 20px;
    margin: 0;
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active li:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.25s; }

.mobile-nav.active li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav a {
    color: var(--black);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    padding: 10px 0;
    text-decoration: none;
}

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

.mobile-nav .dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-nav .has-dropdown.active .dropdown-menu {
    display: block;
}

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

/* ====================================
   RESPONSIVE BREAKPOINTS
   ==================================== */

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
    .container {
        max-width: 1140px;
    }
}

/* Small Desktop/Large Tablet (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    html {
        font-size: 15px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-lg);
    }
    
    /* Section padding adjustments */
    section {
        padding: 70px 0;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    html {
        font-size: 14px;
    }
    
    /* Navigation changes */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Header adjustments */
    #header .container {
        padding: 0 20px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-md);
    }
    
    /* Section padding adjustments */
    section {
        padding: 60px 0;
    }
    
    /* Two column layouts become single column */
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    html {
        font-size: 14px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-sm);
    }
    
    .hero-content p {
        font-size: var(--body-size-md);
    }
    
    /* Section padding adjustments */
    section {
        padding: 50px 0;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: var(--h2-size-sm);
    }
    
    /* Card grids become single column */
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Small Mobile (375px - 575px) */
@media (max-width: 575px) {
    .container {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    html {
        font-size: 13px;
    }
    
    /* Hero section adjustments */
    .hero-content h1 {
        font-size: var(--h1-size-xs);
    }
    
    .hero-content p {
        font-size: var(--body-size-sm);
    }
    
    /* Button adjustments */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Section padding adjustments */
    section {
        padding: 40px 0;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: var(--h2-size-xs);
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    html {
        font-size: 12px;
    }
    
    /* Button adjustments */
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* ====================================
   RESPONSIVE COMPONENTS
   ==================================== */

/* Forms */
@media (max-width: 767px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    input, textarea, select {
        padding: 10px;
    }
}

/* Cards */
@media (max-width: 767px) {
    .card {
        padding: 20px;
    }
}

/* Tabs */
@media (max-width: 767px) {
    .tab-nav {
        flex-wrap: wrap;
    }
    
    .tab-nav-item {
        flex: 1 1 auto;
        min-width: 120px;
        margin: 5px;
    }
}

/* Product Showcase */
@media (max-width: 991px) {
    .product-showcase {
        flex-direction: column;
    }
    
    .product-image {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .product-details {
        width: 100%;
    }
}

/* Who We Are Section */
@media (max-width: 991px) {
    .who-we-are-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .who-we-are-text-left {
        padding-left: 0;
        max-width: 100%;
    }
    
    .who-we-are-text-right {
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .image-cards-container {
        display: flex;
        flex-direction: column;
        gap: 70px;
        padding-bottom: 60px;
    }
    
    .image-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .card-image {
        width: 100%;
        height: auto;
    }
    
    .card-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        min-height: 300px;
        border-radius: 8px;
    }
    
    .card-button {
        bottom: -25px;
        width: 80%;
    }
}

@media (max-width: 767px) {
    .who-we-are-content {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .image-cards-container {
        gap: 60px;
        padding-bottom: 50px;
        margin-top: 40px;
    }
    
    .image-card {
        width: 100%;
        max-width: 400px;
    }
    
    .card-image img {
        min-height: 250px;
    }
    
    .card-button {
        width: 90% !important;
        min-width: auto !important;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .who-we-are-content {
        margin-top: 30px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .image-cards-container {
        gap: 70px;
        padding-bottom: 40px;
        margin-top: 30px;
    }
    
    .image-card {
        max-width: 100%;
    }
    
    .card-image img {
        min-height: 200px;
        border-radius: 6px;
    }
    
    .card-button {
        width: 95% !important;
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        bottom: -22px;
    }
}

@media (max-width: 375px) {
    .who-we-are-section {
        padding: 40px 0;
    }
    
    .image-cards-container {
        gap: 65px;
        padding-bottom: 30px;
    }
    
    .card-image img {
        min-height: 180px;
    }
    
    .card-button {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
        bottom: -20px;
    }
    
    .button-text {
        font-size: 0.85rem;
    }
    
    .discover-text {
        font-size: 0.8rem;
    }
}

/* Testimonials */
@media (max-width: 767px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats */
@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Benefits Grid */
@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Manufacturing Process */
@media (max-width: 991px) {
    .process-row {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
/* ====================================
   ENHANCED MOBILE NAVBAR STYLES - MODERN AND RICH DESIGN
   ==================================== */

/* Mobile Navigation Core Styles */
.mobile-nav {
    display: block !important;
    position: fixed !important;
    top: 90px !important;
    left: 0 !important;
    width: 38% !important;
    height: calc(100vh - 90px) !important;
    background: linear-gradient(180deg, #8B4513 0%, #654321 50%, #3E2723 100%) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    z-index: 9999 !important;
    transform: translateY(-100vh) !important;
    transition: transform 0.3s ease !important;
    overflow-y: auto !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Active state for mobile nav */
.mobile-nav.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile Nav Container */
.mobile-nav-container {
    padding: 30px 20px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Mobile Nav List */
.mobile-nav ul {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

/* Mobile Nav List Items */
.mobile-nav li {
    margin: 0 0 15px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 15px !important;
}

.mobile-nav li:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

/* Mobile Nav Links */
.mobile-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: white !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 15px 20px !important;
    border-radius: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    text-decoration: none !important;
}

.mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(5px) !important;
}

.mobile-nav a.active {
    background: rgba(255, 255, 255, 0.2) !important;
    border-left: 4px solid white !important;
}

/* Dropdown styles */
.mobile-nav .has-dropdown {
    position: relative !important;
}

.mobile-nav .has-dropdown > a {
    padding-right: 50px !important;
}

.mobile-nav .has-dropdown .fa-chevron-down {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease !important;
    color: white !important;
    font-size: 0.8rem !important;
}

.mobile-nav .has-dropdown.active .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg) !important;
}

.mobile-nav .dropdown-menu {
    position: static !important;
    background: transparent !important;
    border: none !important;
    border-left: 2px solid rgba(255, 255, 255, 0.3) !important;
    margin: 5px 0 5px 20px !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.5s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    transform: none !important;
}

.mobile-nav .has-dropdown.active .dropdown-menu {
    max-height: 300px !important;
}

.mobile-nav .dropdown-menu a {
    font-size: 0.9rem !important;
    padding: 10px 15px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 5px !important;
    border-radius: 8px !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.mobile-nav .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: white !important;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none !important;
    cursor: pointer !important;
    width: 40px !important;
    height: 40px !important;
    position: relative !important;
    z-index: 10000 !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

.mobile-menu-toggle i {
    font-size: 1.8rem !important;
    color: var(--primary-purple) !important;
    transition: all 0.3s ease !important;
}

/* Default purple theme for toggle button */
body:has(.about-us-hero) .mobile-menu-toggle i {
    color: var(--primary-purple) !important;
}

.mobile-menu-toggle:hover i {
    transform: scale(1.1) !important;
}

/* Toggle button active state */
.mobile-menu-toggle.active i.fa-bars {
    display: none !important;
}

.mobile-menu-toggle:not(.active) i.fa-times {
    display: none !important;
}

/* Add both icons to the toggle button */
.mobile-menu-toggle i.fa-bars,
.mobile-menu-toggle i.fa-times {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-toggle.active i.fa-times {
    transform: translate(-50%, -50%) rotate(180deg) !important;
    color: var(--primary-purple) !important;
}

/* Default purple theme for active toggle button */
body:has(.about-us-hero) .mobile-menu-toggle.active i.fa-times {
    color: var(--primary-purple) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-nav {
        width: 55% !important;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 65% !important;
        top: 80px !important;
        height: calc(100vh - 80px) !important;
    }
    
    .mobile-nav a {
        font-size: 1.1rem !important;
        padding: 12px 15px !important;
    }
    
    .mobile-nav .dropdown-menu a {
        font-size: 0.9rem !important;
        padding: 10px 15px !important;
    }
}

/* Ensure mobile nav is hidden on desktop */
@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

/* Mobile nav social icons */
.mobile-nav-social {
    margin-bottom: 40px !important;
    text-align: center !important;
}

.mobile-nav-social h4 {
    color: #D2B48C !important;
    font-size: 0.9rem !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.mobile-nav-social-icons {
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
}

.mobile-nav-social-icons a {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.mobile-nav-social-icons a:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.1) !important;
}

/* Contact info in mobile nav */
.mobile-nav-contact {
    margin-top: 30px !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
}

.mobile-nav-contact p {
    margin: 5px 0 !important;
}

.mobile-nav-contact a {
    color: white !important;
    text-decoration: none !important;
    display: inline !important;
    background: none !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.mobile-nav-contact a:hover {
    text-decoration: underline !important;
    transform: none !important;
}

/* Ensure scrolling works on small screens */
@media (max-height: 600px) {
    .mobile-nav {
        overflow-y: auto !important;
    }
    
    .mobile-nav-container {
        padding: 20px !important;
    }
}
/* ====================================
   SOFTPILLS PAGE MOBILE MENU THEME - ORANGE
   ==================================== */

/* Override the default purple theme with orange theme for softpills page */
body:has(.softpills-hero) .mobile-nav {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange)) !important;
}

body:has(.softpills-hero) .mobile-menu-toggle i {
    color: var(--primary-orange) !important;
}

body:has(.softpills-hero) .mobile-menu-toggle.active i.fa-times {
    color: var(--primary-orange) !important;
}

body:has(.softpills-hero) .mobile-nav a:hover,
body:has(.softpills-hero) .mobile-nav a:focus {
    background: rgba(255, 255, 255, 0.15) !important;
}

body:has(.softpills-hero) .mobile-nav a.active {
    background: rgba(255, 255, 255, 0.2) !important;
}

body:has(.softpills-hero) .mobile-nav-social-icons a:hover {
    background: white !important;
    color: var(--primary-orange) !important;
}

/* ====================================
   WHY CHOOSE SECTIONS - NO CARD DESIGN
   ==================================== */
.product-overview {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef3f7 0%, #ffffff 100%);
    text-align: center;
}

.product-overview .section-header {
    margin-bottom: 60px;
}

.product-overview .section-header h2 {
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 15px;
}

.product-overview .section-header .highlight {
    color: #ff6b35;
}

.product-overview .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    position: relative;
    padding: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.98);
}

/* Hover effects only for laptop/desktop screens */
@media (min-width: 1024px) {
    .benefit-item:hover {
        transform: translateY(-8px);
        filter: brightness(1.05);
    }
}

.benefit-item .icon-box {
    width: 72px;
    height: 72px;
    background: #ff6b35;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

/* Icon hover effects only for laptop/desktop screens */
@media (min-width: 1024px) {
    .benefit-item:hover .icon-box {
        transform: scale(1.1);
    }
}

.benefit-item h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 1200px) {
    .product-overview .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .product-overview .section-header h2 {
        font-size: 2.2rem;
    }
    
    .product-overview .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-overview .benefits-grid {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 15px;
    }
    
    .benefit-item .icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
}

/* ====================================
   CUSTOM SOFTGEL MANUFACTURING SECTION - EXACT FROM MANUFACTURING.HTML
   ==================================== */

.process-section {
    max-width: 1200px;
    margin: 48px auto;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.process-section .container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-section .section-header {
    text-align: center;
    margin: 0 auto 60px auto;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.process-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #232428;
    margin: 0 auto 20px auto;
    line-height: 1.2;
    text-align: center !important;
    width: 100%;
    display: block;
}

.process-section .section-header .highlight {
    color: #f48448;
}

.process-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 auto;
    text-align: center !important;
    width: 100%;
    display: block;
}

.process-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 46px;
    align-items: center;
}

.card-row {
    width: 97vw;
    max-width: 1120px;
    min-height: 340px;
    background: #fff;
    border-radius: 38px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.09);
    display: flex;
    position: relative;
    transition: box-shadow 0.3s ease;
    overflow: visible;
    align-items: center;
}

.card-row:hover {
    box-shadow: 0 18px 52px rgba(100, 84, 255, 0.13);
}

/* Left side cards */
.card-row.left {
    justify-content: flex-start;
    padding-left: 32px;
    margin-left: 0;
}

/* Right side cards */
.card-row.right {
    justify-content: flex-end;
    margin-left: 120px; /* Extra space to shift right cards */
    padding-right: 32px;
}

.image-box {
    width: 330px;
    height: 290px;
    border-radius: 34px;
    overflow: visible;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.11);
    background: #eee;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

/* Left cards image position 30% outside */
.card-row.left .image-box {
    margin-left: -99px; /* 30% overflow */
    margin-right: 48px;
}

/* Right cards image position 30% outside */
.card-row.right .image-box {
    margin-right: -99px;
    margin-left: 48px;
    justify-content: flex-end;
}

.card-image {
    border-radius: 34px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: auto 0; /* vertically center */
    transition: transform 0.3s ease;
}

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

.card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 48px;
    padding-right: 16px;
}

/* Adjust right card content padding */
.card-row.right .card-content {
    padding-left: 16px;
    padding-right: 48px;
}

.card-title {
    font-size: 2.35rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #232428;
    line-height: 1.1;
}

.card-desc {
    font-size: 1.18rem;
    color: #353e53;
    line-height: 1.35;
    max-width: 610px;
}

@media (max-width: 1400px) {
    .card-row {
        min-height: 320px;
        width: 96vw;
        max-width: 1100px;
    }
    .card-row.right {
        margin-left: 60px;
    }
    .image-box {
        width: 320px;
        height: 280px;
        border-radius: 32px;
    }
    .card-row.left .image-box {
        margin-left: -70px;
        margin-right: 30px;
    }
    .card-row.right .image-box {
        margin-right: -70px;
        margin-left: 30px;
    }
    .card-title {
        font-size: 2.2rem;
    }
    .card-desc {
        font-size: 1.15rem;
    }
    .card-content {
        padding-left: 30px;
        padding-right: 15px;
    }
    .card-row.right .card-content {
        padding-left: 15px;
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .card-row {
        min-height: 280px;
        width: 95vw;
        max-width: 1000px;
    }
    .card-row.right {
        margin-left: 50px;
    }
    .image-box {
        width: 280px;
        height: 240px;
        border-radius: 28px;
    }
    .card-row.left .image-box {
        margin-left: -70px;
        margin-right: 25px;
    }
    .card-row.right .image-box {
        margin-right: -70px;
        margin-left: 25px;
    }
    .card-title {
        font-size: 2rem;
    }
    .card-desc {
        font-size: 1.1rem;
    }
    .card-content {
        padding-left: 25px;
        padding-right: 12px;
    }
    .card-row.right .card-content {
        padding-left: 12px;
        padding-right: 25px;
    }
}

@media (max-width: 1150px) {
    .card-row {
        min-height: 240px;
        width: 98vw;
        max-width: 98vw;
    }
    .card-row.right {
        margin-left: 60px;
    }
    .image-box {
        width: 220px;
        height: 180px;
        border-radius: 22px;
    }
    .card-row.left .image-box {
        margin-left: -66px;
        margin-right: 30px;
    }
    .card-row.right .image-box {
        margin-right: -66px;
        margin-left: 30px;
    }
    .card-title {
        font-size: 1.8rem;
    }
    .card-desc {
        font-size: 1rem;
    }
    .card-content {
        padding-left: 32px;
        padding-right: 12px;
    }
    .card-row.right .card-content {
        padding-left: 12px;
        padding-right: 32px;
    }
}

@media (max-width: 992px) {
    .card-row {
        min-height: 200px;
        width: 95vw;
        max-width: 95vw;
    }
    .card-row.right {
        margin-left: 40px;
    }
    .image-box {
        width: 180px;
        height: 140px;
        border-radius: 18px;
    }
    .card-row.left .image-box {
        margin-left: -54px;
        margin-right: 24px;
    }
    .card-row.right .image-box {
        margin-right: -54px;
        margin-left: 24px;
    }
    .card-title {
        font-size: 1.5rem;
    }
    .card-desc {
        font-size: 0.9rem;
    }
    .card-content {
        padding-left: 28px;
        padding-right: 12px;
    }
    .card-row.right .card-content {
        padding-left: 12px;
        padding-right: 28px;
    }
}

@media (max-width: 992px) {
    .card-row {
        min-height: 200px;
        width: 95vw;
        max-width: 850px;
    }
    .card-row.right {
        margin-left: 25px;
    }
    .image-box {
        width: 160px;
        height: 120px;
        border-radius: 16px;
    }
    .card-row.left .image-box {
        margin-left: -40px;
        margin-right: 12px;
    }
    .card-row.right .image-box {
        margin-right: -40px;
        margin-left: 12px;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .card-desc {
        font-size: 0.85rem;
    }
    .card-content {
        max-width: 95vw;
        padding-left: 12px;
        padding-right: 8px;
    }
    .card-row.right .card-content {
        padding-left: 8px;
        padding-right: 12px;
    }
}

@media (max-width: 850px) {
    .card-row {
        min-height: 200px;
        width: 95vw;
        max-width: 800px;
        border-radius: 0;
    }
    .card-row.right {
        margin-left: 20px;
    }
    .image-box {
        width: 100px;
        height: 100px;
        border-radius: 0;
    }
    .card-row.left .image-box {
        margin-left: -30px;
        margin-right: 10px;
    }
    .card-row.right .image-box {
        margin-right: -30px;
        margin-left: 10px;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .card-desc {
        font-size: 0.95rem;
    }
    .card-content {
        padding-left: 10px;
        padding-right: 8px;
    }
    .card-row.right .card-content {
        padding-left: 8px;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 20px 0;
    }
    .process-section .section-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    .process-section .section-header h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .process-section .section-header p {
        font-size: 1rem;
    }
    .card-row {
        min-height: 160px;
        width: 96vw;
        max-width: 700px;
        border-radius: 0;
    }
    .card-row.right {
        margin-left: 15px;
    }
    .image-box {
        width: 80px;
        height: 80px;
        border-radius: 0;
    }
    .card-row.left .image-box {
        margin-left: -25px;
        margin-right: 8px;
    }
    .card-row.right .image-box {
        margin-right: -25px;
        margin-left: 8px;
    }
    .card-title {
        font-size: 1.2rem;
    }
    .card-desc {
        font-size: 0.9rem;
    }
    .card-content {
        padding-left: 8px;
        padding-right: 6px;
    }
    .card-row.right .card-content {
        padding-left: 6px;
        padding-right: 8px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 15px 0;
    }
    .process-section .section-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    .process-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .process-section .section-header p {
        font-size: 0.95rem;
    }
    .card-row {
        min-height: 120px;
        width: 98vw;
        max-width: 600px;
        border-radius: 0;
    }
    .card-row.right {
        margin-left: 10px;
    }
    .image-box {
        width: 60px;
        height: 60px;
        border-radius: 0;
    }
    .card-row.left .image-box {
        margin-left: -20px;
        margin-right: 6px;
    }
    .card-row.right .image-box {
        margin-right: -20px;
        margin-left: 6px;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .card-desc {
        font-size: 0.85rem;
    }
    .card-content {
        padding-left: 6px;
        padding-right: 4px;
    }
    .card-row.right .card-content {
        padding-left: 4px;
        padding-right: 6px;
    }
}

@media (max-width: 360px) {
    .process-section .section-header h2 {
        font-size: 1.6rem;
    }
    .process-section .section-header p {
        font-size: 0.9rem;
    }
    .card-row {
        min-height: 100px;
        width: 99vw;
        max-width: 500px;
        border-radius: 0;
    }
    .card-row.right {
        margin-left: 8px;
    }
    .image-box {
        width: 50px;
        height: 50px;
        border-radius: 0;
    }
    .card-row.left .image-box {
        margin-left: -15px;
        margin-right: 4px;
    }
    .card-row.right .image-box {
        margin-right: -15px;
        margin-left: 4px;
    }
    .card-title {
        font-size: 1rem;
    }
    .card-desc {
        font-size: 0.8rem;
    }
    .card-content {
        padding-left: 4px;
        padding-right: 3px;
    }
    .card-row.right .card-content {
        padding-left: 3px;
        padding-right: 4px;
    }
}




