/* =================================================================
   National Makhana Udyog - Main Stylesheet
   ================================================================= */

/* CSS Variables for consistent theming */
:root {
    /* Brand Colors */
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --primary-color-rgb: 46, 125, 50;
    --secondary-color: #FF9800;
    --secondary-dark: #F57C00;
    --secondary-light: #FFB74D;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Accent Colors */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --section-padding: 40px 0;
    --container-padding: 0 15px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* =================================================================
   Base Styles
   ================================================================= */

/* Hide menu button on desktop - Strong rule */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Additional strong rules to ensure hiding */
    button.navbar-toggler,
    .navbar button[aria-controls="navbarNav"],
    .navbar .navbar-toggler {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    
}

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

a:hover {
    color: var(--primary-dark);
}

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

/* =================================================================
   Preloader
   ================================================================= */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease-out;
}

#preloader.hidden,
#preloader[style*="display: none"] {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =================================================================
   Buttons
   ================================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* =================================================================
   Top Bar
   ================================================================= */

.top-bar {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-right {
    justify-content: flex-end;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
}

.top-bar-item:last-child {
    margin-right: 0;
}

.top-bar-item i {
    color: var(--primary-color);
}

.top-bar-item a {
    color: var(--white);
    font-size: 13px;
}

.top-bar-item a:hover {
    color: var(--primary-light);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* =================================================================
   Header Top Bar (Phone + Social)
   ================================================================= */

.header-top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.top-bar-phone:hover {
    color: var(--white);
    opacity: 0.9;
}

.top-bar-phone i {
    font-size: 1rem;
    opacity: 0.95;
}

.top-bar-social,
.top-bar-social-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: background 0.2s, transform 0.2s;
}

.top-bar-social-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: translateY(-1px);
}

.top-bar-social-link .social-logo {
    width: 14px;
    height: 14px;
}

@media (max-width: 767.98px) {
    .header-top-bar {
        padding: 6px 0;
        font-size: 0.8rem;
    }
    .header-top-inner {
        justify-content: space-between;
    }
    .top-bar-phone {
        justify-content: flex-start;
    }
    .top-bar-social {
        justify-content: flex-end;
    }
}

/* =================================================================
   Header & Navigation
   ================================================================= */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1000;
}

@media (min-width: 992px) {
    .header {
        padding: 0px 0 !important;
    }
}

.sticky-header {
    position: relative;
    top: auto;
}

.navbar {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo size - same on all pages (do not override on other pages) */
.logo-img,
.navbar-brand .logo-img,
.navbar-brand img.logo-img {
    width: 70px !important;
    height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    object-fit: contain;
}

/* Mobile logo enhancements - slightly smaller on mobile */
@media (max-width: 991.98px) {
    .navbar-brand .logo-img,
    .navbar-brand img.logo-img {
        width: 56px !important;
        height: auto !important;
        max-height: 56px !important;
    }
    .navbar-brand {
        position: relative;
        top: auto;
        left: auto;
        z-index: auto;
        background: transparent;
        padding: 8px 12px;
        box-shadow: none;
        width: auto;
        justify-content: flex-start;
        border-bottom: none;
        display: flex;
        align-items: center;
        margin: 0;
    }
    
    .navbar-brand .logo-img {
        width: 52px !important;
        height: 52px !important;
        max-width: 52px !important;
        max-height: 52px !important;
        object-fit: contain;
        margin-left: 0;
    }
    
    /* Reset navbar padding since logo is no longer fixed */
    .navbar {
        padding: 0.5rem 0.75rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
    }
    
    /* Ensure mobile navigation is properly positioned */
    .navbar-collapse {
        margin-top: 15px;
    }
}

/* Small mobile logo adjustments - thora small */
@media (max-width: 575.98px) {
    .navbar-brand {
        padding: 6px 10px;
        justify-content: flex-start;
    }
    
    .navbar-brand .logo-img {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }
    
    .navbar {
        padding: 0.4rem 0;
    }
    
    /* Small mobile menu button */
    .navbar-toggler {
        width: 35px;
        height: 35px;
        top: auto;
        right: auto;
        padding: 6px;
        position: static !important;
    }

/* Hide menu button on desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}
    
    .navbar-toggler-icon {
        width: 20px;
        height: 15px;
    }
    
    .navbar-toggler-icon span {
        height: 1.5px;
    }
    
    /* Adjust logo spacing for smaller button */
    .navbar-brand {
        padding-right: 50px;
    }
}

.logo-text .brand-name {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-bold);
    font-size: 24px;
    color: var(--gray-900);
    display: block;
    line-height: 1.2;
}

.logo-text .brand-tagline {
    font-size: 16px;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: var(--font-weight-medium);
    font-size: 15px;
    color: var(--gray-800);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: var(--gray-50);
    transform: translateY(-1px);
}

.nav-link:hover {
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.15);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: underlineSlide 0.3s ease-out;
    z-index: 1;
}

/* Ensure active state is visible */
.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: var(--font-weight-semibold);
    background-color: rgba(var(--primary-color-rgb), 0.05) !important;
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

@keyframes underlineSlide {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80%;
        opacity: 1;
    }
}

/* Enhanced underline visibility */
.nav-link.active::after {
    box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.3);
}

