/* Modern Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Bacchus Brand Colors - Deep Burgundy Wine Red */
    --primary-50: #fef7f7;
    --primary-100: #fdeaea;
    --primary-200: #fbd5d5;
    --primary-300: #f8b4b4;
    --primary-400: #f87171;
    --primary-500: #ef4444;
    --primary-600: #dc2626;
    --primary-700: #991b1b;
    --primary-800: #7f1d1d;
    --primary-900: #450a0a;
    
    /* Bacchus Wine Red - Main Brand Color */
    --wine-red-50: #fdf2f2;
    --wine-red-100: #fce4e4;
    --wine-red-200: #f9cdcd;
    --wine-red-300: #f5a8a8;
    --wine-red-400: #ee7575;
    --wine-red-500: #e34747;
    --wine-red-600: #d12b2b;
    --wine-red-700: #ad1f1f;
    --wine-red-800: #911e1e;
    --wine-red-900: #7a1f1f;
    
    /* Deep Burgundy - Primary Brand */
    --burgundy-50: #fdf4f4;
    --burgundy-100: #fbe7e7;
    --burgundy-200: #f6d4d4;
    --burgundy-300: #edb4b4;
    --burgundy-400: #e08888;
    --burgundy-500: #ce5f5f;
    --burgundy-600: #b63f3f;
    --burgundy-700: #993131;
    --burgundy-800: #7f2d2d;
    --burgundy-900: #6b2a2a;
    
    /* Premium Gold - Accent Colors */
    --gold-50: #fffef7;
    --gold-100: #fffbeb;
    --gold-200: #fef3c7;
    --gold-300: #fde68a;
    --gold-400: #fcd34d;
    --gold-500: #fbbf24;
    --gold-600: #f59e0b;
    --gold-700: #d97706;
    --gold-800: #b45309;
    --gold-900: #92400e;
    
    /* Elegant Champagne Gold */
    --champagne-50: #fefdfb;
    --champagne-100: #fefaf5;
    --champagne-200: #fcf4e6;
    --champagne-300: #f9ebd1;
    --champagne-400: #f4d9a7;
    --champagne-500: #edc373;
    --champagne-600: #e6a640;
    --champagne-700: #d4941a;
    --champagne-800: #b17818;
    --champagne-900: #8f621a;
    
    /* Secondary Colors - Neutral Elegance */
    --secondary-50: #f8f9fa;
    --secondary-100: #f1f3f4;
    --secondary-200: #e8eaed;
    --secondary-300: #dadce0;
    --secondary-400: #bdc1c6;
    --secondary-500: #9aa0a6;
    --secondary-600: #80868b;
    --secondary-700: #5f6368;
    --secondary-800: #3c4043;
    --secondary-900: #202124;
    
    /* Success Colors - Gold Theme */
    --success-50: var(--gold-50);
    --success-100: var(--gold-100);
    --success-200: var(--gold-200);
    --success-300: var(--gold-300);
    --success-400: var(--gold-400);
    --success-500: var(--gold-500);
    --success-600: var(--gold-600);
    --success-700: var(--gold-700);
    --success-800: var(--gold-800);
    --success-900: var(--gold-900);
    
    /* Error Colors - Sophisticated Red */
    --error-50: #fef2f2;
    --error-100: #fee2e2;
    --error-200: #fecaca;
    --error-300: #fca5a5;
    --error-400: #f87171;
    --error-500: #ef4444;
    --error-600: #dc2626;
    --error-700: #b91c1c;
    --error-800: #991b1b;
    --error-900: #7f1d1d;
    
    /* Typography Scale - Improved for Clarity */
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px - Base body text */
    --font-size-lg: 1.125rem;   /* 18px - Enhanced body text */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    --font-size-6xl: 3.75rem;   /* 60px */
    --font-size-7xl: 4.5rem;    /* 72px */
    
    /* Line Heights - Optimized for Readability */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Letter Spacing */
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;
    --letter-spacing-widest: 0.1em;
    
    /* Spacing Scale - Consistent White Space */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-base: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--burgundy-600) 0%, var(--burgundy-800) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(153, 49, 49, 0.8) 0%, rgba(107, 42, 42, 0.9) 100%);
    
    /* Shadows */
    --shadow-hero: 0 4px 20px rgba(153, 49, 49, 0.6);
    --shadow-elegant: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-burgundy: 0 8px 25px rgba(173, 31, 31, 0.3);
    --shadow-gold: 0 8px 25px rgba(251, 191, 36, 0.3);
    --shadow-glow: 0 0 30px rgba(173, 31, 31, 0.4);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Container Max Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--secondary-900);
    scroll-behavior: smooth;
    background: linear-gradient(145deg, 
        var(--champagne-50) 0%, 
        var(--gold-50) 25%, 
        var(--champagne-100) 50%, 
        var(--gold-100) 75%, 
        var(--champagne-50) 100%);
    overflow-x: hidden;
    position: relative;
    padding-top: 0 !important; /* No space above header */
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography Hierarchy - Clear and Consistent */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--secondary-900);
    margin-bottom: var(--space-4);
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    line-height: var(--line-height-snug);
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    line-height: var(--line-height-snug);
}

h4 {
    font-size: var(--font-size-xl);
    font-weight: 500;
    line-height: var(--line-height-normal);
}

h5 {
    font-size: var(--font-size-lg);
    font-weight: 500;
    line-height: var(--line-height-normal);
}

h6 {
    font-size: var(--font-size-base);
    font-weight: 500;
    line-height: var(--line-height-normal);
}

p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--space-4);
    color: var(--secondary-700);
}

/* Enhanced Link Styles */
a {
    color: var(--burgundy-600);
    text-decoration: none;
    transition: color var(--transition-base);
    position: relative;
}

a:hover {
    color: var(--burgundy-700);
}

a:focus {
    outline: 2px solid var(--burgundy-500);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Button Focus States for Accessibility */
button:focus,
.btn:focus {
    outline: 2px solid var(--burgundy-500);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(153, 49, 49, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: floatingParticles 25s ease-in-out infinite;
}

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    33% {
        transform: translateY(-15px) rotate(120deg);
        opacity: 0.7;
    }
    66% {
        transform: translateY(-8px) rotate(240deg);
        opacity: 0.5;
    }
}

.container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-6);
    width: 100%;
}

