/* Main CSS - อาหารหวานคาว */

/* Custom CSS Variables */
:root {
    --thai-gold: #FF8C00;
    --thai-red: #DC143C;
    --thai-green: #228B22;
    --thai-dark-green: #034E25;
    --thai-light-green: #97F097;
    --thai-brown: #8B4513;
    --thai-cream: #FFF8DC;
}

/* Font Smoothing */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--thai-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--thai-red);
}

/* Line Clamp Utilities */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Animation Classes */
@keyframes fade-in {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slide-in {
    from { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

@keyframes scale-in {
    from { 
        opacity: 0; 
        transform: scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: scale(1); 
    }
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fade-in 0.8s ease-out 0.3s both;
}

.animate-slide-in {
    animation: slide-in 0.6s ease-out;
}

.animate-scale-in {
    animation: scale-in 0.5s ease-out;
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Custom Button Styles */
.btn-thai-gold {
    background: var(--thai-gold);
    color: white;
    transition: all 0.3s ease;
}

.btn-thai-gold:hover {
    background: var(--thai-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-thai-green {
    background: var(--thai-green);
    color: white;
    transition: all 0.3s ease;
}

.btn-thai-green:hover {
    background: var(--thai-dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Loading Spinner */
.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--thai-gold);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    animation: slide-in 0.3s ease-out;
}

.notification.success {
    background: #10B981;
}

.notification.error {
    background: #EF4444;
}

.notification.warning {
    background: #F59E0B;
}

.notification.info {
    background: #3B82F6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-full {
        width: 100% !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    /* Force hero buttons to stay in one row on all mobile devices */
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .hero-buttons a {
        display: flex !important;
        flex: 1 !important;
        min-width: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    /* Mobile Hero Section Button Fixes */
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.4rem !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        flex-wrap: nowrap !important;
        overflow: hidden !important;
    }
    
    .hero-buttons a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 45% !important;
        padding: 0.5rem 0.4rem !important;
        font-size: 13px !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        min-height: 40px !important;
        border-radius: 0.5rem !important;
        text-decoration: none !important;
    }
    
    /* Mobile Hero Text Adjustments */
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* Mobile Hero Section Padding */
    .hero-section {
        padding: 1rem 1rem !important;
        min-height: 60vh !important;
    }
    
    /* Mobile Section Height Adjustments */
    .py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-12 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .py-8 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    /* Mobile Section Spacing Reductions */
    .mb-12 {
        margin-bottom: 2rem !important;
    }
    
    .mb-8 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-6 {
        margin-bottom: 1rem !important;
    }
    
    .mb-4 {
        margin-bottom: 0.75rem !important;
    }
    
    /* Mobile Grid Spacing */
    .gap-8 {
        gap: 1.5rem !important;
    }
    
    .gap-6 {
        gap: 1rem !important;
    }
    
    /* Mobile Menu Improvements */
    #mobile-menu {
        animation: slideDown 0.3s ease-out;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    #mobile-menu.hidden {
        animation: slideUp 0.2s ease-in;
    }
    
    .mobile-menu-link {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 140, 0, 0.2);
    }
    
    /* Ensure mobile menu is above other content */
    nav {
        position: relative;
        z-index: 1000;
    }
    
    #mobile-menu {
        position: relative;
        z-index: 999;
    }
    
    /* Improve touch targets */
    .mobile-menu-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Mobile menu button improvements */
    #mobile-menu-button {
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: rgba(255, 140, 0, 0.2);
        touch-action: manipulation;
    }
    
    /* Admin mobile menu specific improvements */
    .admin-mobile-nav {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .mobile-nav-link {
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(34, 139, 34, 0.1);
        touch-action: manipulation;
        transition: all 0.2s ease;
    }
    
    .mobile-nav-link:active {
        background-color: rgba(34, 139, 34, 0.05);
        transform: scale(0.98);
    }
}

/* Small Mobile Screens (320px and below) */
@media (max-width: 320px) {
    .mobile-menu-link {
        font-size: 14px;
        padding: 12px 16px;
    }
    
    #mobile-menu-button {
        min-width: 40px;
        min-height: 40px;
    }
    
    #mobile-menu-button i {
        font-size: 16px;
    }
    
    /* Adjust logo text on very small screens */
    nav .font-bold.text-xl {
        font-size: 16px;
    }
    
    /* Extra small mobile hero adjustments */
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.25rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.25rem !important;
        overflow: hidden !important;
    }
    
    .hero-buttons a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 48% !important;
        padding: 0.4rem 0.3rem !important;
        font-size: 12px !important;
        min-height: 36px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        border-radius: 0.4rem !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-section {
        padding: 0.75rem 0.5rem !important;
        min-height: 50vh !important;
    }
    
    /* Extra small mobile section adjustments */
    .py-16 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .py-12 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .py-8 {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
}