.nav-link i {
    font-size: 12px;
    margin-left: 4px;
    transition: var(--transition-fast);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Hide default Bootstrap dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Bootstrap Dropdown Support */
.dropdown-menu {
    display: none;
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    padding: 12px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    color: var(--gray-700);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.dropdown-menu.show {
    display: block !important;
}

/* Ensure dropdown is visible when Bootstrap adds 'show' class */
.dropdown.show .dropdown-menu {
    display: block !important;
}

/* Desktop dropdown positioning */
@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        min-width: 200px;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-lg);
        margin-top: 0;
    }
    
    .dropdown-item {
        display: block;
        width: 100%;
        padding: 10px 20px;
        clear: both;
        font-weight: 400;
        color: var(--gray-700);
        text-align: inherit;
        white-space: nowrap;
        background-color: transparent;
        border: 0;
        text-decoration: none;
        transition: var(--transition-fast);
    }
    
    .dropdown-item:hover,
    .dropdown-item:focus {
        background-color: var(--primary-color);
        color: var(--white);
        text-decoration: none;
    }
    
    .dropdown-divider {
        height: 0;
        margin: 0.5rem 0;
        overflow: hidden;
        border-top: 1px solid var(--gray-200);
    }
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 30px;
    height: 30px;
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile menu toggle positioning */
@media (max-width: 991.98px) {
    .navbar-toggler {
        position: static !important;
        top: auto !important;
        right: auto !important;
        z-index: auto !important;
        background: transparent !important;
        border: none !important;
        padding: 8px !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease;
        cursor: pointer !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        margin-left: auto;
    }
    
    /* Enhanced menu button icon matching the image */
    .navbar-toggler-icon {
        width: 24px;
        height: 18px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-toggler-icon span {
        width: 100%;
        height: 2px;
        background: var(--gray-800);
        border-radius: 0;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    /* Simple menu button without complex animations */
    .navbar-toggler.active .navbar-toggler-icon span:nth-child(1) {
        transform: none;
    }
    
    .navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
        opacity: 1;
    }
    
    .navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
        transform: none;
    }
}
    
    .navbar-toggler:hover {
        background: transparent;
        transform: none;
        box-shadow: none;
    }
    
    .navbar-toggler:active {
        transform: none;
    }
    
    /* Enhanced menu button icon matching nationalmakhana.com */
    .navbar-toggler-icon {
        width: 50px;
        height: 35px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    
    .navbar-toggler-icon span {
        width: 100%;
        height: 4px;
        background: var(--gray-800);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    /* Simple menu button without complex animations */
    .navbar-toggler.active .navbar-toggler-icon span:nth-child(1) {
        transform: none;
    }
    
    .navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
        opacity: 1;
    }
    
    .navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
        transform: none;
    }
    
    /* Ensure proper spacing between logo and menu button */
    .navbar-brand {
        padding-right: 120px;
    }
    
    /* Force menu button visibility */
    .navbar-toggler {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* Ensure menu button is above all other elements */
    .navbar-toggler {
        z-index: 9999 !important;
    }
    
    /* Override Bootstrap hidden classes */
    .navbar-toggler.d-none,
    .navbar-toggler.d-lg-none,
    .navbar-toggler.collapsed {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.3);
    outline: none;
}

/* Enhanced focus state for mobile */
@media (max-width: 991.98px) {
    .navbar-toggler:focus {
        box-shadow: none;
        transform: none;
        outline: none;
    }
}

.navbar-toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-item {
        border-bottom: 1px solid var(--gray-100);
        padding: 0.5rem 0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 0;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        border-bottom: 1px solid var(--gray-50);
        text-align: center;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-divider {
        margin: 0.5rem 1rem;
        border-color: var(--gray-200);
    }
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 14px;
}

.cta-phone:hover {
    color: var(--primary-color);
}

.cta-phone i {
    color: var(--primary-color);
}

/* Mobile Header CTA */
.mobile-header-cta {
    background-color: var(--primary-color);
    padding: 16px 0;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 16px;
    padding: 12px;
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.mobile-cta-btn i {
    font-size: 20px;
}

.mobile-cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* =================================================================
   Hero Carousel
   ================================================================= */

/* Makhana background animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-10px) rotate(90deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-5px) rotate(180deg); 
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-15px) rotate(270deg); 
        opacity: 0.7;
    }
}

@keyframes sway {
    0%, 100% { 
        transform: translateX(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateX(5px) rotate(2deg) scale(1.05); 
    }
    50% { 
        transform: translateX(-3px) rotate(-1deg) scale(0.95); 
    }
    75% { 
        transform: translateX(8px) rotate(3deg) scale(1.02); 
    }
}

.hero-section {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, 
        #2E7D32 0%, 
        #388E3C 25%, 
        #4CAF50 50%, 
        #66BB6A 75%, 
        #81C784 100%
    );
    width: 100%;
    display: block;
}

/* Hero Background Image - clear, no overlay, responsive on all devices */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100%;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
}
@media (max-width: 991.98px) {
    .hero-background {
        background-size: cover !important;
        background-position: center center !important;
    }
}
@media (max-width: 575.98px) {
    .hero-background {
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* Carousel Styles */
.carousel-item {
    position: relative;
    min-height: 300px;
    width: 100%;
}

/* Mobile carousel height override */
@media (max-width: 767.98px) {
    .carousel-item {
        min-height: 300px;
    }
    
    #heroCarousel {
        min-height: 300px;
    }
}

@media (max-width: 575.98px) {
    .carousel-item {
        min-height: 200px;
    }
    
    #heroCarousel {
        min-height: 200px;
    }
}