/* Responsive container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* Clean Professional Header - Bacchus Brand - Sticky */
.header {
    background: var(--wine-red-700);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(173, 31, 31, 0.3);
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.header.scrolled {
    /* Maintain identical appearance to default header */
    background: var(--wine-red-700);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(173, 31, 31, 0.3);
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.navbar {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.header.scrolled .navbar {
    padding: 1rem 0; /* Keep same padding */
}

/* Ensure navigation maintains styling on scroll */
.header.scrolled .nav-link {
    color: var(--gold-100);
}

.header.scrolled .nav-link.active {
    color: var(--gold-100);
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    font-weight: 700;
}

.header.scrolled .brand-text {
    color: var(--gold-100);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.02); /* More subtle hover effect */
}

.logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(124, 58, 237, 0.2));
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gold-100);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.brand-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-400);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-brand:hover .brand-text::after {
    transform: scaleX(1);
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gold-100);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    letter-spacing: 0.02em;
    background: transparent;
    border: 1px solid transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: var(--gold-100);
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link.active {
    color: var(--gold-100);
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    font-weight: 700;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    background: var(--gradient-secondary);
    transition: all var(--transition-bounce);
    border-radius: var(--radius-full);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 85%;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Modern Hero Section with Advanced Slideshow - Adjusted for Fixed Header */
.hero {
    position: relative;
    min-height: calc(100vh - 80px); /* Account for fixed header height */
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* Enhanced Hero Slideshow Background */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Image Optimization Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

img:hover {
    transform: scale(1.02);
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity var(--transition-base);
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Responsive image containers */
.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--secondary-100);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.image-container:hover img {
    transform: scale(1.05);
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.15);
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

.hero-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1) contrast(1.1) saturate(1.2);
}

.hero-slideshow .slide.next {
    opacity: 0;
    transform: scale(1.05);
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
}

/* Enhanced Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 2;
}

/* Modern Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 140px 0 100px;
}

.hero-title {
    font-size: clamp(var(--font-size-4xl), 6vw, var(--font-size-7xl));
    font-weight: 700;
    margin-bottom: var(--space-6);
    line-height: var(--line-height-tight);
    text-shadow: var(--shadow-hero);
    background: linear-gradient(145deg, 
        var(--gold-200) 0%, 
        var(--champagne-300) 20%, 
        var(--gold-400) 40%, 
        var(--champagne-500) 60%, 
        var(--gold-600) 80%, 
        var(--gold-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: var(--letter-spacing-tight);
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, 
        rgba(251, 191, 36, 0.3) 0%, 
        transparent 20%, 
        rgba(251, 191, 36, 0.2) 50%, 
        transparent 80%, 
        rgba(251, 191, 36, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 2s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes textShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.hero-subtitle {
    font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
    font-weight: 600;
    margin-bottom: var(--space-8);
    color: var(--gold-100);
    text-shadow: 0 2px 10px rgba(153, 49, 49, 0.6);
    letter-spacing: var(--letter-spacing-tight);
    animation: slideInFromLeft 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-description {
    font-size: clamp(var(--font-size-base), 2.5vw, var(--font-size-xl));
    margin-bottom: var(--space-12);
    max-width: 65ch;
    color: var(--champagne-100);
    text-shadow: 0 2px 10px rgba(153, 49, 49, 0.6);
    line-height: var(--line-height-relaxed);
    font-weight: 400;
    animation: slideInFromLeft 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-buttons {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    animation: slideInFromLeft 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Alternating Hero Content Containers */
.hero-content-container {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
}

.hero-content-container.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: all;
}

.hero-content-container .hero-title,
.hero-content-container .hero-subtitle,
.hero-content-container .hero-description,
.hero-content-container .hero-buttons {
    animation: none; /* Remove individual animations for smooth container transitions */
}

.hero-content-container.active .hero-title {
    animation: slideInFromLeft 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content-container.active .hero-subtitle {
    animation: slideInFromLeft 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content-container.active .hero-description {
    animation: slideInFromLeft 1.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content-container.active .hero-buttons {
    animation: slideInFromLeft 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 4;
    transform: translateY(-50%);
}

.slide-nav {
    background: linear-gradient(145deg, 
        rgba(153, 49, 49, 0.9) 0%, 
        rgba(127, 29, 29, 0.8) 50%, 
        rgba(107, 42, 42, 0.85) 100%);
    border: 3px solid rgba(251, 191, 36, 0.5);
    color: var(--gold-100);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-bounce);
    backdrop-filter: blur(25px) saturate(200%);
    font-size: 1.6rem;
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
}

.slide-nav::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-secondary);
    border-radius: 50%;
    transition: all var(--transition-bounce);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.slide-nav:hover {
    background: linear-gradient(145deg, 
        rgba(251, 191, 36, 0.95) 0%, 
        rgba(237, 195, 115, 0.9) 50%, 
        rgba(251, 191, 36, 0.95) 100%);
    border-color: var(--gold-300);
    color: var(--burgundy-900);
    transform: scale(1.2) rotate(5deg);
    box-shadow: var(--shadow-2xl), var(--shadow-premium);
}

.slide-nav:hover::before {
    width: 120%;
    height: 120%;
}

.slide-nav:active {
    transform: scale(1.1) rotate(2deg);
}

.slide-nav:active {
    transform: scale(1.05);
}

/* Modern Slide Indicators - Enhanced */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 4;
    background: linear-gradient(145deg, 
        rgba(153, 49, 49, 0.6) 0%, 
        rgba(127, 29, 29, 0.5) 50%, 
        rgba(107, 42, 42, 0.6) 100%);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(20px) saturate(200%);
    border: 2px solid rgba(251, 191, 36, 0.4);
    box-shadow: var(--shadow-elegant);
}

.indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.6);
    cursor: pointer;
    transition: all var(--transition-bounce);
    border: 2px solid rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-secondary);
    border-radius: 50%;
    transition: all var(--transition-bounce);
    transform: translate(-50%, -50%);
}

.indicator.active {
    background: var(--gradient-secondary);
    border-color: var(--gold-300);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8), var(--shadow-premium);
    transform: scale(1.4);
}

.indicator.active::before {
    width: 150%;
    height: 150%;
}

.indicator:hover {
    background: var(--gold-300);
    border-color: var(--gold-400);
    transform: scale(1.25);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.7);
}

.indicator:hover::before {
    width: 120%;
    height: 120%;
}

/* Floating Equipment Gallery */
.hero-floating-gallery {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.floating-item {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    animation: floatIn 2s ease-out infinite alternate;
}

.floating-item:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.floating-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.floating-item:hover img {
    transform: scale(1.1);
}

.item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px 8px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.floating-item:hover .item-label {
    transform: translateY(0);
}

/* Enhanced Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatIn {
    0% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(10px);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Classes */
.about-card,
.service-card,
.manufacturer-card,
.equipment-item,
.video-card,
.contact-item {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.manufacturer-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.equipment-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered animation delays */
.about-card:nth-child(1) { animation-delay: 0.1s; }
.about-card:nth-child(2) { animation-delay: 0.2s; }
.about-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* Clean Professional Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 48px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--wine-red-600);
    color: white;
    border-color: var(--wine-red-600);
    box-shadow: 0 4px 12px rgba(173, 31, 31, 0.3);
}

