/* ==========================================================================
   GauVeda Global - Modern Landing Page Styles
   ========================================================================== */

/* CSS Variables for consistent theming */
:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c1c;
    --accent-color: #6ba02f;
    --light-green: #8bc34a;
    --success-color: #25D366;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 15px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile-first responsive improvements */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    word-wrap: break-word;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 16px; /* Ensure base font size for mobile */
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--light-green));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Navigation Styles */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    padding: 1.8rem 0;
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-color) !important;
    text-decoration: none;
    padding: 0.5rem 0;
}

.logo-img {
    max-height: 95px;
    width: 95px;
    object-fit: cover;
    filter: brightness(1.1) contrast(1.1) saturate(1.05) blur(0px);
    transition: var(--transition);
    border-radius: 50%;
    /* High-quality smooth rendering for logos */
    image-rendering: auto;
    image-rendering: smooth;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: bicubic;
    /* Hardware acceleration for smoother rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    /* Removed border and box-shadow for clean circular look */
}

.logo-img:hover {
    transform: scale(1.05);
    /* Removed box-shadow and border-color for clean look */
}

.brand-text {
    margin-left: 1.2rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
    letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.whatsapp-btn {
    background: var(--success-color) !important;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
    margin-left: 1rem !important;
}

.whatsapp-btn:hover {
    background: #20b856 !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding-top: 160px; /* Increased padding to prevent overlap with larger navbar */
    padding-bottom: 2rem;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Fallback for when video fails to load */
.hero-video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Removed hero stats - no longer needed */

.hero-image {
    position: relative;
    z-index: 2;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-overlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-heavy);
    width: 100%;
    max-width: 400px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-badge:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 1);
}

.feature-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Enhanced About Section with Logo */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-brand-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

/* Logo Container */
.about-logo-container {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(74, 124, 28, 0.05));
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(45, 80, 22, 0.1);
}

.logo-background {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.main-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(45, 80, 22, 0.3));
    transition: var(--transition);
    position: relative;
    z-index: 2;
    border-radius: 50%;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(45, 80, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.brand-tagline h4 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.brand-tagline p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Company Stats */
.company-stats {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 20px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(45, 80, 22, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    color: white;
    font-size: 1.3rem;
}

.stat-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call to Action */
.about-cta {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03), rgba(74, 124, 28, 0.03));
    border-radius: var(--border-radius-lg);
    border: 1px dashed rgba(45, 80, 22, 0.2);
}

.about-cta .btn {
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-cta .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.about-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.about-content {
    padding-left: 2rem;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.feature-item i {
    font-size: 2rem;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.feature-item h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-item p {
    margin: 0;
    color: var(--text-light);
}

/* Enhanced About Section Additional Styles */
.enhanced-about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

/* About Hero Section */
.about-hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-hero-section::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="%23e9ecef" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e9ecef" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e9ecef" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e9ecef" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.about-opening {
    margin-bottom: 2.5rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.mission-statement {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(74, 124, 28, 0.05));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.mission-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.mission-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Quality Commitment Section */
.quality-commitment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.quality-commitment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(45, 80, 22, 0.02) 50%, transparent 51%);
    z-index: 1;
}

.quality-content {
    position: relative;
    z-index: 2;
}

.quality-text {
    padding-right: 2rem;
}

.quality-paragraph p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.benefits-highlight {
    background: linear-gradient(135deg, rgba(107, 160, 47, 0.1), rgba(74, 124, 28, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefits-highlight h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefits-highlight p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.quality-features {
    display: grid;
    gap: 1.5rem;
}

.quality-features .feature-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
    transition: all 0.3s ease;
}

.quality-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.quality-features .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.quality-features .feature-content h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.quality-features .feature-content p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Promise Section */
.promise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03), rgba(74, 124, 28, 0.03));
    position: relative;
}

.promise-text {
    max-width: 900px;
    margin: 0 auto;
}

.promise-opening {
    text-align: center;
    margin-bottom: 3rem;
}