.carousel-item .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Ensure carousel container is properly sized */
#heroCarousel {
    width: 100%;
    min-height: 300px;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

/* Bootstrap Carousel Overrides */
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

/* Enhanced Fade Transitions */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: none !important;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next:not(.carousel-item-start),
.carousel-fade .carousel-item-prev:not(.carousel-item-end) {
    opacity: 0;
}

/* Smooth slide transitions */
.carousel-item {
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero carousel - ensure container positions arrows */
#heroCarousel.carousel {
    position: relative;
}

/* Enhanced carousel controls - left & right arrows */
.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

/* Arrow icons - visible on banner */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    filter: brightness(0) invert(1);
}

/* Enhanced carousel indicators */
.carousel-indicators {
    bottom: 40px;
    z-index: 10;
}

.carousel-indicators button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.carousel-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.2);
}

.carousel-indicators button.active::before {
    width: 8px;
    height: 8px;
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Loading Animation for Slides */
.slide-loading-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active .slide-loading-animation {
    opacity: 0;
}

.carousel-item:not(.active) .slide-loading-animation {
    opacity: 1;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced hero content animations */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

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

/* Smooth background image transitions */
.hero-background {
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced overlay transitions */
.hero-overlay {
    transition: opacity 1.5s ease-in-out;
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 15;
}

.carousel-progress .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A, #81C784);
    width: 0%;
    transition: width 6s linear;
    border-radius: 0 2px 2px 0;
}

.carousel-item.active .carousel-progress .progress-bar {
    animation: progressFill 6s linear forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute !important;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--white);
}

/* Hero overlay removed - banner image shows clear */
.hero-overlay {
    display: none !important;
}

/* Hero badge - same design as before (floating-badge style) */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}



.hero-content {
    width: 100%;
    padding: 50px 0;
    position: relative;
    z-index: 3;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text .highlight {
    color: var(--secondary-color);
}

.hero-text .brand-name {
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text .location {
    color: var(--white);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::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.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-image {
    text-align: center;
    position: relative;
}

.product-showcase {
    position: relative;
    display: inline-block;
}

.main-products {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: var(--font-weight-semibold);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

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



/* =================================================================
   Section Styles
   ================================================================= */

section {
    padding: 30px 0;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    position: relative;
    overflow: hidden;
}

.section-tag::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: var(--transition-slow);
}

.section-tag:hover::before {
    left: 100%;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--black);
    margin-bottom: 0;
    font-family: var(--font-primary);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

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

/* =================================================================
   Why Choose Us Section
   ================================================================= */

.why-choose-us {
    background-color: var(--white);
    padding: 35px 0;
}

.feature-card {
    padding: 1.5rem 1rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
    height: 100%;
    text-align: center;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.feature-card:hover .feature-icon-img {
    transform: scale(1.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-normal);
}

.feature-icon:hover {
    border-color: var(--primary-light);
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0;
    color: var(--black);
    font-family: var(--font-primary);
    position: relative;
    z-index: 2;
}

.feature-card p {
    display: none;
}

/* Enhanced 3D effect for feature cards */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-normal);
}

/* Card content wrapper */
.feature-card > div:first-child {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Inner shadow for more depth */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.02) 50%, transparent 70%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 1;
}

/* Smooth entrance animation for feature cards */
.feature-card {
    animation: cardEntrance 0.6s ease-out;
}

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

/* Custom grid for 6 columns */
.col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 991.98px) {
    .col-lg-2-4 {
        width: 50%;
    }
}

@media (max-width: 575.98px) {
    .col-lg-2-4 {
        width: 100%;
    }
}

/* =================================================================
   Know About Us Section
   ================================================================= */

.know-about-us {
    padding: 35px 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .year {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.9;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.feature-item span {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

/* =================================================================
   Product Range Section
   ================================================================= */

.product-range {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 60px 0;
    position: relative;
}

.product-range::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.product-range .section-header {
    margin-bottom: 2rem;
}

.product-range .section-header h2 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.product-range .section-header h2::after {
    width: 80px;
    height: 4px;
    bottom: -15px;
}

.product-range .section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.product-range .row {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    visibility: visible;
    opacity: 1;
}

.product-range .container .row {
    min-height: 1px;
}

.product-range .col-lg-4,
.product-range .col-md-6,
.product-range .col-sm-12 {
    padding: 0 15px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    backdrop-filter: blur(10px);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: var(--transition-normal);
    transform-origin: left;
}

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

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

/* Product card image - same height/width as mosomakhana */
.product-card .product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: var(--gray-100);
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
    filter: brightness(0.95);
}

@media (max-width: 768px) {
    .product-card .product-image {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: hidden !important;
    }
    .product-card .product-image img,
    .product-card .product-image img.img-fluid {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

@media (max-width: 480px) {
    .product-card .product-image {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }
}

.product-image {
    position: relative;
    overflow: hidden;
    height: auto;
    background-color: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition-slow);
    filter: brightness(0.95);
}

.product-card:hover .product-image img {
    filter: brightness(1.05);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    transition: var(--transition-normal);
}

.product-card:hover .product-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.4);
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    /* height: 100%; - This was causing the issue! */
}

.product-content .btn {
    margin-top: 15px; /* Changed from auto to fixed margin */
    align-self: flex-start;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 1.25rem;
    transition: var(--transition-normal);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
    /* Force button visibility */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

.product-content .btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.product-content h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-family: var(--font-secondary);
    line-height: 1.3;
}

.product-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* =================================================================
   Blog Section
   ================================================================= */

.latest-blogs {
    padding: 20px 0;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: auto;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition-slow);
}

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

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.category {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: var(--font-weight-medium);
}