/* Small Mobile Screens (360px-480px) */
@media (min-width: 360px) and (max-width: 480px) {
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.4rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        overflow: hidden !important;
    }
    
    .hero-buttons a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 47% !important;
        padding: 0.55rem 0.5rem !important;
        font-size: 13px !important;
        min-height: 42px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        border-radius: 0.5rem !important;
    }
    
    .hero-title {
        font-size: 1.6rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .hero-section {
        min-height: 55vh !important;
    }
    
    .py-16 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }
}

/* Medium Mobile Screens (480px-640px) */
@media (min-width: 480px) and (max-width: 640px) {
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.75rem !important;
        overflow: hidden !important;
    }
    
    .hero-buttons a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 46% !important;
        padding: 0.6rem 0.7rem !important;
        font-size: 14px !important;
        min-height: 42px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        border-radius: 0.5rem !important;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section {
        min-height: 60vh !important;
    }
    
    .py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Large Mobile Screens and Small Tablets */
@media (min-width: 640px) and (max-width: 768px) {
    .mobile-menu-link {
        font-size: 16px;
        padding: 14px 20px;
    }
    
    #mobile-menu {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    
    /* Larger button font for bigger screens */
    .hero-buttons a {
        font-size: 16px !important;
    }
    
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.75rem !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        overflow: hidden !important;
    }
    
    .hero-buttons a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        max-width: 45% !important;
        padding: 0.7rem 0.8rem !important;
        font-size: 15px !important;
        min-height: 44px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        border-radius: 0.5rem !important;
    }
    
    .hero-section {
        min-height: 65vh !important;
    }
    
    .py-16 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
}

/* Mobile Menu Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Desktop and Large Screens */
@media (min-width: 769px) {
    .hero-buttons a {
        font-size: 16px !important;
        padding: 0.75rem 1rem !important;
    }
    
    /* Desktop Section Height Reductions */
    .py-16 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .py-12 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-8 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    /* Desktop Hero Section */
    .hero-section {
        min-height: 70vh !important;
    }
    
    /* Desktop Hero Text Adjustments */
    .hero-title {
        font-size: 3rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
        margin-bottom: 2rem !important;
    }
    
    /* Desktop Section Spacing */
    .mb-12 {
        margin-bottom: 2.5rem !important;
    }
    
    .mb-8 {
        margin-bottom: 2rem !important;
    }
    
    .mb-6 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-4 {
        margin-bottom: 1rem !important;
    }
    
    /* Desktop Grid Spacing */
    .gap-8 {
        gap: 1.5rem !important;
    }
    
    .gap-6 {
        gap: 1rem !important;
    }
}

/* Large Desktop Screens */
@media (min-width: 1024px) {
    .py-16 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    
    .py-12 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }
    
    .py-8 {
        padding-top: 1.25rem !important;
        padding-bottom: 1.25rem !important;
    }
    
    .hero-section {
        min-height: 60vh !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 0.875rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.125rem !important;
        margin-bottom: 1.75rem !important;
    }
    
    .mb-12 {
        margin-bottom: 2rem !important;
    }
    
    .mb-8 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-6 {
        margin-bottom: 1.25rem !important;
    }
    
    .gap-8 {
        gap: 1.25rem !important;
    }
    
    .gap-6 {
        gap: 0.875rem !important;
    }
}