.btn-primary:hover {
    background: var(--wine-red-700);
    border-color: var(--wine-red-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(173, 31, 31, 0.4);
    color: white;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(173, 31, 31, 0.3);
}

.btn-secondary {
    background: var(--gold-500);
    color: white;
    border-color: var(--gold-500);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-secondary:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    color: white;
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--wine-red-600);
    border-color: var(--wine-red-600);
}

.btn-outline:hover {
    background: var(--wine-red-600);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(173, 31, 31, 0.3);
}

/* Responsive Design - Enhanced for Clarity */
@media (max-width: 768px) {
    .hero-title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-4);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-6);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-8);
    }
    
    .hero-buttons {
        gap: var(--space-4);
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--space-4);
    }
    
    .section-description {
        font-size: var(--font-size-lg);
        line-height: var(--line-height-relaxed);
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .about-card {
        padding: var(--space-8) var(--space-6);
    }
    
    .manufacturers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .manufacturer-card {
        padding: var(--space-6);
    }
}
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .slideshow-controls {
        padding: 0 15px;
    }
    
    .slide-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .hero-floating-gallery {
        right: 20px;
        gap: 15px;
    }
    
    .floating-item {
        width: 80px;
        height: 80px;
    }
    
    .item-label {
        font-size: 0.7rem;
        padding: 10px 5px 5px;
    }
}

/* Modern Section Styles */
section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-20);
    position: relative;
}

.section-header h2 {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--space-6);
    letter-spacing: var(--letter-spacing-tight);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: calc(-1 * var(--space-2));
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-sm);
}

.section-description {
    font-size: var(--font-size-xl);
    color: var(--secondary-700);
    max-width: 65ch;
    margin: 0 auto;
    line-height: var(--line-height-relaxed);
    font-weight: 400;
}

/* Modern About Section */
.about {
    background: linear-gradient(135deg, 
        var(--gold-50) 0%, 
        var(--champagne-50) 50%, 
        var(--gold-100) 100%);
    position: relative;
}

.about::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"><circle cx="50" cy="50" r="1" fill="%23993131" opacity="0.15"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-10);
    margin-bottom: var(--space-20);
    position: relative;
    z-index: 1;
}

.about-card {
    background: var(--gradient-card);
    backdrop-filter: blur(15px) saturate(150%);
    padding: var(--space-14) var(--space-12);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 2px solid rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.about-card:nth-child(1) { animation-delay: 0s; }
.about-card:nth-child(2) { animation-delay: 2s; }
.about-card:nth-child(3) { animation-delay: 4s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.about-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
        rgba(251, 191, 36, 0.1) 0%, 
        rgba(253, 250, 246, 0.05) 50%, 
        rgba(251, 191, 36, 0.1) 100%);
    transition: top var(--transition-bounce);
    z-index: -1;
}

.about-card:hover {
    transform: translateY(-12px) scale(1.05) rotate(1deg);
    box-shadow: var(--shadow-2xl), var(--shadow-premium);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(253, 250, 246, 0.95) 50%, 
        rgba(255, 252, 248, 0.98) 100%);
    border-color: var(--gold-500);
    animation-play-state: paused;
}

.about-card:hover::after {
    top: 0;
}

.about-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    box-shadow: var(--shadow-burgundy), var(--shadow-glow);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.about-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-secondary);
    border-radius: 50%;
    transition: all var(--transition-bounce);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about-card:hover .about-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(153, 49, 49, 0.7);
}

.about-card:hover .about-icon::before {
    width: 150%;
    height: 150%;
}

.about-icon i {
    font-size: 3rem;
    color: var(--gold-100);
    transition: all var(--transition-bounce);
    z-index: 1;
}

.about-card:hover .about-icon i {
    transform: scale(1.2);
    color: var(--burgundy-900);
}

.about-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--burgundy-800);
    letter-spacing: -0.01em;
    transition: all var(--transition-normal);
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    transition: width var(--transition-bounce);
}

.about-card:hover h3::after {
    width: 80%;
}

.about-card p {
    color: var(--burgundy-600);
    line-height: 1.8;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color var(--transition-normal);
}

.about-card:hover p {
    color: var(--burgundy-700);
}

/* About Content Structure */
.about-content {
    position: relative;
    z-index: 1;
}

.about-story {
    background: var(--gradient-card);
    backdrop-filter: blur(15px) saturate(150%);
    padding: 3.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-elegant);
    border: 2px solid rgba(251, 191, 36, 0.3);
    margin-bottom: 3rem;
}

.about-story h3 {
    color: var(--burgundy-700);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.about-story h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.about-story p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--secondary-700);
    max-width: 900px;
    margin: 0 auto;
}

.mission {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a202c;
    text-align: center;
}

.mission p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
}

/* Modern Services Section */
.services {
    background: linear-gradient(135deg, 
        var(--burgundy-800) 0%, 
        var(--wine-red-700) 50%, 
        var(--burgundy-900) 100%);
    color: var(--gold-100);
    position: relative;
    overflow: hidden;
}

.services::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"><polygon points="0,0 100,0 100,50" fill="%23fbbf24" opacity="0.05"/><circle cx="20" cy="80" r="2" fill="%23fbbf24" opacity="0.08"/><circle cx="80" cy="20" r="1" fill="%23fbbf24" opacity="0.06"/></svg>') repeat;
    background-size: 100px 100px;
}

.services .section-header h2 {
    color: var(--gold-200);
    text-shadow: 0 2px 10px rgba(153, 49, 49, 0.6);
}

.services .section-description {
    color: var(--champagne-200);
    text-shadow: 0 1px 5px rgba(153, 49, 49, 0.4);
}

/* Portfolio Page Hero */
.portfolio-hero {
    background: var(--gradient-burgundy);
    color: var(--gold-100);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

.portfolio-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    color: var(--gold-200);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-bounce);
    padding: 0.5rem 1rem;
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 25px;
    background: rgba(251, 191, 36, 0.15);
    backdrop-filter: blur(15px);
    font-weight: 600;
}

.breadcrumb-link:hover {
    color: var(--burgundy-900);
    background: var(--gradient-secondary);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.breadcrumb-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.portfolio-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
}

.portfolio-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold-200);
    text-shadow: 0 2px 8px rgba(153, 49, 49, 0.5);
}

.portfolio-hero .hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--champagne-200);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(153, 49, 49, 0.4);
    font-weight: 500;
}

@media (max-width: 768px) {
    .portfolio-hero {
        padding: 6rem 0 4rem;
    }
    
    .portfolio-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .portfolio-hero .hero-description {
        font-size: 1rem;
    }
    
    .breadcrumb-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(145deg, 
        var(--champagne-50) 0%, 
        var(--gold-50) 30%, 
        var(--champagne-100) 70%, 
        var(--gold-100) 100%);
    padding: 100px 0;
    position: relative;
}

.portfolio::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"><circle cx="25" cy="25" r="1" fill="%23993131" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="%23fbbf24" opacity="0.15"/><circle cx="50" cy="80" r="0.5" fill="%23993131" opacity="0.08"/></svg>') repeat;
    background-size: 80px 80px;
    opacity: 0.6;
    pointer-events: none;
}