.guarantee-box {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(45, 80, 22, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.guarantee-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.guarantee-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guarantee-content p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.promise-closing {
    text-align: center;
}

.promise-closing p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.choice-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.choice-card:hover::before {
    transform: scaleX(1);
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.choice-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
    transition: all 0.3s ease;
}

.choice-card:hover .choice-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

.choice-content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.choice-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Story Timeline Section */
.story-timeline-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05), rgba(74, 124, 28, 0.05));
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
    text-align: left;
}

.timeline-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
    border: 4px solid white;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(45, 80, 22, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

.timeline-item.future .timeline-icon {
    background: linear-gradient(135deg, var(--accent-color), #8bc34a);
}

.timeline-item.future .timeline-content {
    border-color: var(--accent-color);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 3;
}

/* About Final CTA */
.about-final-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-final-cta::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-primary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline-primary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Products Section */
.products-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

/* Enhanced Product Cards */
.enhanced-product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.enhanced-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.enhanced-product-card:hover .product-img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.product-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

/* Product Actions */
.product-actions {
    margin-bottom: 1rem;
}

.view-details-btn {
    width: 100%;
    margin-bottom: 0.8rem;
    border-radius: 25px;
    font-weight: 500;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #20b856);
    border: none;
    color: var(--white);
    border-radius: 20px;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20b856, #1da851);
    color: var(--white);
    transform: translateY(-2px);
}

.bulk-order-btn {
    border-radius: 20px;
    font-weight: 500;
}

/* Custom Order Section */
.custom-order-section {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.custom-order-section .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.kg-select {
    border-radius: 20px;
    font-size: 0.9rem;
}

.custom-kg-input {
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Product Details Expanded */
.product-details-expanded {
    background: #f8f9fa;
    border-top: 2px solid var(--primary-color);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

.details-content {
    padding: 1.5rem;
}

.details-content h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.specifications-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.specifications-list li,
.benefits-list li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.9rem;
}

.specifications-list li:last-child,
.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    width: 20px;
}

.usage-guide {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.usage-guide p {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.usage-guide p:last-child {
    margin-bottom: 0;
}

/* Global Benefits Section */
.global-benefits-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
}

.benefit-highlight {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
}

.benefit-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-highlight .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-highlight .benefit-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.benefit-highlight h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.benefit-highlight p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-image:hover .product-overlay {
    opacity: 1;
}

.product-image:hover img {
    transform: scale(1.1);
}

.product-content {
    padding: 2rem;
}

.product-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-top: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.product-features li i {
    margin-right: 0.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

.benefit-card {
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
}

/* Modern Contact Section */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.contact-section .section-title {
    color: var(--white) !important;
}

.contact-section .section-title::after {
    background: linear-gradient(90deg, var(--light-green), rgba(255,255,255,0.8));
}

/* Contact Form Card */
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(107, 160, 47, 0.1);
    height: 100%;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.contact-form-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-header p {
    color: var(--text-light);
    margin: 0;
}

/* Modern Form Styles */
.modern-contact-form .form-floating {
    margin-bottom: 1.5rem;
    position: relative;
}

.modern-contact-form .form-control,
.modern-contact-form .form-select {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.2rem 1.2rem 1.2rem 3rem;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    height: auto;
    min-height: 60px;
    font-weight: 500;
}

.modern-contact-form .form-control:focus,
.modern-contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(107, 160, 47, 0.15);
    transform: translateY(-1px);
    outline: none;
}

.modern-contact-form .form-floating label {
    color: #888;
    font-weight: 500;
    padding-left: 3rem;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.modern-contact-form .form-floating label i {
    position: absolute;
    left: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 5;
}

.modern-contact-form .form-control:focus ~ label i,
.modern-contact-form .form-select:focus ~ label i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.modern-contact-form .form-control:not(:placeholder-shown) ~ label,
.modern-contact-form .form-select:not([value=""]) ~ label {
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    color: var(--accent-color);
}

/* Textarea specific styling */
.modern-contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding-top: 1.2rem;
}

/* Select dropdown styling */
.modern-contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

.modern-contact-form .form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236ba02f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

/* Form validation states */
.modern-contact-form .form-control.is-valid,
.modern-contact-form .form-select.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.15);
}

.modern-contact-form .form-control.is-invalid,
.modern-contact-form .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

/* Placeholder styling */
.modern-contact-form .form-control::placeholder,
.modern-contact-form .form-select option[value=""] {
    color: transparent;
    opacity: 0;
}

.submit-btn {
    background: linear-gradient(135deg, var(--success-color), #20b856) !important;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.submit-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;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: var(--white);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.location-card .contact-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.phone-card .contact-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.email-card .contact-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.whatsapp-icon {
    background: linear-gradient(135deg, var(--success-color), #20b856) !important;
}

.contact-details h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.contact-details small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.contact-link, .phone-link, .email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover, .phone-link:hover, .email-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-whatsapp {
    background: var(--success-color) !important;
    border: none;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #20b856 !important;
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 4rem;
}

.trust-item {
    text-align: center;
    color: var(--white);
    padding: 1rem;
}

.trust-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.trust-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--text-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.modern-footer::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="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(107,160,47,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.3;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-section {
    height: 100%;
}

/* Footer Brand */
.footer-brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand-logo img {
    margin-right: 1rem;
    border-radius: 8px;
    filter: brightness(1.2);
}

.footer-brand-logo h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    background: rgba(107, 160, 47, 0.2);
    color: var(--light-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(107, 160, 47, 0.3);
}

.cert-badge i {
    margin-right: 0.5rem;
}

/* Footer Titles */
.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-links a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: var(--accent-color);
    opacity: 1;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-item div a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    transition: var(--transition);
}

.contact-item div a:hover {
    color: var(--light-green);
}

.contact-item div span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Social Media */
.social-media h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.8;
    transition: var(--transition);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Social Media Colors */
.social-link.whatsapp {
    background: linear-gradient(135deg, var(--success-color), #20b856);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0c5aa6);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584, #833ab4);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-link.website {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.copyright strong {
    color: var(--light-green);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--light-green);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.5rem;
}

.tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.tagline i {
    margin: 0 0.25rem;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.5rem;
    }
    
    .modern-contact-form .form-control,
    .modern-contact-form .form-select {
        padding: 1rem 1rem 1rem 2.5rem;
        min-height: 55px;
    }
    
    .modern-contact-form .form-floating label {
        padding-left: 2.5rem;
        font-size: 0.9rem;
    }
    
    .modern-contact-form .form-floating label i {
        left: 0.8rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-info-cards {
        margin-top: 2rem;
    }
    
    .contact-card {
        padding: 1.2rem;
        text-align: left;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .contact-form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .contact-form-header h3 {
        font-size: 1.3rem;
    }
    
    .modern-contact-form .form-control,
    .modern-contact-form .form-select {
        padding: 0.9rem 0.9rem 0.9rem 2.2rem;
        min-height: 50px;
        border-radius: 10px;
    }
    
    .modern-contact-form .form-floating {
        margin-bottom: 1.2rem;
    }
    
    .modern-contact-form .form-floating label {
        padding-left: 2.2rem;
        font-size: 0.85rem;
    }
    
    .modern-contact-form .form-floating label i {
        left: 0.7rem;
        font-size: 0.9rem;
    }
    
    .modern-contact-form textarea.form-control {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .contact-card {
        padding: 1rem;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
        transform: translateX(0);
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin: 0 auto;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .contact-details small {
        font-size: 0.8rem;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand-logo {
        justify-content: center;
        text-align: center;
    }
    
    .footer-brand-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    line-height: 60px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20b856;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Button Styles */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
}

.btn-success:hover {
    background: #20b856;
    border-color: #20b856;
    transform: translateY(-2px);
}

/* Enhanced Mobile Video Handling */
@media (max-width: 768px) {
    .hero-video {
        /* Ensure video covers properly on mobile */
        object-position: center;
        transform: scale(1.2); /* Slight zoom for better mobile coverage */
    }
    
    .hero-overlay {
        background: rgba(45, 80, 22, 0.6); /* Slightly darker on mobile for text readability */
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-overlay {
        max-width: 350px;
    }
    
    .feature-badge {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 2rem;
        text-align: center;
    }
    
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-image {
        margin-top: 2rem;
        justify-content: center;
    }
    
    .hero-image-overlay {
        max-width: 300px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: var(--border-radius);
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-medium);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 180px; /* Extra padding for mobile with larger navbar */
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1rem;
        width: 100%;
        font-size: 0.9rem;
    }
    
    .hero-image-overlay {
        padding: 1.5rem;
        max-width: 280px;
    }
    
    .feature-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .feature-badge i {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .about-section, .products-section, .benefits-section, .contact-section {
        padding: 2.5rem 0;
    }

    /* Text overflow and layout fixes */
    .products-section .text-center {
        padding: 0 1rem;
    }

    .products-section .text-center h2 {
        word-wrap: break-word;
        hyphens: auto;
    }

    .products-section .text-center p {
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Ensure proper mobile layout */
    .col-lg-4, .col-md-6 {
        margin-bottom: 1.5rem;
    }

    /* Fix any potential overflow issues */
    .enhanced-product-card * {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Enhanced About Section Mobile Styles */
    .about-logo-container {
        padding: 30px 15px;
    }

    .main-logo {
        width: 150px;
        height: 150px;
    }

    .logo-glow {
        width: 180px;
        height: 180px;
    }

    .brand-tagline h4 {
        font-size: 1.5rem;
    }

    .brand-tagline p {
        font-size: 1rem;
    }

    .company-stats {
        padding: 20px 15px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .stat-icon i {
        font-size: 1.1rem;
    }

    .stat-content h5 {
        font-size: 1.2rem;
    }

    /* Enhanced About Section Mobile Responsive */
    .enhanced-about-section {
        padding: 0;
    }

    .about-hero-section {
        padding: 3rem 0 2rem;
    }

    .about-main-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .lead-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .mission-statement {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .mission-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .mission-content h4 {
        font-size: 1.2rem;
    }

    .quality-commitment-section,
    .promise-section,
    .why-choose-section,
    .story-timeline-section {
        padding: 3rem 0;
    }

    .quality-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .quality-paragraph p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .benefits-highlight {
        padding: 1.5rem;
    }

    .benefits-highlight h4 {
        font-size: 1.2rem;
    }

    .quality-features .feature-card {
        padding: 1.2rem;
        gap: 1rem;
    }

    .quality-features .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .quality-features .feature-content h5 {
        font-size: 1rem;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .guarantee-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .guarantee-content h4 {
        font-size: 1.3rem;
    }

    .guarantee-content p {
        font-size: 1rem;
    }

    .choice-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .choice-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .choice-content h4 {
        font-size: 1.2rem;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 2.5rem;
    }

    .timeline-item .timeline-content {
        margin-left: 2rem !important;
        margin-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }

    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        position: absolute;
        left: 0;
    }

    .timeline-content {
        padding: 1.5rem;
        margin-left: 4rem;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
    }

    .timeline-item::before {
        left: 30px;
        top: -25px;
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .about-final-cta {
        padding: 3rem 0;
    }

    .cta-content h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .enhanced-product-card {
        margin-bottom: 2rem;
    }

    .product-image-container {
        height: 200px;
    }

    .product-content {
        padding: 1.2rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    /* Product actions mobile improvements */
    .product-actions {
        flex-direction: column;
        gap: 0.4rem;
        margin-top: 1rem;
    }

    .product-actions .btn {
        width: 100%;
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .product-details {
        padding: 0.8rem;
    }

    .product-details h5 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .product-details ul li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
        line-height: 1.3;
    }

    .product-details .btn {
        width: 100%;
        margin-top: 0.8rem;
        font-size: 0.8rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* Container and spacing improvements for mobile */
    .container {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }

    .row {
        margin-left: -0.4rem;
        margin-right: -0.4rem;
    }

    .row > * {
        padding-left: 0.4rem;
        padding-right: 0.4rem;
    }

    /* Section spacing improvements */
    .section-subtitle {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 2rem;
        line-height: 1.5;
        padding: 0 0.5rem;
    }

    /* Hero section mobile improvements */
    .hero-section {
        padding-top: 140px !important; /* Override existing padding */
        padding-bottom: 2rem !important;
    }

    .hero-title {
        font-size: 1.8rem !important; /* Override existing size */
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem !important; /* Override existing size */
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        max-width: 260px !important; /* Override existing width */
        padding: 0.75rem 1.2rem !important;
        font-size: 0.85rem !important;
    }

    /* Feature badges mobile layout */
    .feature-badges {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .feature-badge {
        padding: 0.8rem !important; /* Override existing padding */
        text-align: center;
        border-radius: 8px;
    }

    .feature-badge h6 {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
    }

    .feature-badge p {
        font-size: 0.75rem;
        margin: 0;
        line-height: 1.3;
    }

    .custom-order-section {
        padding: 0.8rem;
    }

    .global-benefits-section {
        padding: 2rem 1rem;
    }

    .benefit-highlight {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .benefit-highlight .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-highlight .benefit-icon i {
        font-size: 1.2rem;
    }
    
    .benefit-card {
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 180px; /* Even more padding for small screens */
        padding-bottom: 2rem;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-image {
        margin-top: 1.5rem;
    }
    
    .hero-image-overlay {
        padding: 1rem;
        max-width: 100%;
    }
    
    .feature-badge {
        padding: 0.5rem;
        font-size: 0.8rem;
        text-align: center;
        justify-content: center;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .logo-img {
        max-height: 65px; /* Increased size for better visibility on mobile */
        width: 65px; /* Maintain circular shape on mobile */
    }
    
    .brand-text {
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }
    
    .custom-navbar {
        padding: 1.2rem 0; /* Increased padding for larger logo on mobile */
    }
    
    .navbar-brand {
        padding: 0.25rem 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-section, .products-section, .benefits-section, .contact-section {
        padding: 2rem 0;
    }

    /* Enhanced About Section Small Mobile Styles */
    .about-cta .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: block;
        width: 100%;
    }

    .about-cta .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Optimize mobile performance */
    .hero-video {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    /* Very small screen optimizations */
    .container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .hero-buttons .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        max-width: 240px;
    }

    .section-title {
        font-size: 1.4rem !important;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.8rem !important;
        padding: 0 0.25rem;
    }

    .feature-badge {
        flex-direction: column;
        text-align: center;
        padding: 0.6rem 0.4rem;
    }

    .feature-badge i {
        margin-bottom: 0.25rem;
        font-size: 1.1rem;
    }

    .feature-badge h6 {
        font-size: 0.8rem;
    }

    .feature-badge p {
        font-size: 0.7rem;
    }

    /* Product cards for very small screens */
    .enhanced-product-card {
        margin-bottom: 1.2rem;
    }

    .product-image-container {
        height: 160px;
    }

    .product-content {
        padding: 0.8rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-description {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .product-actions .btn {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
    }

    /* On very small screens, brand text is always visible since logo is hidden on mobile */
    .brand-text {
        display: block !important;
        margin-left: 0 !important;
        font-size: 1.1rem;
    }

    /* Navbar improvements for very small screens */
    .navbar-brand {
        font-size: 1rem;
    }

    .logo-img {
        max-height: 55px;
        width: 55px;
    }

    /* Better spacing for small screens */
    .row {
        margin-left: -0.25rem;
        margin-right: -0.25rem;
    }

    .row > * {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ==========================================================================
   Gallery Carousel Section Styles
   ========================================================================== */

.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.gallery-section::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="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.gallery-nav {
    margin-bottom: 3rem;
}

.gallery-nav .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.gallery-nav .btn:hover,
.gallery-nav .btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Gallery Carousel Container */
.gallery-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
}

/* Main Swiper Styles */
.gallery-main-swiper {
    height: 600px;
    position: relative;
}

.gallery-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    position: relative;
    overflow: hidden;
}

.gallery-main-swiper .swiper-slide img,
.gallery-main-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-main-swiper .swiper-slide-active img,
.gallery-main-swiper .swiper-slide-active video {
    transform: scale(1.02);
}

/* Slide Content Overlay */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-main-swiper .swiper-slide-active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.slide-content .slide-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.slide-content .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: var(--transition);
}

/* Video Play Button */
.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.video-play-overlay:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Custom Navigation Arrows */
.gallery-next,
.gallery-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(45, 80, 22, 0.2);
}

.gallery-next:hover,
.gallery-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.gallery-next::after,
.gallery-prev::after {
    display: none;
}

/* Custom Pagination */
.gallery-pagination {
    bottom: 20px !important;
    text-align: center;
}

.gallery-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    opacity: 1;
    transition: var(--transition);
}

.gallery-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Autoplay Progress */
.autoplay-progress {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4;
    stroke: var(--primary-color);
    fill: none;
    stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.autoplay-progress span {
    font-size: 0.8rem;
    color: white;
}

/* Thumbnail Swiper */
.gallery-thumbs-swiper {
    height: 120px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 15px 0;
}

.gallery-thumbs-swiper .swiper-slide {
    width: 120px;
    height: 90px;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

.gallery-thumbs-swiper .swiper-slide:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.gallery-thumbs-swiper .swiper-slide-thumb-active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.gallery-thumbs-swiper .swiper-slide img,
.gallery-thumbs-swiper .swiper-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs-swiper .swiper-slide .thumb-overlay {
    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;
    opacity: 0;
    transition: var(--transition);
}

.gallery-thumbs-swiper .swiper-slide:hover .thumb-overlay {
    opacity: 1;
}

.gallery-thumbs-swiper .swiper-slide .thumb-overlay i {
    color: white;
    font-size: 1.5rem;
}

/* Gallery Info Panel */
.gallery-info-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 15;
}

.gallery-counter {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gallery-controls {
    display: flex;
    gap: 10px;
}

.gallery-control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-control-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-main-swiper {
        height: 400px;
    }

    .gallery-thumbs-swiper {
        height: 80px;
        padding: 10px 0;
    }

    .gallery-thumbs-swiper .swiper-slide {
        width: 80px;
        height: 60px;
    }

    .slide-content {
        padding: 20px 15px 15px;
    }

    .slide-content h3 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .gallery-next,
    .gallery-prev {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .video-play-overlay {
        width: 60px;
        height: 60px;
    }

    .video-play-overlay i {
        font-size: 1.5rem;
    }

    .gallery-info-panel {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .gallery-counter {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .gallery-control-btn {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .gallery-main-swiper {
        height: 300px;
    }

    .gallery-thumbs-swiper {
        height: 70px;
    }

    .gallery-thumbs-swiper .swiper-slide {
        width: 70px;
        height: 50px;
    }

    .slide-content h3 {
        font-size: 1.2rem;
    }

    .slide-content p {
        font-size: 0.8rem;
    }
}

/* Old gallery grid styles removed - now using carousel */

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-media {
    position: relative;
    max-height: 70vh;
    overflow: hidden;
}

.lightbox-media img,
.lightbox-media video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-caption {
    padding: 20px;
    text-align: center;
}

.lightbox-caption h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: var(--text-light);
    margin: 0;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Load More Button styles removed - using carousel navigation instead */

/* Gallery Responsive Styles */
@media (max-width: 768px) {
    .gallery-nav .btn {
        padding: 6px 15px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .gallery-image,
    .gallery-video {
        height: 200px;
    }

    .gallery-content h5 {
        font-size: 1rem;
    }

    .gallery-content p {
        font-size: 0.8rem;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
    }

    .video-play-btn i {
        font-size: 1.2rem;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .about-gallery-preview .small-preview {
        height: 60px;
    }

    .more-images-overlay {
        height: 60px;
        font-size: 0.7rem;
    }

    .more-images-overlay .btn {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}