.reading-time {
    color: var(--gray-500);
}

.blog-content h4 {
    margin-bottom: 1rem;
}

.blog-content h4 a {
    color: var(--gray-900);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-content h4 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* =================================================================
   FAQs Section
   ================================================================= */

.faqs {
    background-color: var(--white);
    padding: 35px 0;
}

.faq-content {
    padding-right: 2rem;
}

.faq-header {
    margin-bottom: 2rem;
}

.faq-tag {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--black);
    margin-bottom: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #E3F2FD;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.faq-item.active:hover {
    transform: none;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-icon {
    width: 24px;
    height: 24px;
    background-color: var(--gray-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.faq-question h4 {
    flex: 1;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
    color: var(--black);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background-color: var(--gray-500);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-toggle:hover {
    background-color: var(--gray-600);
}

.faq-item.active {
    background-color: #BBDEFB;
    box-shadow: var(--shadow);
}

.faq-item.active .faq-icon {
    background-color: var(--error);
}

.faq-item.active .faq-toggle {
    background-color: var(--error);
}

.faq-answer {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-in-out;
    overflow: hidden;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.faq-image {
    text-align: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

.accordion-item {
    border: none;
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background-color: var(--white);
    color: var(--gray-900);
    font-weight: var(--font-weight-semibold);
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-fast);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    transition: var(--transition-fast);
}

.accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
    color: var(--gray-700);
    line-height: 1.8;
}

/* =================================================================
   Testimonials Section
   ================================================================= */

.testimonials {
    padding: 35px 0;
    background-color: var(--gray-100);
}

.testimonials .section-header h2 {
    color: var(--gray-900);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
}

.testimonials .section-header p {
    color: var(--gray-700);
    font-size: 1.125rem;
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.profile-icon {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
}

.profile-icon.profile-image {
    background-color: transparent;
    padding: 0;
}

.profile-icon.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.google-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--black);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.review-date {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #FFD700;
    font-size: 0.875rem;
}

.verified-badge {
    width: 20px;
    height: 20px;
    background-color: #2196F3;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.testimonial-text p {
    color: var(--black);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.rating i.active {
    color: var(--secondary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
}

.author-info h5 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.author-info span {
    color: var(--gray-200);
    font-size: 0.875rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    pointer-events: all;
    box-shadow: var(--shadow);
}

.nav-btn:hover {
    background-color: var(--gray-100);
    transform: scale(1.1);
}

/* =================================================================
   Bulk Order Section
   ================================================================= */

.bulk-order {
    padding: 35px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.bulk-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.bulk-order-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.order-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
    border: 1px solid var(--primary-color);
}

.bulk-order-content h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.bulk-order-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-700);
}

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

/* Phone number: country code + input EK ROW me (contact jaisa), kabhi wrap/stack na ho */
.bulk-order .input-group,
.bulk-order .form-group .input-group,
.bulk-order-content .input-group,
.bulk-order-content .form-group .input-group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    width: 100%;
}
.bulk-order .input-group select,
.bulk-order .input-group .form-control:first-child,
.bulk-order-content .input-group select,
.bulk-order-content .input-group .form-control:first-child {
    flex: 0 0 auto !important;
    min-width: 120px !important;
    max-width: 140px !important;
    width: auto !important;
}
.bulk-order .input-group input[type="tel"],
.bulk-order .input-group .form-control[type="tel"],
.bulk-order-content .input-group input[type="tel"],
.bulk-order-content .input-group .form-control[type="tel"] {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
}

/* Kabhi bhi phone + country code ek hi row (contact jaisa) */
.phone-one-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}
.phone-one-row select { flex: 0 0 auto !important; min-width: 110px !important; max-width: 140px !important; }
.phone-one-row input[type="tel"] { flex: 1 1 auto !important; min-width: 0 !important; }

/* Contact form: phone country code + number ek row me */
.contact-form .input-group,
.contact-form-section .input-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
}
.contact-form .input-group select,
.contact-form-section .input-group select {
    flex: 0 0 auto;
    min-width: 120px;
    max-width: 140px;
}
.contact-form .input-group input[type="tel"],
.contact-form-section .input-group input[type="tel"] {
    flex: 1 1 auto;
    min-width: 0;
}

.bulk-order-content label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
    font-size: 0.95rem;
}

.bulk-order-content .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--gray-800);
    backdrop-filter: blur(10px);
}

.bulk-order-content .form-control:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    background-color: var(--white);
    transform: translateY(-2px);
}