.portfolio-category {
    margin-bottom: 5rem;
    background: var(--gradient-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    transition: all var(--transition-bounce);
    border: 2px solid rgba(251, 191, 36, 0.2);
    position: relative;
    z-index: 1;
}

.portfolio-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
    border-radius: 24px 24px 0 0;
}

.portfolio-category:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-2xl), var(--shadow-premium);
    border-color: var(--gold-400);
}

.category-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    align-items: center;
}

.category-hero.reverse {
    grid-template-columns: 1fr 1fr;
}

.category-hero.reverse .category-content {
    order: 2;
}

.category-hero.reverse .category-image {
    order: 1;
}

.category-content {
    padding: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.category-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    background: var(--gradient-burgundy);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-burgundy);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-secondary);
    border-radius: 50%;
    transition: all var(--transition-bounce);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.category-icon:hover::before {
    width: 150%;
    height: 150%;
}

.category-icon i {
    font-size: 2.8rem;
    color: var(--gold-100);
    transition: all var(--transition-bounce);
    z-index: 1;
    position: relative;
}

.category-icon:hover i {
    color: var(--burgundy-900);
    transform: scale(1.1);
}

.category-info h3 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--burgundy-800);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.category-subtitle {
    font-size: 1.3rem;
    color: var(--gold-600);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.2);
}

.category-info p {
    color: var(--burgundy-600);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
}

.category-image {
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-category:hover .category-image img {
    transform: scale(1.05);
}

.portfolio-details {
    padding: 3rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.portfolio-details h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2rem;
    text-align: center;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.application-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.application-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.application-item i {
    font-size: 2rem;
    color: var(--gold-300);
    margin-bottom: 1rem;
}

.application-item h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.application-item p {
    color: #718096;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pump-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pump-type {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pump-type h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pump-type h5 i {
    color: var(--gold-300);
    font-size: 1.2rem;
}

.pump-type ul {
    list-style: none;
    padding: 0;
}

.pump-type li {
    padding: 0.5rem 0;
    color: #718096;
    position: relative;
    padding-left: 1.5rem;
}

.pump-type li::before {
    content: '•';
    color: var(--gold-300);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.project-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold-300);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.project-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.project-item p {
    color: #718096;
    line-height: 1.6;
}

.equipment-includes {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.equipment-includes h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.equipment-includes ul {
    list-style: none;
    padding: 0;
}

.equipment-includes li {
    padding: 0.5rem 0;
    color: #718096;
    position: relative;
    padding-left: 2rem;
}

.equipment-includes li::before {
    content: '✓';
    color: var(--gold-500);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.brewing-systems,
.processing-types,
.irrigation-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.system-type,
.processing-line,
.service-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.system-type:hover,
.processing-line:hover,
.service-item:hover {
    transform: translateY(-3px);
}

.system-type h5,
.processing-line h5,
.service-item h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.extraction-specs,
.small-scale-specs {
    margin-top: 1rem;
}

.extraction-specs p,
.small-scale-specs p {
    color: #718096;
    margin-bottom: 1rem;
}

.extraction-specs strong,
.small-scale-specs strong {
    color: #1a202c;
}

.extraction-specs ul,
.small-scale-specs ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.extraction-specs li,
.small-scale-specs li {
    padding: 0.25rem 0;
    color: #718096;
    position: relative;
    padding-left: 1.5rem;
}

.extraction-specs li::before,
.small-scale-specs li::before {
    content: '→';
    color: var(--gold-400);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.professional-service,
.market-research,
.market-presence {
    background: linear-gradient(135deg, #ad1f1f 0%, #7a1f1f 100%);
    color: black;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.professional-service h5,
.market-research h5,
.market-presence h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-reference {
    text-align: center;
    padding: 1.5rem;
    background: #e2e8f0;
    border-radius: 8px;
    margin-top: 2rem;
}

.partner-reference p {
    margin: 0;
    color: #1a202c;
    font-weight: 500;
}

.partner-reference a {
    color: var(--gold-400);
    text-decoration: none;
    font-weight: 600;
}

.partner-reference a:hover {
    text-decoration: underline;
}

/* Oil Processing Solutions Styles */
.oil-processing-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.technical-specifications {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--gold-400);
}

.technical-specifications h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.technical-specifications h5 i {
    color: var(--gold-400);
}

.specs-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.spec-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.spec-value {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.manufacturer-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ad1f1f;
}

.manufacturer-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.manufacturer-info h5 i {
    color: #ad1f1f;
}

.manufacturer-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-details p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.contact-details a {
    color: #ad1f1f;
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.video-resources {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #ff0000;
}

.video-resources h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-resources h5 i {
    color: #ff0000;
}

.video-resources p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.video-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.video-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.video-link:hover {
    background: #ff0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.video-link i {
    font-size: 1.2rem;
}

.portfolio-cta {
    background: var(--gradient-burgundy);
    color: var(--gold-100);
    padding: 5rem;
    border-radius: 28px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: var(--shadow-2xl);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(251, 191, 36, 0.3);
}

.portfolio-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0.8;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--champagne-200);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #ad1f1f 0%, #7a1f1f 100%);
    color: black;
}

.services .section-header h2,
.services .section-description {
    color: black;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(253, 250, 246, 0.9) 30%, 
        rgba(255, 252, 248, 0.95) 70%, 
        rgba(251, 191, 36, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
    border-radius: 20px 20px 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
        rgba(251, 191, 36, 0.1) 0%, 
        rgba(153, 49, 49, 0.05) 50%, 
        rgba(251, 191, 36, 0.1) 100%);
    transition: top var(--transition-bounce);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(253, 250, 246, 0.95) 30%, 
        rgba(255, 252, 248, 0.98) 70%, 
        rgba(251, 191, 36, 0.1) 100%);
    border-color: var(--gold-500);
    box-shadow: var(--shadow-2xl), var(--shadow-premium);
}

.service-card:hover::after {
    top: 0;
}

.service-card i {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 16px rgba(251, 191, 36, 0.4);
    transition: all var(--transition-bounce);
    display: inline-block;
}

.service-card:hover i {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(251, 191, 36, 0.5));
}

.service-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--burgundy-800);
    transition: color var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--burgundy-700);
}

.service-card p {
    line-height: 1.8;
    color: var(--burgundy-600);
    font-weight: 500;
    transition: color var(--transition-normal);
}

.service-card:hover p {
    color: var(--burgundy-700);
}

/* Quick Access Links */
.quick-access {
    margin-top: 4rem;
    text-align: center;
}

.quick-access h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.quick-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 120px;
    border: 2px solid transparent;
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-400);
}