/* Extra Large Desktop Screens */
@media (min-width: 1280px) {
    .py-16 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .py-12 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .py-8 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .hero-section {
        min-height: 50vh !important;
    }
    
    .hero-title {
        font-size: 2.25rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .mb-12 {
        margin-bottom: 1.75rem !important;
    }
    
    .mb-8 {
        margin-bottom: 1.25rem !important;
    }
    
    .mb-6 {
        margin-bottom: 1rem !important;
    }
    
    .gap-8 {
        gap: 1rem !important;
    }
    
    .gap-6 {
        gap: 0.75rem !important;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break {
        page-break-after: always;
    }
}

/* Focus Styles for Accessibility */
.focus-visible:focus {
    outline: 2px solid var(--thai-gold);
    outline-offset: 2px;
}

/* Admin menu focus styles */
.sidebar-item:focus-visible {
    outline: 2px solid var(--thai-green);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Screen reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0.5rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --thai-gold: #FFA500;
        --thai-red: #FF0000;
        --thai-green: #00FF00;
        --thai-dark-green: #006400;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .sidebar-item:hover {
        transform: none !important;
    }
    
    #mobileMenuBtn:active {
        transform: none !important;
    }
}

/* Image Loading States */
img {
    transition: opacity 0.3s ease;
}

img.lazy {
    opacity: 0.7;
}

img.loaded {
    opacity: 1;
}

img.error {
    opacity: 0.8;
    filter: grayscale(20%);
}

/* Image Loading Spinner */
.img-loading {
    position: relative;
    background: #f3f4f6;
}

.img-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid var(--thai-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

/* Prevent image loading issues */
img[src=""] {
    display: none;
}

/* SVG Text Rendering */
svg text {
    font-family: 'Prompt', 'Kanit', 'Sarabun', sans-serif !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent image loading loops */
img[data-loading="true"] {
    pointer-events: none;
}

img.error {
    background: #f3f4f6;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBmaWxsPSIjRjNGNEY2Ii8+CjxwYXRoIGQ9Ik0yMCAxMEMxNi42ODYzIDEwIDE0IDEyLjY4NjMgMTQgMTZDMTQgMTkuMzEzNyAxNi42ODYzIDIyIDIwIDIyQzIzLjMxMzcgMjIgMjYgMTkuMzEzNyAyNiAxNkMyNiAxMi42ODYzIDIzLjMxMzcgMTAgMjAgMTBaIiBmaWxsPSIjOUNBM0FGIi8+CjxwYXRoIGQ9Ik0yMCAxNkwyMiAxOEwyMCAyMEwxOCAxOEwyMCAxNloiIGZpbGw9IiM2QjcyODAiLz4KPC9zdmc+');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
}

/* Client Logos Section */
.client-logos-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.client-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMzAiIGN5PSIzMCIgcj0iMiIgZmlsbD0iI0ZGOEMwMCIgb3BhY2l0eT0iMC4xIi8+Cjwvc3ZnPg==') repeat;
    opacity: 0.3;
    z-index: 0;
}

.client-logo-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.client-logo-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.3);
}

.client-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(220, 20, 60, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.client-logo-item:hover::before {
    opacity: 1;
}

.client-logo-img {
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.client-logo-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--thai-brown);
    transition: color 0.3s ease;
}

.client-logo-item:hover .client-logo-title {
    color: var(--thai-gold);
}

/* Responsive adjustments for client logos */
@media (max-width: 768px) {
    .client-logo-item {
        padding: 1rem;
    }
    
    .client-logo-img {
        width: 20px;
        height: 20px;
    }
    
    .client-logo-title {
        font-size: 10px;
    }
}

@media (max-width: 640px) {
    .client-logos-section .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}