.bulk-order-content .form-control::placeholder {
    color: var(--gray-500);
}

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

.bulk-order-content select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.bulk-order-content .btn-primary {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    color: var(--primary-color);
    border: 2px solid var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bulk-order-content .btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.bulk-order-content .btn-primary i {
    margin-right: 8px;
}

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

.bulk-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
}

.bulk-features .feature-item > * {
    position: relative;
    z-index: 2;
}

.bulk-features .feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition-normal);
}

.bulk-features .feature-item:hover {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15), 0 6px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.bulk-features .feature-item:hover i {
    transform: scale(1.1);
    color: var(--primary-light);
}

.bulk-order-form {
    background-color: var(--white);
    padding: 2.5rem;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition-normal);
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    overflow: hidden;
}

.bulk-order-form > * {
    position: relative;
    z-index: 2;
}

/* Smooth entrance animation for bulk order section */
.bulk-features .feature-item {
    animation: cardEntrance 0.6s ease-out;
    animation-delay: calc(var(--animation-order, 0) * 0.1s);
}

.bulk-order-form {
    animation: cardEntrance 0.6s ease-out;
    animation-delay: 0.3s;
}

.bulk-order-form:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

/* Enhanced 3D effect for bulk feature items */
.bulk-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-normal);
}

/* Enhanced 3D effect for bulk order form */
.bulk-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--border-radius-xl);
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-normal);
}

/* Inner shadow for more depth */
.bulk-features .feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.02) 50%, transparent 70%);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 1;
}

.bulk-order-form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0, 0, 0, 0.02) 50%, transparent 70%);
    border-radius: var(--border-radius-xl);
    pointer-events: none;
    z-index: 1;
}

/* Product Showcase */
.product-showcase {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.product-item {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
    font-style: italic;
}

.product-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-circle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 0.7rem;
    line-height: 1.2;
}

.logo-circle strong {
    font-size: 0.6rem;
    margin-bottom: 2px;
}

.logo-circle span {
    font-size: 0.5rem;
    opacity: 0.9;
}

.product-name {
    text-align: center;
}

.product-type {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
}

.product-name h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: var(--font-weight-bold);
}

/* Product-specific colors */
.product-roasted .product-badge {
    background: #dc3545;
}

.product-roasted .product-name h3 {
    color: #dc3545;
}

.product-export .product-badge {
    background: #ffc107;
    color: var(--gray-800);
}

.product-export .product-name h3 {
    color: #ffc107;
}

.product-powder .product-badge {
    background: var(--gray-800);
}

.product-powder .product-name h3 {
    color: var(--gray-800);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition-fast);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-control::placeholder {
    color: var(--gray-500);
}

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

select.form-control {
    cursor: pointer;
}

/* =================================================================
   Footer Styles - Modern & Responsive Design
   ================================================================= */

.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.newsletter-form {
    flex-shrink: 0;
}

.newsletter-signup .input-group {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-signup .input-group:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.newsletter-signup input[type="email"] {
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    outline: none;
    flex: 1;
    min-width: 300px;
}

.newsletter-signup input[type="email"]::placeholder {
    color: var(--gray-500);
}

.btn-newsletter {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-newsletter:hover {
    background: var(--primary-dark);
    transform: translateX(2px);
}

.btn-newsletter i {
    transition: transform 0.3s ease;
}

.btn-newsletter:hover i {
    transform: translateX(4px);
}

.btn-newsletter.btn-success {
    background: var(--success);
    transform: scale(1.05);
}

/* Newsletter form animations */
.newsletter-signup {
    position: relative;
}

.newsletter-signup.success .input-group {
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Enhanced social media tooltips */
.social-link[data-tooltip] {
    position: relative;
}

/* Fallback for social media icons */
.social-link i {
    font-size: 18px;
    z-index: 1;
}

/* Ensure social media icons are visible */
.social-link i.fab {
    display: inline-block !important;
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", "FontAwesome", sans-serif !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

/* Enhanced hover effects for social links */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: scale(0);
}

.social-link:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced newsletter section */
.footer-newsletter {
    position: relative;
}

.footer-newsletter::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced logo animations */
.logo-container {
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
}

/* Enhanced trust indicators */
.trust-item {
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.1), transparent);
    transition: left 0.5s ease;
}

.trust-item:hover::before {
    left: 100%;
}

/* Enhanced featured product card */
.featured-product-card {
    position: relative;
    overflow: hidden;
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.05), transparent);
    transition: left 0.6s ease;
}

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

/* Enhanced business hours */
.business-hours {
    position: relative;
}

.business-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hours-item {
    position: relative;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
}

/* Enhanced footer bottom */
.footer-bottom {
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Enhanced newsletter form */
.newsletter-signup .input-group {
    position: relative;
}

.newsletter-signup .input-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.newsletter-signup .input-group:hover::before {
    opacity: 1;
}

.social-link[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-800);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    margin-bottom: 8px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--gray-800);
    margin-bottom: 3px;
    z-index: 1000;
}

/* Main Footer Content */
.footer-main {
    padding: 100px 0 60px;
    position: relative;
}

.footer-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-600), transparent);
}

/* Footer Widgets */
.footer-widget {
    margin-bottom: 40px;
}