.quick-link i {
    font-size: 2rem;
    color: var(--gold-400);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.quick-link:hover i {
    transform: scale(1.1);
}

.quick-link span {
    font-weight: 500;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .quick-links {
        gap: 1rem;
    }
    
    .quick-link {
        min-width: 100px;
        padding: 1rem 0.5rem;
    }
    
    .quick-link i {
        font-size: 1.5rem;
    }
    
    .quick-link span {
        font-size: 0.8rem;
    }
}

/* Equipment Videos Section */
.equipment-videos {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 2rem;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
}

.video-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.video-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.video-channel:hover {
    color: #c53030;
}

.video-channel i {
    font-size: 1.1rem;
}

/* Mobile responsiveness for videos */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-info {
        padding: 1.5rem;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
}

/* End of Equipment Videos Section */

/* Manufacturers Section */
.manufacturers {
    background: linear-gradient(135deg, 
        var(--champagne-50) 0%, 
        var(--gold-50) 50%, 
        var(--champagne-100) 100%);
    padding: 5rem 0;
}

.manufacturers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.manufacturer-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(253, 244, 244, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.manufacturer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    border-color: var(--gold-400);
}

.manufacturer-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--gradient-primary);
    color: var(--gold-100);
}

.manufacturer-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.manufacturer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.manufacturer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.manufacturer-country {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.3rem;
}

.manufacturer-specialty {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.manufacturer-content {
    padding: 2rem;
}

.equipment-list {
    margin-bottom: 1.5rem;
}

.equipment-list h4 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.equipment-list ul {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    padding: 0.3rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.equipment-list li:before {
    content: "•";
    color: var(--gold-400);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.applications {
    margin-bottom: 1.5rem;
}

.applications h4 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: linear-gradient(135deg, #ad1f1f, #7a1f1f);
    color: black;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.manufacturer-image {
    margin: 1.5rem 0;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.manufacturer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.manufacturer-card:hover .manufacturer-image img {
    transform: scale(1.05);
}

.manufacturer-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.manufacturer-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.manufacturer-actions .btn-primary {
    background: linear-gradient(135deg, #ad1f1f 0%, #7a1f1f 100%);
    color: white;
}

.manufacturer-actions .btn-primary:hover {
    background: linear-gradient(135deg, #7a1f1f 0%, #6b2a2a 100%);
    transform: translateY(-2px);
}

.manufacturer-actions .btn-secondary {
    background: transparent;
    color: var(--gold-400);
    border: 2px solid var(--gold-400);
}

.manufacturer-actions .btn-secondary:hover {
    background: var(--gold-400);
    color: white;
    transform: translateY(-2px);
}

.manufacturer-actions .btn-outline {
    background: transparent;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.manufacturer-actions .btn-outline:hover {
    background: #4a5568;
    color: white;
    transform: translateY(-2px);
}

.manufacturer-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--gold-400);
}

.manufacturer-details h4 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.spec-item {
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.spec-item strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.3rem;
}

.manufacturer-contact {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(173, 31, 31, 0.05);
    border-radius: 10px;
    border-left: 4px solid #ad1f1f;
}

.manufacturer-contact h4 {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.manufacturer-contact p {
    margin: 0.5rem 0;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
}

.manufacturer-contact p strong {
    color: #2d3748;
}

.manufacturers-cta {
    text-align: center;
    background: linear-gradient(135deg, #ad1f1f 0%, #7a1f1f 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.manufacturers-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.manufacturers-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.manufacturers-cta .btn {
    background: white;
    color: var(--gold-400);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.manufacturers-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Additional Partners Section */
.additional-partners {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient-card);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-elegant);
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.additional-partners h3 {
    color: var(--burgundy-700);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.additional-partners h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.partner-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--gold-500);
    transition: all var(--transition-bounce);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--burgundy-600);
}

.partner-item h4 {
    color: var(--burgundy-700);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-item p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.partner-item p strong {
    color: var(--burgundy-600);
}

.partner-item p em {
    color: var(--gold-600);
    font-style: italic;
}

/* Work Together Section */
.work-together {
    background: linear-gradient(135deg, 
        var(--gold-50) 0%, 
        var(--champagne-50) 50%, 
        var(--gold-100) 100%);
    padding: 6rem 0;
    position: relative;
}

.work-together::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"><circle cx="50" cy="50" r="1" fill="%23993131" opacity="0.1"/></svg>') repeat;
    background-size: 40px 40px;
    opacity: 0.6;
}

.work-together .container {
    position: relative;
    z-index: 1;
}

.work-together-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.work-together-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--secondary-700);
    margin-bottom: 3rem;
}

.contact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--gradient-card);
    backdrop-filter: blur(15px) saturate(150%);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-elegant);
    border: 2px solid rgba(251, 191, 36, 0.3);
    transition: all var(--transition-bounce);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold-500);
}

.highlight-item i {
    font-size: 2.5rem;
    color: var(--burgundy-600);
    margin-bottom: 1.5rem;
}

.highlight-item h4 {
    color: var(--burgundy-700);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.highlight-item p {
    color: var(--secondary-600);
    font-size: 1.1rem;
    margin: 0;
}

/* Equipment Videos Section */
.equipment-videos {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    color: var(--gold-400);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.video-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-400);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.video-channel:hover {
    color: var(--gold-600);
    transform: translateX(5px);
}

.video-channel i {
    font-size: 1.1rem;
}

/* Hero Video Addition */
.hero-video {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.video-showcase h3 {
    color: white;
    margin-bottom: 1rem;
    text-align: center;
}

.hero-video .video-item {
    max-width: 400px;
    margin: 0 auto;
}

.hero-video .video-item iframe {
    width: 100%;
    height: 225px;
    border-radius: 10px;
}

.hero-video .video-item p {
    color: white;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .manufacturers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .manufacturer-card {
        border-radius: 15px;
    }
    
    .manufacturer-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .manufacturer-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .manufacturer-content {
        padding: 1.5rem;
    }
    
    /* Video Section Responsive */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-wrapper {
        height: 180px;
    }
    
    .hero-video {
        padding: 1rem;
    }
    
    .hero-video .video-item iframe {
        height: 200px;
    }
    
    .manufacturer-actions {
        flex-direction: column;
    }
    
    .application-tags {
        justify-content: center;
    }
    
    .manufacturers-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .manufacturers-cta h3 {
        font-size: 1.5rem;
    }
}

/* Training Section */
.training-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.training-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.training-text p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.training-text ul {
    list-style: none;
    padding: 0;
}

.training-text li {
    padding: 0.5rem 0;
    color: #718096;
    position: relative;
    padding-left: 2rem;
}

.training-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-500);
    font-weight: bold;
}

.training-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Second-Hand Section */
.secondhand {
    background-color: #f7fafc;
}

.secondhand-content p {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

.secondhand-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 1.5rem;
    color: var(--gold-500);
}

.feature span {
    font-weight: 500;
    color: #1a202c;
}

/* Support Section */
.support-content > p {
    font-size: 1.2rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.support-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.support-item:hover {
    transform: translateY(-5px);
}

.support-item i {
    font-size: 3rem;
    color: var(--gold-400);
    margin-bottom: 1rem;
}

.support-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.support-item p {
    color: #718096;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

/* Equipment Showcase Section */
.equipment-showcase {
    background-color: #f7fafc;
    padding: 100px 0;
}

.equipment-categories {
    margin-bottom: 4rem;
}

.equipment-category {
    margin-bottom: 4rem;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-header i {
    font-size: 2.5rem;
    color: var(--gold-400);
}

.category-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.equipment-item {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--gold-400);
}

.equipment-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.equipment-info p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.equipment-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ad1f1f 0%, #7a1f1f 100%);
    color: black;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.equipment-cta {
    text-align: center;
    background: linear-gradient(135deg, #ad1f1f 0%, #7a1f1f 100%);
    color: black;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(173, 31, 31, 0.3);
}

.equipment-cta h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.equipment-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.equipment-cta .btn {
    background-color: white;
    color: var(--gold-400);
}

.equipment-cta .btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, 
        var(--burgundy-900) 0%, 
        var(--wine-red-800) 50%, 
        var(--burgundy-800) 100%);
    color: var(--gold-100);
}

.contact .section-header h2,
.contact .section-description {
    color: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold-300);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--champagne-200);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-400);
    margin-top: 0.25rem;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold-200);
}

.contact-item p {
    color: var(--champagne-200);
    margin: 0;
}

.contact-item a {
    color: var(--gold-400);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.contact-item a:hover {
    color: var(--gold-300);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: var(--white);
    color: var(--black);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--champagne-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-400);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
    background: rgba(251, 191, 36, 0.15);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        var(--burgundy-900) 0%, 
        var(--wine-red-900) 50%, 
        var(--burgundy-800) 100%);
    color: var(--gold-100);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--gold-400);
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.footer-section p {
    color: var(--champagne-200);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--champagne-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-300);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    color: var(--champagne-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 9998;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: var(--secondary-900) !important;
        font-size: 1.1rem;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        border-radius: 10px;
        background: transparent;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .nav-menu .nav-link:hover {
        color: var(--wine-red-700) !important;
        background: rgba(173, 31, 31, 0.1);
        border-color: rgba(173, 31, 31, 0.2);
        transform: translateX(10px);
    }

    .nav-menu .nav-link.active {
        color: var(--wine-red-700) !important;
        background: rgba(173, 31, 31, 0.15);
        border-color: rgba(173, 31, 31, 0.3);
        font-weight: 700;
    }

    .nav-toggle {
        display: flex;
        z-index: 9999;
    }

    .nav-toggle .bar {
        background-color: white;
        transition: 0.3s ease;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-thumbnail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-thumb {
        height: 50px;
    }

    .contact-grid,
    .training-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid,
    .services-grid,
    .partners-grid,
    .equipment-grid,
    .applications-grid,
    .pump-categories,
    .project-highlights,
    .brewing-systems,
    .processing-types,
    .irrigation-services {
        grid-template-columns: 1fr;
    }

    .category-hero,
    .category-hero.reverse {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .category-hero.reverse .category-content,
    .category-hero.reverse .category-image {
        order: unset;
    }

    .category-content {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .category-image img {
        height: 250px;
    }

    .portfolio-details {
        padding: 2rem;
    }

    .portfolio-cta {
        padding: 3rem 2rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .equipment-category {
        padding: 1.5rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .category-header i {
        font-size: 2rem;
    }

    .equipment-cta {
        padding: 2rem;
    }

    .equipment-cta h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        margin: 0.25rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-card,
    .service-card,
    .partner-card {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.service-card,
.partner-card,
.support-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for all links */
html {
    scroll-behavior: smooth;
}

/* ===== COMPREHENSIVE PAGE STYLING ===== */

/* About Page Styles */
.about {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
    overflow: hidden;
}

.about::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="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.about-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
}

.about-card:hover .about-icon::before {
    opacity: 1;
}

.about-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon i {
    transform: rotate(360deg);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.about-card:hover h3::after {
    width: 60px;
}

.about-card p {
    color: var(--secondary-700);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover p {
    color: var(--secondary-800);
}

/* Values Section */
.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.values-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 3rem;
    position: relative;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.location-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.location-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.location-content li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.location-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.location-info {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(173, 31, 31, 0.1);
}

.location-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-700);
}

.location-info i {
    color: var(--wine-red-600);
    width: 20px;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.about-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.service-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.service-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

/* Equipment Gallery */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.equipment-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.equipment-info p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Technical Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.support-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.support-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Second-Hand Equipment */
.secondhand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.secondhand-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secondhand-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.secondhand-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.secondhand-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.secondhand-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--wine-red-600);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

.contact-item a {
    color: var(--wine-red-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-600);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine-red-600);
    box-shadow: 0 0 0 3px rgba(173, 31, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-50), var(--primary-50));
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, var(--error-50), var(--wine-red-50));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid var(--wine-red-200);
}

.emergency-contact h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: var(--secondary-700);
    margin-bottom: 2rem;
}

.emergency-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.emergency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.emergency-item i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.emergency-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-900);
}

/* Training Page Styles */
.training {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.training-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.overview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 1);
}