.footer-widget .widget-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 2rem;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-widget .widget-title i {
    color: var(--primary-color);
    font-size: 1.1em;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Company Info Section */
.company-info .footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: var(--white);
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo-text .brand-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-text .brand-tagline {
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: var(--font-weight-medium);
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--primary-color-rgb), 0.2);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid rgba(var(--primary-color-rgb), 0.3);
    margin-top: 4px;
}

.brand-badge i {
    font-size: 0.8em;
}

/* Logo Divider */
.logo-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    margin: 1.5rem 0;
    border-radius: 1px;
}

.company-description {
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    margin-top: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-300);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.trust-item:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1em;
    width: 16px;
}

/* Social Media Section */
.social-media-section {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.social-title {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-title i {
    color: var(--primary-color);
    font-size: 1.1em;
}

.social-subtitle {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-700);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

.social-link.linkedin:hover {
    background: #0077b5;
}

.social-link.youtube:hover {
    background: #ff0000;
    transform: scale(1.1);
}

/* Enhanced YouTube styling */
.social-link.youtube {
    position: relative;
    overflow: hidden;
}

.social-link.youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link.youtube:hover::before {
    opacity: 1;
}

.social-link i {
    font-size: 18px;
    z-index: 1;
}

/* Social logo SVGs */
.social-logo {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.social-link:hover .social-logo {
    transform: scale(1.1);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-link {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    border-radius: 6px;
    padding: 6px 12px;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1em;
}

.footer-link:hover {
    color: var(--primary-color);
    padding-left: 20px;
    transform: translateX(5px);
    background-color: rgba(var(--primary-color-rgb), 0.1);
}

.footer-link:hover::before {
    opacity: 1;
}

/* Featured Product Card */
.featured-product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(var(--primary-color-rgb), 0.3);
}

.featured-product-card .product-image {
    width: 100%;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.featured-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.featured-product-card .product-info h6 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: var(--font-weight-semibold);
}

.featured-product-card .product-info p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.btn-featured {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-featured:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.3);
    color: var(--white);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Contact Info Widget Specific Styles */
.contact-info-widget {
    width: 100%;
}

.contact-info-widget .contact-info {
    width: 100%;
    max-width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.contact-icon i {
    color: var(--white);
    font-size: 16px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: var(--font-weight-medium);
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Business Hours */
.business-hours {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h6 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-hours h6 i {
    color: var(--primary-color);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

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

.hours-item span:first-child {
    color: var(--gray-400);
}

.hours-item span:last-child {
    color: var(--white);
    font-weight: var(--font-weight-medium);
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background: var(--gray-900);
    border-top: 1px solid var(--gray-700);
}

.footer-copyright p {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    text-align: right;
}

.legal-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.legal-links li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1199.98px) {
    .footer-main {
        padding: 70px 0 50px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .newsletter-signup .input-group {
        flex-direction: column;
        border-radius: 25px;
    }
    
    .newsletter-signup input[type="email"] {
        min-width: auto;
        border-radius: 25px 25px 0 0;
    }
    
    .btn-newsletter {
        border-radius: 0 0 25px 25px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 991.98px) {
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-newsletter {
        padding: 40px 0;
    }
    
    .newsletter-text h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
    }
    
    .footer-widget .widget-title {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }
    
    .company-info .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-logo-text {
        align-items: center;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-title {
        justify-content: center;
    }
    
    .social-subtitle {
        text-align: center;
    }
    
    .footer-copyright p {
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
        margin-top: 15px;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-bottom-logo-text {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-newsletter {
        padding: 30px 0;
    }
    
    .newsletter-text h3 {
        font-size: 1.25rem;
    }
    
    .newsletter-text p {
        font-size: 0.9rem;
    }
    
    .footer-widget {
        text-align: center;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .footer-widget.company-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .footer-widget .widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 8px 0;
    }
    
    .contact-icon {
        align-self: center;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
    }
    
    .contact-icon i {
        font-size: 14px;
    }
    
    .contact-details {
        width: 100%;
        text-align: center;
    }
    
    /* Mobile contact info improvements */
    .contact-info {
        gap: 20px;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .contact-label {
        font-size: 0.75rem;
        text-align: center;
        width: 100%;
    }
    
    .contact-value {
        font-size: 0.9rem;
        word-break: break-word;
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom {
        padding: 15px 0;
        text-align: center;
    }
    
    .footer-bottom-logo-text {
        margin-bottom: 15px;
    }
    
    /* Mobile-specific spacing */
    .footer-widget {
        margin-bottom: 35px;
    }
    
    .trust-indicators {
        align-items: center;
    }
    
    .business-hours {
        text-align: left;
        max-width: 100%;
        margin: 0;
        padding: 0 15px;
    }
    
    /* Mobile Contact Info Improvements */
    .contact-info-widget {
        padding: 0;
        margin: 0;
    }
    
    .contact-info-widget .contact-info {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info-widget .contact-item {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 0 15px 0;
        justify-content: flex-start;
    }
    
    .contact-info-widget .contact-icon {
        flex-shrink: 0;
        margin-right: 12px;
    }
    
    .contact-info-widget .contact-details {
        flex: 1;
        min-width: 0;
    }
    
    .contact-info-widget .contact-value {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .hours-item {
        flex-direction: row;
        gap: 10px;
        text-align: left;
        padding: 8px 0;
        justify-content: space-between;
    }
    
    .featured-product-card {
        text-align: center;
    }
    
    /* Mobile newsletter adjustments */
    .newsletter-signup .input-group {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .newsletter-signup input[type="email"] {
        text-align: center;
    }
    
    /* Mobile trust indicators */
    .trust-indicators {
        gap: 15px;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    /* Mobile business hours */
    .hours-item {
        padding: 10px 0;
    }
    
    /* Mobile legal links */
    .legal-links {
        gap: 15px;
    }
}

/* Additional responsive improvements */
@media (max-width: 575.98px) {
    .footer-newsletter {
        padding: 25px 0;
    }
    
    .newsletter-text h3 {
        font-size: 1.1rem;
    }
    
    .newsletter-text p {
        font-size: 0.85rem;
    }
    
    .newsletter-signup .input-group {
        max-width: 300px;
    }
    
    .newsletter-signup input[type="email"] {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .btn-newsletter {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-widget .widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .company-description {
        font-size: 0.9rem;
    }
    
    .trust-indicators {
        gap: 10px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    /* Small Mobile Contact Info */
    .contact-info-widget .contact-item {
        margin-bottom: 12px;
    }
    
    .contact-info-widget .contact-icon {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
    
    .contact-info-widget .contact-icon i {
        font-size: 14px;
    }
    
    .contact-info-widget .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-info-widget .contact-value {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 16px;
    }
    
    .featured-product-card {
        padding: 15px;
    }
    
    .featured-product-card .product-image {
        height: 100px;
    }
    
    .featured-product-card .product-info h6 {
        font-size: 0.9rem;
    }
    
    .featured-product-card .product-info p {
        font-size: 0.8rem;
    }
    
    .btn-featured {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .business-hours h6 {
        font-size: 0.9rem;
    }
    
    .hours-item {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        padding: 12px 0;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .legal-links {
        gap: 12px;
    }
    
    .legal-links li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-widget .widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .company-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
        text-align: center;
        padding: 8px 0;
    }
    
    .contact-value a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 8px 0;
    }
    
    /* Extra small mobile adjustments */
    .footer-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo-text .brand-name {
        font-size: 1.125rem;
    }
    
    .footer-logo-text .brand-tagline {
        font-size: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 14px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon i {
        font-size: 12px;
    }
    
    /* Mobile container padding */
    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 375px) {
    .footer-main {
        padding: 35px 0 15px;
    }
    
    .footer-widget .widget-title {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
    }
    
    .company-description {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 6px 0;
    }
    
    .contact-value {
        font-size: 0.85rem;
        text-align: center;
        padding: 6px 0;
    }
    
    .contact-value a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 6px 0;
    }
    
    /* Ultra small mobile */
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo-text .brand-name {
        font-size: 1rem;
    }
    
    .footer-logo-text .brand-tagline {
        font-size: 0.7rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
    }
    
    .social-link i {
        font-size: 12px;
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
    }
    
    .contact-icon i {
        font-size: 10px;
    }
    
    /* Reduce margins on ultra small screens */
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 12px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        justify-content: center;
        width: 100%;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon i {
        font-size: 12px;
    }
    
    .contact-details {
        width: 100%;
        text-align: center;
    }
    
    .business-hours {
        max-width: 260px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Mobile-first touch improvements */
@media (max-width: 767.98px) {
    /* Increase touch targets for mobile */
    .footer-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .contact-value a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile hover effects */
    .footer-link:active,
    .social-link:active,
    .contact-value a:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Mobile scroll improvements */
    .footer {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile text selection */
    .footer * {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .footer a,
    .footer button {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}

/* =================================================================
   Floating Elements
   ================================================================= */

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    font-weight: var(--font-weight-medium);
    font-size: 14px;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

/* Product Detail Page WhatsApp Button */
.whatsapp-float-product {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float-product a {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.whatsapp-float-product a:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float-product i {
    font-size: 1.25rem;
}

.whatsapp-float-product .whatsapp-text {
    display: block;
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 767.98px) {
    .whatsapp-float-product .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float-product a {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}

.whatsapp-float i {
    font-size: 1.25rem;
}

.whatsapp-text {
    display: none;
}

.whatsapp-float:hover .whatsapp-text {
    display: block;
}

/* =================================================================
   Form Styles
   ================================================================= */

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(46, 125, 50, 0.25);
}

.form-check-label {
    color: var(--gray-700);
    font-size: 14px;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom: none;
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.modal-title {
    font-weight: var(--font-weight-semibold);
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.5rem 2rem;
}

/* =================================================================
   Product Detail Page Styles
   ================================================================= */

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 30px 0;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.page-header h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--white);
}

.page-header .lead {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.page-header .subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .header-buttons {
    margin-top: 1.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--white);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

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

.product-image-gallery {
    position: relative;
}

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

.main-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-normal);
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-premium {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--white);
}

.badge-stock {
    background: linear-gradient(135deg, var(--success), #66BB6A);
    color: var(--white);
}

/* Product Information */
.product-info {
    padding-left: 2rem;
}

.product-category {
    margin-bottom: 1rem;
}

.category-tag {
    display: inline-block;
    background-color: var(--gray-200);
    color: var(--gray-700);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: 2.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.feature-item i {
    color: var(--success);
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

/* Product Pricing */
.product-pricing {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--gray-50);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
}

.price-section,
.availability-section {
    margin-bottom: 1.5rem;
}

.price-section:last-child,
.availability-section:last-child {
    margin-bottom: 0;
}

.price-section h4,
.availability-section h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.current-price {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.price-unit {
    font-size: 1rem;
    color: var(--gray-600);
    margin-left: 0.5rem;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.availability i {
    font-size: 0.75rem;
}

.availability span {
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.product-actions .btn {
    flex: 1;
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
}

.product-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Product Benefits Section */
.product-benefits {
    padding: 80px 0;
}

.benefit-card {
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--gray-200);
}

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

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    color: var(--primary-color);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Related Products Section */
.related-products {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.related-products .product-card {
    margin-bottom: 0;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-section .btn {
    padding: 0.75rem 2rem;
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius);
}

/* =================================================================
   Utility Classes
   ================================================================= */

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.bg-light-gray { background-color: var(--gray-50) !important; }

.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.rounded-xl { border-radius: var(--border-radius-xl) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow { box-shadow: var(--shadow) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }

.font-weight-medium { font-weight: var(--font-weight-medium) !important; }
.font-weight-semibold { font-weight: var(--font-weight-semibold) !important; }
.font-weight-bold { font-weight: var(--font-weight-bold) !important; }

.transition-fast { transition: var(--transition-fast) !important; }
.transition-normal { transition: var(--transition-normal) !important; }
.transition-slow { transition: var(--transition-slow) !important; }

/* =================================================================
   No Products Message
   ================================================================= */

.no-products {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Force Product Button Display */
.product-content .btn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    margin-top: auto !important;
    align-self: flex-start !important;
}

.product-content .btn.btn-outline-primary {
    color: #2e7d32 !important;
    background-color: transparent !important;
    border: 2px solid #2e7d32 !important;
    padding: 8px 20px !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.product-content .btn.btn-outline-primary:hover {
    background-color: #2e7d32 !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3) !important;
}

.no-products i {
    color: #6c757d;
    margin-bottom: 20px;
}

.no-products h3 {
    color: #495057;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-products p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

/* =================================================================
   Modern Certification Cards
   ================================================================= */

.cert-card-modern {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 100px;
    border: 1px solid var(--gray-200);
}

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

.cert-image-container {
    position: relative;
    height: 320px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-200);
}

.cert-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.3);
    z-index: 2;
}

.cert-badge i {
    font-size: 0.8rem;
}

.cert-image-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--white);
}

.cert-image-full:hover {
    transform: scale(1.05);
}

/* Ensure images maintain quality */
.cert-image-full {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    max-height: 100%;
}

.cert-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--gray-600);
    text-align: center;
    padding: 20px;
}

.cert-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.cert-placeholder span {
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

.cert-content {
    padding: 25px;
}

.cert-content h5 {
    color: var(--gray-900);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cert-content p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Styles - Mithila Naturals Design */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px 0;
}

/* Make the last section (Contact & Social) full width */
.footer-section:last-child {
    grid-column: 1 / -1;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}



.footer-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Different background colors for different sections */
.footer-section:nth-child(1) {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: rgba(76, 175, 80, 0.3);
}

.footer-section:nth-child(2) {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-color: rgba(33, 150, 243, 0.3);
}

.footer-section:nth-child(3) {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(156, 39, 176, 0.05) 100%);
    border-color: rgba(156, 39, 176, 0.3);
}

.footer-section:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border-color: rgba(255, 152, 0, 0.3);
}

.footer-section:nth-child(5) {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
    border-color: rgba(244, 67, 54, 0.3);
}

.footer-section:nth-child(6) {
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.1) 0%, rgba(0, 150, 136, 0.05) 100%);
    border-color: rgba(0, 150, 136, 0.3);
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 12px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

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

/* Footer Section Header with Toggle */
.footer-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.footer-section-header h3,
.footer-section-header h4 {
    margin-bottom: 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-toggle i {
    transition: transform 0.3s ease;
}

.mobile-toggle.active i {
    transform: rotate(45deg);
}

/* Company Highlights */
.company-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    width: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 500;
}

.contact-value {
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Business Hours */
.business-hours {
    margin-top: 25px;
}

.business-hours h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-hours h6 i {
    color: var(--primary-color);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.day {
    color: #cccccc;
    font-weight: 500;
}

.time {
    color: #ffffff;
    font-weight: 600;
}

/* Social Media Section */
.social-media-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media-section h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-media-section h6 i {
    color: var(--primary-color);
}

.social-subtitle {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

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

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

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

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

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    background: #000000;
    color: #fff;
    padding: 15px 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Mobile responsive for footer bottom */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .developer-credit {
        order: 2;
    }
    
    .copyright {
        order: 1;
    }
}

.company-info-bottom p {
    color: rgb(204, 204, 204);
    margin-bottom: 8px;
    line-height: 1.5;
}

.company-info-bottom strong {
    color: #fff;
}

.copyright p {
    color: #ccc;
    text-align: center;
    margin: 0;
}

.copyright strong {
    color: #fff;
}