.feature i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.feature span {
    color: var(--secondary-700);
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Programs */
.training-programs {
    margin: 4rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-icon i {
    font-size: 1.8rem;
    color: white;
}

.program-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-card li {
    padding: 0.25rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.duration {
    display: inline-block;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Training */
.custom-training {
    margin: 4rem 0;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.custom-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.custom-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.custom-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Schedule */
.training-schedule {
    margin: 4rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.schedule-date {
    text-align: center;
    min-width: 80px;
}

.schedule-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wine-red-600);
    text-transform: uppercase;
}

.schedule-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.schedule-details p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.schedule-details .location {
    font-size: 0.9rem;
    color: var(--wine-red-600);
    font-weight: 500;
}

/* Training CTA */
.training-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.training-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.training-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Partners Page Styles */
.partners {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.partners-overview {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.partners-overview p {
    font-size: 1.2rem;
    color: var(--secondary-700);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Partner Categories */
.partner-categories {
    margin: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Featured Partners */
.featured-partners {
    margin: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    background: var(--secondary-200);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partner-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-tag {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    color: var(--wine-red-700);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(173, 31, 31, 0.2);
}

/* Partnership Benefits */
.partnership-benefits {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Become a Partner */
.become-partner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.become-partner h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.become-partner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-grid,
    .equipment-grid,
    .support-grid,
    .services-grid,
    .values-grid,
    .categories-grid,
    .partners-grid,
    .benefits-grid,
    .programs-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-section,
    .secondhand-content,
    .custom-content,
    .training-overview,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1.5rem;
    }

    .about-cta,
    .services-cta,
    .training-cta,
    .become-partner {
        padding: 2rem 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .emergency-numbers {
        flex-direction: column;
        align-items: center;
    }

    .training-features {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .emergency-item {
        padding: 0.75rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.service-card,
.partner-card,
.support-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for all links */
html {
    scroll-behavior: smooth;
}

/* ===== COMPREHENSIVE PAGE STYLING ===== */

/* About Page Styles */
.about {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
    overflow: hidden;
}

.about::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="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.about-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
}

.about-card:hover .about-icon::before {
    opacity: 1;
}

.about-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon i {
    transform: rotate(360deg);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.about-card:hover h3::after {
    width: 60px;
}

.about-card p {
    color: var(--secondary-700);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover p {
    color: var(--secondary-800);
}

/* Values Section */
.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.values-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 3rem;
    position: relative;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.location-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.location-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.location-content li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.location-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.location-info {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(173, 31, 31, 0.1);
}

.location-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-700);
}

.location-info i {
    color: var(--wine-red-600);
    width: 20px;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.about-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.service-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.service-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

/* Equipment Gallery */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.equipment-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.equipment-info p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Technical Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.support-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.support-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Second-Hand Equipment */
.secondhand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.secondhand-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secondhand-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.secondhand-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.secondhand-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.secondhand-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--wine-red-600);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

.contact-item a {
    color: var(--wine-red-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-600);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine-red-600);
    box-shadow: 0 0 0 3px rgba(173, 31, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-50), var(--primary-50));
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, var(--error-50), var(--wine-red-50));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid var(--wine-red-200);
}

.emergency-contact h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: var(--secondary-700);
    margin-bottom: 2rem;
}

.emergency-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.emergency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.emergency-item i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.emergency-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-900);
}

/* Training Page Styles */
.training {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.training-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.overview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 1);
}

.feature i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.feature span {
    color: var(--secondary-700);
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Programs */
.training-programs {
    margin: 4rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-icon i {
    font-size: 1.8rem;
    color: white;
}

.program-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-card li {
    padding: 0.25rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.duration {
    display: inline-block;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Training */
.custom-training {
    margin: 4rem 0;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.custom-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.custom-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.custom-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Schedule */
.training-schedule {
    margin: 4rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.schedule-date {
    text-align: center;
    min-width: 80px;
}

.schedule-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wine-red-600);
    text-transform: uppercase;
}

.schedule-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.schedule-details p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.schedule-details .location {
    font-size: 0.9rem;
    color: var(--wine-red-600);
    font-weight: 500;
}

/* Training CTA */
.training-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.training-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.training-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Partners Page Styles */
.partners {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.partners-overview {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.partners-overview p {
    font-size: 1.2rem;
    color: var(--secondary-700);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Partner Categories */
.partner-categories {
    margin: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Featured Partners */
.featured-partners {
    margin: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    background: var(--secondary-200);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partner-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-tag {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    color: var(--wine-red-700);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(173, 31, 31, 0.2);
}

/* Partnership Benefits */
.partnership-benefits {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Become a Partner */
.become-partner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.become-partner h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.become-partner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-grid,
    .equipment-grid,
    .support-grid,
    .services-grid,
    .values-grid,
    .categories-grid,
    .partners-grid,
    .benefits-grid,
    .programs-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-section,
    .secondhand-content,
    .custom-content,
    .training-overview,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1.5rem;
    }

    .about-cta,
    .services-cta,
    .training-cta,
    .become-partner {
        padding: 2rem 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .emergency-numbers {
        flex-direction: column;
        align-items: center;
    }

    .training-features {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .emergency-item {
        padding: 0.75rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.service-card,
.partner-card,
.support-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for all links */
html {
    scroll-behavior: smooth;
}

/* ===== COMPREHENSIVE PAGE STYLING ===== */

/* About Page Styles */
.about {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
    overflow: hidden;
}

.about::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="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.about-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
}

.about-card:hover .about-icon::before {
    opacity: 1;
}

.about-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon i {
    transform: rotate(360deg);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.about-card:hover h3::after {
    width: 60px;
}

.about-card p {
    color: var(--secondary-700);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover p {
    color: var(--secondary-800);
}

/* Values Section */
.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.values-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 3rem;
    position: relative;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.location-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.location-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.location-content li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.location-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.location-info {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(173, 31, 31, 0.1);
}

.location-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-700);
}

.location-info i {
    color: var(--wine-red-600);
    width: 20px;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.about-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.service-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.service-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

/* Equipment Gallery */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.equipment-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.equipment-info p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Technical Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.support-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.support-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Second-Hand Equipment */
.secondhand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.secondhand-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secondhand-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.secondhand-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.secondhand-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.secondhand-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--wine-red-600);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

.contact-item a {
    color: var(--wine-red-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-600);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine-red-600);
    box-shadow: 0 0 0 3px rgba(173, 31, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-50), var(--primary-50));
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, var(--error-50), var(--wine-red-50));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid var(--wine-red-200);
}

.emergency-contact h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: var(--secondary-700);
    margin-bottom: 2rem;
}

.emergency-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.emergency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.emergency-item i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.emergency-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-900);
}

/* Training Page Styles */
.training {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.training-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.overview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 1);
}

.feature i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.feature span {
    color: var(--secondary-700);
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Programs */
.training-programs {
    margin: 4rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-icon i {
    font-size: 1.8rem;
    color: white;
}

.program-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-card li {
    padding: 0.25rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.duration {
    display: inline-block;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Training */
.custom-training {
    margin: 4rem 0;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.custom-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.custom-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.custom-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Schedule */
.training-schedule {
    margin: 4rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.schedule-date {
    text-align: center;
    min-width: 80px;
}

.schedule-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wine-red-600);
    text-transform: uppercase;
}

.schedule-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.schedule-details p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.schedule-details .location {
    font-size: 0.9rem;
    color: var(--wine-red-600);
    font-weight: 500;
}

/* Training CTA */
.training-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.training-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.training-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Partners Page Styles */
.partners {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.partners-overview {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.partners-overview p {
    font-size: 1.2rem;
    color: var(--secondary-700);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Partner Categories */
.partner-categories {
    margin: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Featured Partners */
.featured-partners {
    margin: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    background: var(--secondary-200);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partner-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-tag {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    color: var(--wine-red-700);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(173, 31, 31, 0.2);
}

/* Partnership Benefits */
.partnership-benefits {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Become a Partner */
.become-partner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.become-partner h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.become-partner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-grid,
    .equipment-grid,
    .support-grid,
    .services-grid,
    .values-grid,
    .categories-grid,
    .partners-grid,
    .benefits-grid,
    .programs-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-section,
    .secondhand-content,
    .custom-content,
    .training-overview,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1.5rem;
    }

    .about-cta,
    .services-cta,
    .training-cta,
    .become-partner {
        padding: 2rem 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .emergency-numbers {
        flex-direction: column;
        align-items: center;
    }

    .training-features {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .emergency-item {
        padding: 0.75rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.service-card,
.partner-card,
.support-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for all links */
html {
    scroll-behavior: smooth;
}

/* ===== COMPREHENSIVE PAGE STYLING ===== */

/* About Page Styles */
.about {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
    overflow: hidden;
}

.about::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="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.about-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
}

.about-card:hover .about-icon::before {
    opacity: 1;
}

.about-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon i {
    transform: rotate(360deg);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.about-card:hover h3::after {
    width: 60px;
}

.about-card p {
    color: var(--secondary-700);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover p {
    color: var(--secondary-800);
}

/* Values Section */
.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.values-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 3rem;
    position: relative;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.location-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.location-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.location-content li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.location-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.location-info {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(173, 31, 31, 0.1);
}

.location-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-700);
}

.location-info i {
    color: var(--wine-red-600);
    width: 20px;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.about-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.service-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.service-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

/* Equipment Gallery */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.equipment-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.equipment-info p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Technical Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.support-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.support-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Second-Hand Equipment */
.secondhand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.secondhand-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secondhand-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.secondhand-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.secondhand-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.secondhand-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--wine-red-600);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

.contact-item a {
    color: var(--wine-red-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-600);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine-red-600);
    box-shadow: 0 0 0 3px rgba(173, 31, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-section {
    margin: 4rem 0;
}

.map-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-50), var(--primary-50));
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, var(--error-50), var(--wine-red-50));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
    border: 2px solid var(--wine-red-200);
}

.emergency-contact h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.emergency-contact p {
    color: var(--secondary-700);
    margin-bottom: 2rem;
}

.emergency-numbers {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.emergency-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.emergency-item i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.emergency-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-900);
}

/* Training Page Styles */
.training {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.training-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.overview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.overview-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 1);
}

.feature i {
    color: var(--wine-red-600);
    font-size: 1.2rem;
}

.feature span {
    color: var(--secondary-700);
    font-weight: 500;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Programs */
.training-programs {
    margin: 4rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1);
}

.program-icon i {
    font-size: 1.8rem;
    color: white;
}

.program-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.program-card li {
    padding: 0.25rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.duration {
    display: inline-block;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Custom Training */
.custom-training {
    margin: 4rem 0;
}

.custom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.custom-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.custom-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.custom-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.custom-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.custom-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Training Schedule */
.training-schedule {
    margin: 4rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.schedule-date {
    text-align: center;
    min-width: 80px;
}

.schedule-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wine-red-600);
    text-transform: uppercase;
}

.schedule-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.schedule-details p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.schedule-details .location {
    font-size: 0.9rem;
    color: var(--wine-red-600);
    font-weight: 500;
}

/* Training CTA */
.training-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.training-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.training-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Partners Page Styles */
.partners {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.partners-overview {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.partners-overview p {
    font-size: 1.2rem;
    color: var(--secondary-700);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Partner Categories */
.partner-categories {
    margin: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.category-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Featured Partners */
.featured-partners {
    margin: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-100);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    background: var(--secondary-200);
}

.partner-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.partner-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--secondary-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-products {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-tag {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    color: var(--wine-red-700);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(173, 31, 31, 0.2);
}

/* Partnership Benefits */
.partnership-benefits {
    margin: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.benefit-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Become a Partner */
.become-partner {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.become-partner h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.become-partner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .about-grid,
    .equipment-grid,
    .support-grid,
    .services-grid,
    .values-grid,
    .categories-grid,
    .partners-grid,
    .benefits-grid,
    .programs-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-section,
    .secondhand-content,
    .custom-content,
    .training-overview,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1.5rem;
    }

    .about-cta,
    .services-cta,
    .training-cta,
    .become-partner {
        padding: 2rem 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .emergency-numbers {
        flex-direction: column;
        align-items: center;
    }

    .training-features {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-card,
    .equipment-item,
    .support-item,
    .service-card,
    .partner-card,
    .program-card,
    .schedule-item {
        padding: 1rem;
    }

    .about-cta h3,
    .services-cta h3,
    .training-cta h3,
    .become-partner h3 {
        font-size: 1.8rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .emergency-item {
        padding: 0.75rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.service-card,
.partner-card,
.support-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for all links */
html {
    scroll-behavior: smooth;
}

/* ===== COMPREHENSIVE PAGE STYLING ===== */

/* About Page Styles */
.about {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
    overflow: hidden;
}

.about::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="%23f0f0f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
}

.about-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-card:hover .about-icon {
    transform: scale(1.1);
}

.about-card:hover .about-icon::before {
    opacity: 1;
}

.about-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.about-card:hover .about-icon i {
    transform: rotate(360deg);
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
    position: relative;
}

.about-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.about-card:hover h3::after {
    width: 60px;
}

.about-card p {
    color: var(--secondary-700);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.about-card:hover p {
    color: var(--secondary-800);
}

/* Values Section */
.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.values-section h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 3rem;
    position: relative;
}

.values-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Location Section */
.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.location-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1.5rem;
}

.location-content p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.location-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.location-content li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.location-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.location-info {
    background: linear-gradient(135deg, var(--wine-red-50), var(--gold-50));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(173, 31, 31, 0.1);
}

.location-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-700);
}

.location-info i {
    color: var(--wine-red-600);
    width: 20px;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.about-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services {
    background: linear-gradient(135deg, var(--secondary-50) 0%, var(--primary-50) 100%);
    position: relative;
}

.service-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.service-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-900);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.service-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--wine-red-600), var(--gold-500));
    border-radius: 2px;
}

/* Equipment Gallery */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.equipment-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.equipment-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.equipment-item:hover img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.equipment-info p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Technical Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.support-item i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.support-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.support-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.support-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Second-Hand Equipment */
.secondhand-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.secondhand-text p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.secondhand-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.secondhand-text li {
    padding: 0.5rem 0;
    color: var(--secondary-700);
    position: relative;
    padding-left: 1.5rem;
}

.secondhand-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--wine-red-600);
    font-weight: bold;
}

.secondhand-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Additional Services */
.additional-services {
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--wine-red-600);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--secondary-700);
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--wine-red-600), var(--wine-red-700));
    border-radius: 20px;
    color: white;
    margin: 3rem 0;
}

.services-cta h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--secondary-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--wine-red-600);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    color: var(--gold-600);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-900);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--secondary-700);
    line-height: 1.6;
}

.contact-item a {
    color: var(--wine-red-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-600);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-900);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wine-red-600);
    box-shadow: 0 0 0 3px rgba(173, 31, 31, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Equipment & Services We Offer */
.equipment-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.equipment-service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.equipment-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #ee7575;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d12b2b, #ad1f1f);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 24px;
    color: #ffffff;
}

.equipment-service-card h4 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight: 600;
}

.equipment-service-card p {
    color: #000000;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-tag {
    background: #fce4e4;
    color: #ad1f1f;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #f9cdcd;
}

/* Responsive adjustments for equipment services */
@media (max-width: 768px) {
    .equipment-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
}