:root {

    /* Primary Brand Colors - Extracted from Logo */

    --primary: #1a3a5c;

    --primary-light: #2d5a87;

    --primary-dark: #0f2840;

    --accent: #4caf50;

    --accent-hover: #2e7d32;

    --accent-light: #81c784;

    --accent-gradient: linear-gradient(135deg, #4caf50 0%, #81c784 50%, #ffffff 100%);

    --accent-gradient-hover: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #e8f5e9 100%);

    --accent-gradient-soft: linear-gradient(135deg, #81c784 0%, #c8e6c9 50%, #ffffff 100%);

    --accent-gradient-btn: linear-gradient(135deg, #4caf50 0%, #66bb6a 50%, #a5d6a7 100%);

    --secondary: #00897b;

    --secondary-light: #26a69a;

    

    /* High Contrast Gradients */

    --gradient-1: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 100%);

    --gradient-2: linear-gradient(135deg, #4caf50 0%, #81c784 50%, #ffffff 100%);

    --gradient-3: linear-gradient(135deg, #00897b 0%, #26a69a 100%);

    --gradient-4: linear-gradient(135deg, #1a3a5c 0%, #00897b 100%);

    

    /* Text Colors - High Contrast */

    --text: #1a1a2e;

    --text-light: #4a5568;

    --text-muted: #718096;

    --text-inverse: #ffffff;

    --text-accent: #2e7d32;

    --text-accent-gradient: linear-gradient(135deg, #4caf50 0%, #81c784 100%);

    

    /* Background Colors */

    --bg: #ffffff;

    --bg-alt: #f8faf9;

    --bg-dark: #f1f5f4;

    --bg-card: #ffffff;

    --bg-overlay: rgba(26, 58, 92, 0.85);

    

    /* Border Colors */

    --border: #e2e8f0;

    --border-light: #edf2f7;

    --border-dark: #cbd5e0;

    

    /* Shadow System */

    --shadow: rgba(26, 58, 92, 0.08);

    --shadow-lg: rgba(26, 58, 92, 0.12);

    --shadow-xl: rgba(26, 58, 92, 0.18);

    --shadow-accent: rgba(46, 125, 50, 0.25);

    

    /* Status Colors */

    --success: #4caf50;

    --success-gradient: linear-gradient(135deg, #4caf50 0%, #81c784 50%, #ffffff 100%);

    --error: #c62828;

    --warning: #ef6c00;

    --info: #1a3a5c;

    

    /* White for contrast */

    --white: #ffffff;

    

    /* Animation & Transitions */

    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    

    /* Border Radius */

    --radius: 8px;

    --radius-lg: 16px;

    --radius-full: 9999px;

    

    /* Typography */

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --font-display: 'Playfair Display', Georgia, serif;

    /* Typography Scale - Responsive */
    --font-xs: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
    --font-sm: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --font-base: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
    --font-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --font-xl: clamp(1.125rem, 1.05rem + 0.375vw, 1.25rem);
    --font-2xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
    --font-3xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
    --font-4xl: clamp(1.75rem, 1.4rem + 1.75vw, 2.25rem);
    --font-5xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);

    /* 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;

}



[data-theme="dark"] {

    /* Primary Brand Colors - Dark Mode */

    --primary: #2d5a87;

    --primary-light: #4a7db5;

    --primary-dark: #1a3a5c;

    --accent: #4caf50;

    --accent-hover: #66bb6a;

    --accent-light: #81c784;

    --secondary: #26a69a;

    

    /* High Contrast Gradients - Dark Mode */

    --gradient-1: linear-gradient(135deg, #1a3a5c 0%, #2d5a87 100%);

    --gradient-2: linear-gradient(135deg, #4caf50 0%, #81c784 50%, #ffffff 100%);

    --gradient-3: linear-gradient(135deg, #00897b 0%, #26a69a 100%);

    --gradient-4: linear-gradient(135deg, #1a3a5c 0%, #00897b 100%);

    

    /* Text Colors - Dark Mode */

    --text: #f0f4f3;

    --text-light: #d1d9d6;

    --text-muted: #a0aec0;

    --text-inverse: #1a1a2e;

    --text-accent: #4caf50;

    

    /* Background Colors - Dark Mode */

    --bg: #0f1a14;

    --bg-alt: #162419;

    --bg-dark: #1e3025;

    --bg-card: #162419;

    --bg-overlay: rgba(15, 26, 20, 0.9);

    

    /* Border Colors - Dark Mode */

    --border: #2d4a3a;

    --border-light: #3d5c4a;

    --border-dark: #4a6b58;

    

    /* Shadow System - Dark Mode */

    --shadow: rgba(0, 0, 0, 0.3);

    --shadow-lg: rgba(0, 0, 0, 0.4);

    --shadow-xl: rgba(0, 0, 0, 0.5);

    --shadow-accent: rgba(76, 175, 80, 0.3);

}



*, *::before, *::after {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



html {

    scroll-behavior: smooth;

    font-size: 16px;

}



body {

    font-family: var(--font-primary);

    color: var(--text);

    background-color: var(--bg);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;

}



.container {

    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 20px;

}



a {

    text-decoration: none;

    color: inherit;

    transition: color var(--transition);

}



img {

    max-width: 100%;

    height: auto;

    display: block;

}



ul, ol {

    list-style: none;

}



button {

    cursor: pointer;

    border: none;

    background: none;

    font-family: inherit;

}



input, textarea, select {

    font-family: inherit;

    font-size: inherit;

}



h1, h2, h3, h4, h5, h6 {

    font-family: var(--font-display);

    font-weight: 600;

    line-height: 1.3;

    color: var(--text);

}



/* High-Contrast Button System */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 16px 32px;

    font-size: 0.95rem;

    font-weight: 700;

    border-radius: var(--radius);

    transition: all var(--transition);

    cursor: pointer;

    border: 2px solid transparent;

    text-decoration: none;

    position: relative;

    overflow: hidden;

    letter-spacing: 0.025em;

    text-transform: uppercase;

    box-shadow: 0 4px 12px var(--shadow);

}



/* Primary Action Button - High Contrast */

.btn-primary {

    background: var(--accent-gradient-btn);

    color: var(--text-inverse);

    border-color: var(--accent);

    font-weight: 800;

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}



.btn-primary:hover {

    background: var(--accent-gradient-hover);

    border-color: var(--accent-hover);

    transform: translateY(-2px);

    box-shadow: 0 8px 25px var(--shadow-accent);

}



.btn-primary:active {

    transform: translateY(0);

    box-shadow: 0 4px 12px var(--shadow-accent);

}



/* Secondary Button - High Contrast */

.btn-secondary {

    background: var(--primary);

    color: var(--text-inverse);

    border-color: var(--primary);

    font-weight: 700;

}



.btn-secondary:hover {

    background: var(--primary-light);

    border-color: var(--primary-light);

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(26, 58, 92, 0.3);

}



/* Outline Button - High Contrast */

.btn-outline {

    background: transparent;

    color: var(--text);

    border-color: var(--border);

    font-weight: 600;

}



.btn-outline:hover {

    background: var(--bg-alt);

    border-color: var(--accent);

    color: var(--accent);

    transform: translateY(-1px);

    box-shadow: 0 6px 20px var(--shadow);

}



/* Dark Mode Outline Button */

[data-theme="dark"] .btn-outline {

    color: var(--text-light);

    border-color: var(--border-light);

}



[data-theme="dark"] .btn-outline:hover {

    background: var(--bg-dark);

    border-color: var(--accent);

    color: var(--accent);

    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.2);

}



/* Ghost Button - Subtle but Visible */

.btn-ghost {

    background: transparent;

    color: var(--text-light);

    border-color: transparent;

    font-weight: 600;

}



.btn-ghost:hover {

    background: var(--bg-alt);

    color: var(--text);

    transform: translateY(-1px);

}



/* Success Button */

.btn-success {

    background: var(--accent-gradient-btn);

    color: var(--text-inverse);

    border-color: var(--success);

}



.btn-success:hover {

    background: var(--accent-gradient-hover);

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);

}



/* Danger Button */

.btn-danger {

    background: var(--error);

    color: var(--text-inverse);

    border-color: var(--error);

}



.btn-danger:hover {

    background: #9a1f1f;

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);

}



/* Button Sizes */

.btn-sm {

    padding: 10px 20px;

    font-size: 0.875rem;

    font-weight: 600;

}



.btn-lg {

    padding: 20px 40px;

    font-size: 1.1rem;

    font-weight: 700;

}



.btn-xl {

    padding: 24px 48px;

    font-size: 1.25rem;

    font-weight: 800;

}



.btn-block {

    width: 100%;

}



/* Button States */

.btn:disabled {

    opacity: 0.5;

    cursor: not-allowed;

    transform: none !important;

}



.btn:focus {

    outline: 2px solid var(--accent);

    outline-offset: 2px;

}



/* Loading State */

.btn.loading {

    pointer-events: none;

    opacity: 0.8;

}



.btn.loading::after {

    content: '';

    position: absolute;

    width: 16px;

    height: 16px;

    margin: auto;

    border: 2px solid transparent;

    border-top-color: currentColor;

    border-radius: 50%;

    animation: spin 1s linear infinite;

}



@keyframes spin {

    to { transform: rotate(360deg); }

}



/* Top Bar - High Contrast */

.top-bar {

    background: var(--primary);

    color: var(--text-inverse);

    padding: 12px 0;

    font-size: 0.85rem;

    font-weight: 500;

    border-bottom: 1px solid var(--border);

}



[data-theme="dark"] .top-bar {

    background: var(--bg-dark);

    color: var(--text);

    border-bottom-color: var(--border);

}



.top-bar-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.top-bar-left {

    display: flex;

    gap: 25px;

}



.top-bar-left span {

    display: flex;

    align-items: center;

    gap: 8px;

}



.top-bar-right {

    display: flex;

    align-items: center;

    gap: 20px;

}



.social-links {

    display: flex;

    gap: 15px;

}



.social-links a {

    color: var(--white);

    opacity: 0.8;

    transition: opacity var(--transition);

}



.social-links a:hover {

    opacity: 1;

}



.theme-toggle {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: rgba(255,255,255,0.1);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all var(--transition);

}



.theme-toggle:hover {

    background: rgba(255,255,255,0.2);

}



.theme-toggle .fa-sun {

    display: none;

}



[data-theme="dark"] .theme-toggle .fa-moon {

    display: none;

}



[data-theme="dark"] .theme-toggle .fa-sun {

    display: block;

}



/* Main Header - Enhanced Visibility */

.main-header {

    background: var(--bg);

    box-shadow: 0 2px 20px var(--shadow);

    position: sticky;

    top: 0;

    z-index: var(--z-sticky);

    transition: all var(--transition);

    border-bottom: 1px solid var(--border-light);

}



.main-header.scrolled {

    box-shadow: 0 5px 30px var(--shadow-lg);

    background: var(--bg);

}



[data-theme="dark"] .main-header {

    background: var(--bg-card);

    border-bottom-color: var(--border);

}



[data-theme="dark"] .main-header.scrolled {

    background: var(--bg-card);

    box-shadow: 0 5px 30px var(--shadow);

}



.header-content {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 0;

}



.logo {

    display: flex;

    align-items: center;

}

.logo img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Responsive logo sizing */
@media (max-width: 1200px) {
    .logo img {
        height: 70px;
    }
}

@media (max-width: 992px) {
    .logo img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }
}

@media (max-width: 576px) {
    .logo img {
        height: 60px;
    }
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
}

[data-theme="dark"] .logo-dark {
    display: block;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Responsive mobile logo sizing */
@media (max-width: 768px) {
    .mobile-logo img {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .mobile-logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .mobile-logo img {
        height: 35px;
    }
}

.mobile-logo .logo-light {
    display: block;
}

.mobile-logo .logo-dark {
    display: none;
}

[data-theme="dark"] .mobile-logo .logo-light {
    display: none;
}

[data-theme="dark"] .mobile-logo .logo-dark {
    display: block;
}

.logo-text {

    font-family: var(--font-display);

    font-size: 1.8rem;

    font-weight: 700;

    color: var(--text);

}



.logo-text span {

    color: var(--accent);

}



.main-nav .nav-menu {

    display: flex;

    gap: 35px;

}



.main-nav .nav-menu > li {

    position: relative;

}



.main-nav .nav-menu > li > a {

    font-weight: 500;

    padding: 10px 0;

    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--text);

    transition: color var(--transition);

}



.main-nav .nav-menu > li > a:hover,

.main-nav .nav-menu > li > a.active {

    color: var(--accent);

}



.main-nav .nav-menu > li > a i {

    font-size: 0.7rem;

    transition: transform var(--transition);

}



.main-nav .nav-menu > li:hover > a i {

    transform: rotate(180deg);

}



/* Mega Menu */

.mega-menu {

    position: absolute;

    top: 100%;

    left: 50%;

    transform: translateX(-50%) translateY(10px);

    background: var(--bg);

    border-radius: var(--radius-lg);

    box-shadow: 0 20px 50px var(--shadow-lg);

    padding: 30px;

    min-width: min(600px, 90vw);

    max-width: 90vw;

    opacity: 0;

    visibility: hidden;

    transition: all var(--transition);

    border: 1px solid var(--border);

}



.has-dropdown:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}



.mega-menu-content {

    display: grid;

    grid-template-columns: 1fr 1fr 1.2fr;

    gap: 30px;

}



.mega-menu-column h4 {

    font-size: 1rem;

    margin-bottom: 15px;

    color: var(--accent);

}



.mega-menu-column ul li {

    margin-bottom: 10px;

}



.mega-menu-column ul li a {

    color: var(--text-light);

    transition: all var(--transition);

}



.mega-menu-column ul li a:hover {

    color: var(--accent);

    padding-left: 5px;

}



.mega-menu-featured {

    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);

    border-radius: var(--radius);

    padding: 25px;

    color: var(--white);

}



[data-theme="dark"] .mega-menu-featured {

    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-alt) 100%);

}



.featured-promo h4 {

    color: var(--accent);

    margin-bottom: 10px;

}



.featured-promo p {

    font-size: 0.9rem;

    opacity: 0.9;

    margin-bottom: 15px;

}



.header-actions {

    display: flex;

    align-items: center;

    gap: 15px;

}



.search-toggle {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: var(--bg-alt);

    color: var(--text);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all var(--transition);

}



.search-toggle:hover {

    background: var(--accent-gradient-btn);

    color: var(--white);

}

.quote-toggle {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);

    position: relative;

    overflow: hidden;

    font-size: 1.1rem;

}

.quote-toggle::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

    transition: left 0.5s;

}

.quote-toggle:hover {

    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);

    color: var(--white);

    transform: scale(1.1) translateY(-2px);

    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);

}

.quote-toggle:hover::before {

    left: 100%;

}

.quote-toggle:active {

    transform: scale(1.05) translateY(0);

    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);

}

.quote-toggle i {

    position: relative;

    z-index: 1;

    transition: transform 0.3s ease;

}

.quote-toggle:hover i {

    transform: rotate(15deg) scale(1.1);

}

/* Add subtle pulse animation */
@keyframes quotePulse {

    0% {

        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);

    }

    50% {

        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5);

    }

    100% {

        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);

    }

}

.quote-toggle {

    animation: quotePulse 3s ease-in-out infinite;

}

.desktop-only {

    display: block;

}

@media (max-width: 768px) {

    .desktop-only {

        display: none;

    }

}



.btn-header {

    padding: 12px 25px;

}



.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    padding: 10px;

}



.mobile-menu-toggle span {

    width: 25px;

    height: 2px;

    background: var(--text);

    transition: all var(--transition);

}



/* Search Overlay */

.search-overlay {

    position: absolute;

    top: 100%;

    left: 0;

    right: 0;

    background: var(--bg);

    padding: 30px 0;

    box-shadow: 0 10px 30px var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform: translateY(-10px);

    transition: all var(--transition);

}



.search-overlay.active {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



.search-form {

    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 800px;

    margin: 0 auto;

}



.search-form input {

    flex: 1;

    padding: 18px 25px;

    border: 2px solid var(--border);

    border-radius: var(--radius-full);

    font-size: 1.1rem;

    background: var(--bg);

    color: var(--text);

    transition: border-color var(--transition);

}



.search-form input:focus {

    outline: none;

    border-color: var(--accent);

}



.search-form button {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: var(--accent-gradient-btn);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

    transition: all var(--transition);

}



.search-form button:hover {

    background: var(--accent-gradient-hover);

    transform: scale(1.05);

}



.search-close {

    background: var(--bg-alt) !important;

    color: var(--text) !important;

}



/* Mobile Menu */

.mobile-menu {

    position: fixed;

    top: 0;

    left: -100%;

    width: min(320px, 85vw);

    height: 100vh;

    height: 100dvh;

    background: var(--bg);

    z-index: 2000;

    transition: left var(--transition);

    display: flex;

    flex-direction: column;

    overflow-x: hidden;

}



.mobile-menu.active {

    left: 0;

}



.mobile-menu-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

    border-bottom: 1px solid var(--border);

}



.mobile-menu-close {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: var(--bg-alt);

    color: var(--text);

    display: flex;

    align-items: center;

    justify-content: center;

}



.mobile-nav {

    flex: 1;

    padding: 20px;

    overflow-y: auto;

}



.mobile-nav ul li {

    border-bottom: 1px solid var(--border);

}



.mobile-nav ul li a {

    display: block;

    padding: 15px 0;

    font-weight: 500;

    color: var(--text);

}



.mobile-menu-footer {

    padding: 20px;

    border-top: 1px solid var(--border);

}



.mobile-menu-overlay {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(0,0,0,0.5);

    z-index: 1999;

    opacity: 0;

    visibility: hidden;

    transition: all var(--transition);

}



.mobile-menu-overlay.active {

    opacity: 1;

    visibility: visible;

}



/* Hero Section */

.hero-section {

    position: relative;

    min-height: 90vh;

    display: flex;

    align-items: center;

    overflow: hidden;

}



.hero-slider {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

}



.hero-slide {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    opacity: 0;

    transition: opacity 1s ease;

}



.hero-slide.active {

    opacity: 1;

}



.hero-slide-bg {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-size: cover;

    background-position: center;

    transform: scale(1.1);

    transition: transform 8s ease;

}



.hero-slide.active .hero-slide-bg {

    transform: scale(1);

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(135deg, rgba(15, 23, 42, 0.55) 0%, rgba(30, 41, 59, 0.45) 50%, rgba(37, 99, 235, 0.35) 100%);

    /* backdrop-filter: blur(2px); */

}



.hero-content {

    position: relative;

    z-index: 10;

    color: var(--white);

    max-width: 700px;

}



.hero-subtitle {

    display: inline-block;

    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);

    color: var(--white);

    padding: 12px 30px;

    border-radius: var(--radius-full);

    font-size: 0.8rem;

    font-weight: 700;

    margin-bottom: 30px;

    text-transform: uppercase;

    letter-spacing: 2px;

    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);

    animation: slideInLeft 1s ease-out, glow 3s ease-in-out infinite;

    position: relative;

    overflow: hidden;

}



.hero-subtitle::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);

    animation: shimmer 3s infinite;

}



@keyframes shimmer {

    0% { left: -100%; }

    100% { left: 100%; }

}



@keyframes slideInLeft {

    from {

        opacity: 0;

        transform: translateX(-50px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}



@keyframes glow {

    0%, 100% { box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4); }

    50% { box-shadow: 0 8px 35px rgba(59, 130, 246, 0.6); }

}



.hero-title {

    font-size: 5rem;

    font-weight: 900;

    margin-bottom: 30px;

    line-height: 1;

    color: var(--white);

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    animation: slideInUp 1.2s ease-out;

    position: relative;

}



@keyframes slideInUp {

    from {

        opacity: 0;

        transform: translateY(60px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.hero-title span {

    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 50%, var(--secondary-light) 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    position: relative;

    display: inline-block;

    animation: highlightGlow 2s ease-in-out infinite alternate;

}



.hero-title span::after {

    content: '';

    position: absolute;

    bottom: -8px;

    left: 0;

    right: 0;

    height: 4px;

    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--secondary));

    border-radius: 2px;

    animation: slideIn 1.5s ease-out;

}



@keyframes highlightGlow {

    from { filter: brightness(1); }

    to { filter: brightness(1.2); }

}



.hero-description {

    font-size: 1.3rem;

    font-weight: 400;

    opacity: 0.95;

    margin-bottom: 45px;

    line-height: 1.7;

    /* color: var(--text-inverse); */

    max-width: 600px;

    animation: slideInUp 1.4s ease-out, fadeIn 1.6s ease-out;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);

}



/* Dark Mode Hero Description */

[data-theme="dark"] .hero-description {

    /* color: var(--text); */

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);

}



@keyframes fadeIn {

    from { opacity: 0; }

    to { opacity: 0.95; }

}



.hero-buttons {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    animation: slideInUp 1.6s ease-out;

}



.btn-hero {

    padding: 16px 40px;

    font-size: 1.1rem;

    font-weight: 600;

    border-radius: var(--radius-full);

    text-decoration: none;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    position: relative;

    overflow: hidden;

    display: inline-flex;

    align-items: center;

    gap: 10px;

}



.btn-hero::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);

    transition: left 0.5s;

}



.btn-hero:hover::before {

    left: 100%;

}



.btn-hero:hover {

    transform: translateY(-3px) scale(1.05);

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);

}



.hero-nav {

    position: absolute;

    bottom: 50px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    z-index: 10;

}



.hero-nav-dot {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: rgba(255,255,255,0.3);

    cursor: pointer;

    transition: all var(--transition);

    border: 2px solid transparent;

    position: relative;

}



.hero-nav-dot:hover {

    background: rgba(255,255,255,0.6);

    transform: scale(1.1);

}



.hero-nav-dot.active {

    background: var(--accent-gradient-btn);

    transform: scale(1.3);

    border-color: rgba(255,255,255,0.5);

    box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);

}



.hero-nav-btn {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 50px;

    height: 50px;

    background: rgba(255,255,255,0.1);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.2);

    border-radius: 50%;

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all var(--transition);

    z-index: 10;

    font-size: 1.2rem;

}



.hero-nav-btn:hover {

    background: rgba(255,255,255,0.2);

    transform: translateY(-50%) scale(1.1);

    border-color: var(--accent);

}



.hero-nav-prev {

    left: 30px;

}



.hero-nav-next {

    right: 30px;

}



.hero-content-wrapper {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    display: flex;

    align-items: center;

    z-index: 5;

}



/* Advanced Animation System */

.fade-in {

    opacity: 0;

    transform: translateY(50px);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.fade-in.visible {

    opacity: 1;

    transform: translateY(0);

}



.fade-in-left {

    opacity: 0;

    transform: translateX(-80px);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.fade-in-left.visible {

    opacity: 1;

    transform: translateX(0);

}



.fade-in-right {

    opacity: 0;

    transform: translateX(80px);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.fade-in-right.visible {

    opacity: 1;

    transform: translateX(0);

}



.fade-out {

    opacity: 1;

    transform: translateY(0);

    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.fade-out.hidden {

    opacity: 0;

    transform: translateY(-30px);

}



.scale-in {

    opacity: 0;

    transform: scale(0.8);

    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);

}



.scale-in.visible {

    opacity: 1;

    transform: scale(1);

}



.rotate-in {

    opacity: 0;

    transform: rotate(-8deg) scale(0.9);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.rotate-in.visible {

    opacity: 1;

    transform: rotate(0) scale(1);

}



.slide-up {

    opacity: 0;

    transform: translateY(80px);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.slide-up.visible {

    opacity: 1;

    transform: translateY(0);

}



.slide-down {

    opacity: 0;

    transform: translateY(-80px);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.slide-down.visible {

    opacity: 1;

    transform: translateY(0);

}



/* Additional Animation Variations */

.fade-in-up-rotate {

    opacity: 0;

    transform: translateY(60px) rotate(-3deg);

    transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.fade-in-up-rotate.visible {

    opacity: 1;

    transform: translateY(0) rotate(0);

}



.fade-in-scale {

    opacity: 0;

    transform: translateY(40px) scale(0.95);

    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.fade-in-scale.visible {

    opacity: 1;

    transform: translateY(0) scale(1);

}



.slide-in-left {

    opacity: 0;

    transform: translateX(-100px) rotate(-2deg);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.slide-in-left.visible {

    opacity: 1;

    transform: translateX(0) rotate(0);

}



.slide-in-right {

    opacity: 0;

    transform: translateX(100px) rotate(2deg);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.slide-in-right.visible {

    opacity: 1;

    transform: translateX(0) rotate(0);

}



.zoom-in {

    opacity: 0;

    transform: scale(0.3);

    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

}



.zoom-in.visible {

    opacity: 1;

    transform: scale(1);

}



.flip-in {

    opacity: 0;

    transform: perspective(1000px) rotateY(-90deg);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.flip-in.visible {

    opacity: 1;

    transform: perspective(1000px) rotateY(0);

}



/* Staggered Animations for Grid Items */

.stagger-fade-in > * {

    opacity: 0;

    transform: translateY(20px);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.stagger-fade-in.visible > * {

    opacity: 1;

    transform: translateY(0);

}



.stagger-fade-in.visible > *:nth-child(1) { transition-delay: 0ms; }

.stagger-fade-in.visible > *:nth-child(2) { transition-delay: 100ms; }

.stagger-fade-in.visible > *:nth-child(3) { transition-delay: 200ms; }

.stagger-fade-in.visible > *:nth-child(4) { transition-delay: 300ms; }

.stagger-fade-in.visible > *:nth-child(5) { transition-delay: 400ms; }

.stagger-fade-in.visible > *:nth-child(6) { transition-delay: 500ms; }

.stagger-fade-in.visible > *:nth-child(7) { transition-delay: 600ms; }

.stagger-fade-in.visible > *:nth-child(8) { transition-delay: 700ms; }



/* Parallax Effects */

.parallax-slow {

    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.parallax-medium {

    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.parallax-fast {

    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



/* Enhanced Hover Animations */

.hover-lift {

    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),

                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.hover-lift:hover {

    transform: translateY(-12px) scale(1.02);

    box-shadow: 0 25px 50px var(--shadow-xl);

}



.hover-scale {

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),

                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.hover-scale:hover {

    transform: scale(1.08);

    box-shadow: 0 20px 40px var(--shadow-lg);

}



.hover-rotate {

    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),

                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.hover-rotate:hover {

    transform: rotate(3deg) scale(1.05);

    box-shadow: 0 15px 35px var(--shadow-lg);

}



.hover-glow {

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.hover-glow:hover {

    box-shadow: 0 0 30px var(--shadow-accent),

                0 15px 40px var(--shadow-lg);

    transform: translateY(-5px);

}



.hover-slide {

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    position: relative;

    overflow: hidden;

}



.hover-slide::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);

    transition: left 0.6s;

}



.hover-slide:hover::before {

    left: 100%;

}



.hover-slide:hover {

    transform: translateX(5px);

    box-shadow: 0 10px 30px var(--shadow-lg);

}



/* Enhanced Parallax Effects */

.parallax-hero {

    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    will-change: transform;

}



.parallax-section {

    position: relative;

    overflow: hidden;

}



.parallax-bg {

    position: absolute;

    top: -20%;

    left: 0;

    right: 0;

    bottom: -20%;

    background-size: cover;

    background-position: center;

    will-change: transform;

    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.parallax-layer {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    will-change: transform;

}



/* Scroll-based Reveal Effects */

.scroll-reveal {

    opacity: 0;

    transform: translateY(60px);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.scroll-reveal.active {

    opacity: 1;

    transform: translateY(0);

}



.scroll-fade {

    opacity: 0;

    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.scroll-fade.active {

    opacity: 1;

}



.scroll-slide-left {

    transform: translateX(-100px);

    opacity: 0;

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.scroll-slide-left.active {

    transform: translateX(0);

    opacity: 1;

}



.scroll-slide-right {

    transform: translateX(100px);

    opacity: 0;

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.scroll-slide-right.active {

    transform: translateX(0);

    opacity: 1;

}



/* Magnetic Hover Effect */

.magnetic-hover {

    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.magnetic-hover:hover {

    transform: scale(1.05);

}



/* Tilt Effect */

.tilt-effect {

    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    transform-style: preserve-3d;

}



.tilt-effect:hover {

    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.02);

}



/* Floating Animation */

.floating {

    animation: floating 3s ease-in-out infinite;

}



@keyframes floating {

    0%, 100% { transform: translateY(0px); }

    50% { transform: translateY(-10px); }

}



/* Pulse Glow Effect */

.pulse-glow {

    animation: pulseGlow 2s ease-in-out infinite;

}



@keyframes pulseGlow {

    0%, 100% { 

        box-shadow: 0 0 20px var(--shadow-accent);

    }

    50% { 

        box-shadow: 0 0 40px var(--shadow-accent),

                    0 10px 30px var(--shadow-lg);

    }

}



/* Loading States */

.loading-skeleton {

    background: linear-gradient(90deg, var(--bg-alt) 25%, var(--bg-dark) 50%, var(--bg-alt) 75%);

    background-size: 200% 100%;

    animation: loading 1.5s infinite;

}



@keyframes loading {

    0% { background-position: 200% 0; }

    100% { background-position: -200% 0; }

}



/* Pulse Animation */

.pulse {

    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;

}



@keyframes pulse {

    0%, 100% { opacity: 1; }

    50% { opacity: 0.5; }

}



/* Bounce Animation */

.bounce {

    animation: bounce 1s infinite;

}



@keyframes bounce {

    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }

    50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }

}



.fade-in-left.visible {

    opacity: 1;

    transform: translateX(0);

}



.fade-in-right {

    opacity: 0;

    transform: translateX(50px);

    transition: all 0.8s ease;

}



.fade-in-right.visible {

    opacity: 1;

    transform: translateX(0);

}



.scale-in {

    opacity: 0;

    transform: scale(0.9);

    transition: all 0.8s ease;

}



.scale-in.visible {

    opacity: 1;

    transform: scale(1);

}



/* Section Styles */

.section {

    padding: 100px 0;

}



.section-header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;

}



.section-subtitle {

    display: inline-block;

    color: var(--accent);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 0.9rem;

    margin-bottom: 15px;

}



/* Dark Mode Section Subtitle */

[data-theme="dark"] .section-subtitle {

    color: var(--accent-light);

}



.section-title {

    font-size: 2.8rem;

    margin-bottom: 20px;

}



.section-description {

    color: var(--text-light);

    font-size: 1.1rem;

}



/* Enhanced Category Cards - High Contrast */

.categories-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;

}



.category-card {

    position: relative;

    border-radius: var(--radius-lg);

    overflow: hidden;

    aspect-ratio: 4/3;

    cursor: pointer;

    background: var(--bg-card);

    box-shadow: 0 8px 30px var(--shadow);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    border: 1px solid var(--border);

}



.category-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 50px var(--shadow-lg);

    border-color: var(--accent);

}



.category-card-image {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background-size: cover;

    background-position: center;

    transition: transform var(--transition-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    filter: brightness(0.9);

}



.category-card:hover .category-card-image {

    transform: scale(1.1);

    filter: brightness(1);

}



.category-card-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.category-card:hover .category-card-overlay {

    background: linear-gradient(to top, rgba(245,158,11,0.9) 0%, rgba(245,158,11,0.6) 50%, rgba(245,158,11,0.3) 100%);

}



.category-card-content {

    position: absolute;

    bottom: 0;

    left: 0;

    right: 0;

    padding: 30px;

    color: var(--text-inverse);

    transform: translateY(0);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    z-index: 2;

}



.category-card:hover .category-card-content {

    transform: translateY(-10px);

}



.category-card-title {

    font-size: 1.6rem;

    font-weight: 800;

    margin-bottom: 8px;

    color: var(--text-inverse);

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);

    letter-spacing: -0.025em;

}



.category-card-count {

    font-size: 0.9rem;

    font-weight: 600;

    opacity: 0.9;

    color: var(--text-inverse);

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);

}



.category-card-arrow {

    position: absolute;

    top: 20px;

    right: 20px;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: var(--bg-card);

    color: var(--accent);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transform: translateX(-20px);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    box-shadow: 0 4px 15px var(--shadow);

    z-index: 3;

}



.category-card:hover .category-card-arrow {

    opacity: 1;

    transform: translateX(0);

    background: var(--accent-gradient-btn);

    color: var(--text-inverse);

}



/* Enhanced Product Cards - High Contrast */

.products-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));

    gap: 30px;

}



.product-card {

    background: var(--bg-card);

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: 0 8px 30px var(--shadow);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    border: 1px solid var(--border);

    position: relative;

}



.product-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 60px var(--shadow-lg);

    border-color: var(--accent);

}



.product-card-image {

    position: relative;

    aspect-ratio: 1;

    overflow: hidden;

    background: var(--bg-alt);

}



.product-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform var(--transition-slow) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    filter: brightness(1);

}



.product-card:hover .product-card-image img {

    transform: scale(1.1);

    filter: brightness(1.05);

}



.product-badges {

    position: absolute;

    top: 15px;

    left: 15px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    z-index: 2;

}



.product-badge {

    padding: 8px 16px;

    border-radius: var(--radius-full);

    font-size: 0.75rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    box-shadow: 0 4px 12px var(--shadow);

    backdrop-filter: blur(10px);

}



.product-badge.new {

    background: var(--accent-gradient-btn);

    color: var(--text-inverse);

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}



.product-badge.sale {

    background: var(--error);

    color: var(--text-inverse);

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}



.product-badge.featured {

    background: var(--primary);

    color: var(--text-inverse);

    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);

}



.product-card-actions {

    position: absolute;

    top: 15px;

    right: 15px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    opacity: 0;

    transform: translateX(20px);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    z-index: 2;

}



.product-card:hover .product-card-actions {

    opacity: 1;

    transform: translateX(0);

}



.product-action-btn {

    width: 44px;

    height: 44px;

    border-radius: 50%;

    background: var(--bg-card);

    color: var(--text);

    display: flex;

    align-items: center;

    justify-content: center;

    box-shadow: 0 4px 15px var(--shadow);

    transition: all var(--transition) cubic-bezier(0.25, 0.46, 0.45, 0.94);

    border: 2px solid var(--border);

    font-size: 1rem;

}



.product-action-btn:hover {

    background: var(--accent-gradient-btn);

    color: var(--text-inverse);

    transform: scale(1.1);

    box-shadow: 0 6px 20px var(--shadow-accent);

    border-color: var(--accent);

}



.product-card-body {

    padding: 25px;

    background: var(--bg-card);

    position: relative;

}



.product-category {

    font-size: 0.85rem;

    font-weight: 700;

    color: var(--accent);

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: 0.05em;

}



.product-title {

    font-size: 1.25rem;

    font-weight: 800;

    margin-bottom: 16px;

    line-height: 1.3;

    color: var(--text);

    letter-spacing: -0.025em;

}



.product-title a {

    color: inherit;

    text-decoration: none;

    transition: color var(--transition);

}



.product-title a:hover {

    color: var(--accent);

}



.product-price {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 16px;

    padding-top: 16px;

    border-top: 1px solid var(--border-light);

}



.product-price .current {

    font-size: 1.5rem;

    font-weight: 900;

    color: var(--accent);

    letter-spacing: -0.05em;

}



.product-price .original {

    font-size: 1.1rem;

    color: var(--text-muted);

    text-decoration: line-through;

    font-weight: 600;

}



/* Product Description Enhancement */

.product-description {

    color: var(--text-light);

    font-size: 0.95rem;

    line-height: 1.6;

    margin: 12px 0;

    font-weight: 500;

}



[data-theme="dark"] .product-description {

    color: var(--text-muted);

}



/* Brand Cards */

.brands-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));

    gap: 30px;

}



.brand-card {

    background: var(--bg);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    padding: 40px 30px;

    text-align: center;

    transition: all var(--transition);

}



.brand-card:hover {

    border-color: var(--accent);

    box-shadow: 0 10px 30px var(--shadow);

    transform: translateY(-5px);

}



.brand-card-logo {

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

}



.brand-card-logo img {

    max-height: 100%;

    max-width: 100%;

    object-fit: contain;

    filter: grayscale(100%);

    opacity: 0.7;

    transition: all var(--transition);

}



.brand-card:hover .brand-card-logo img {

    filter: grayscale(0%);

    opacity: 1;

}



.brand-card-name {

    font-size: 1.1rem;

    font-weight: 600;

}



/* Enhanced Section Headers */

.section-header {

    text-align: center;

    margin-bottom: 60px;

    position: relative;

}



.section-subtitle {

    display: inline-block;

    background: var(--accent-gradient-btn);

    color: var(--white);

    padding: 8px 20px;

    border-radius: var(--radius-full);

    font-size: 0.8rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 20px;

    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);

}



.section-title {

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 20px;

    line-height: 1.2;

    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.section-description {

    font-size: 1.2rem;

    color: var(--text-light);

    max-width: 700px;

    margin: 0 auto;

    line-height: 1.7;

}



/* Enhanced Feature Cards */

.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 40px;

    margin-top: 80px;

}



.feature-card {

    background: var(--bg);

    padding: 40px 30px;

    border-radius: var(--radius-lg);

    text-align: center;

    box-shadow: 0 10px 40px var(--shadow);

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    position: relative;

    overflow: hidden;

}



.feature-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 4px;

    background: var(--accent-gradient);

    transform: scaleX(0);

    transition: transform 0.4s ease;

}



.feature-card:hover::before {

    transform: scaleX(1);

}



.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 60px var(--shadow-lg);

}



.feature-icon {

    width: 80px;

    height: 80px;

    margin: 0 auto 25px;

    background: var(--accent-gradient-btn);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    color: var(--white);

    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);

    transition: all 0.4s ease;

}



.feature-card:hover .feature-icon {

    transform: scale(1.1) rotate(5deg);

    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);

}



.feature-title {

    font-size: 1.4rem;

    font-weight: 700;

    margin-bottom: 15px;

    color: var(--text);

}



.feature-description {

    color: var(--text-light);

    line-height: 1.7;

    font-size: 1rem;

}



/* Testimonials */

.testimonials-slider {

    position: relative;

    max-width: 900px;

    margin: 0 auto;

}



.testimonial-card {

    background: var(--bg);

    border-radius: var(--radius-lg);

    padding: 50px;

    text-align: center;

    box-shadow: 0 10px 40px var(--shadow);

    border: 1px solid var(--border);

}



.testimonial-quote {

    font-size: 1.3rem;

    line-height: 1.8;

    color: var(--text);

    margin-bottom: 30px;

    font-style: italic;

}



.testimonial-author {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

}



.testimonial-avatar {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    overflow: hidden;

}



.testimonial-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.testimonial-info h4 {

    font-size: 1.1rem;

    margin-bottom: 5px;

}



.testimonial-info span {

    color: var(--text-muted);

    font-size: 0.9rem;

}



.testimonial-rating {

    color: var(--accent);

    margin-bottom: 20px;

}



/* Testimonials Slider Wrapper & Navigation */

.testimonials-slider-wrapper {

    position: relative;

    max-width: 900px;

    margin: 0 auto;

}

.testimonials-slider {

    position: relative;

    overflow: hidden;

    min-height: 300px;

}

.testimonial-slide {

    display: none;

    opacity: 0;

    transition: opacity 0.5s ease;

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

}

.testimonial-slide:first-child,

.testimonial-slide.active {

    display: block;

    opacity: 1;

    position: relative;

}

.testimonials-nav {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 30px;

}

.testimonials-nav-btn {

    background: var(--primary);

    color: var(--white);

    border: none;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    font-size: 1.1rem;

    box-shadow: 0 5px 20px rgba(0,0,0,0.2);

}

.testimonials-nav-btn:hover {

    background: var(--primary-light);

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(0,0,0,0.3);

}

.testimonials-nav-btn:active {

    transform: translateY(0);

}

.testimonials-indicators {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 20px;

}

.testimonial-indicator {

    background: var(--border);

    border: none;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.3s ease;

    opacity: 0.5;

}

.testimonial-indicator:hover {

    opacity: 0.8;

    transform: scale(1.2);

}

.testimonial-indicator.active {

    background: var(--accent);

    opacity: 1;

    transform: scale(1.3);

}

/* Responsive adjustments */

@media (max-width: 768px) {

    .testimonial-card {

        padding: 30px 20px;

    }

    

    .testimonial-quote {

        font-size: 1.1rem;

    }

    

    .testimonials-nav-btn {

        width: 40px;

        height: 40px;

        font-size: 0.9rem;

    }

    

    .testimonial-author {

        flex-direction: column;

        gap: 15px;

    }

    

    .testimonial-avatar {

        width: 60px;

        height: 60px;

    }

}



/* CTA Section */

.cta-section {

    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);

    padding: 100px 0;

    text-align: center;

    color: var(--white);

}



[data-theme="dark"] .cta-section {

    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-alt) 100%);

}



.cta-title {

    font-size: 3rem;

    margin-bottom: 20px;

    color: var(--white);

}



.cta-description {

    font-size: 1.2rem;

    opacity: 0.9;

    margin-bottom: 40px;

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}



/* Footer */

.main-footer {

    background: var(--primary);

    color: var(--white);

}



[data-theme="dark"] .main-footer {

    background: var(--bg-dark);

}



.footer-top {

    padding: 80px 0 60px;

}



.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;

    gap: 40px;

}



.footer-logo {

    display: flex;
    align-items: center;

    margin-bottom: 20px;

}

.footer-logo img {
    height: 70px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Responsive footer logo sizing */
@media (max-width: 992px) {
    .footer-logo img {
        height: 68px;
    }
}

@media (max-width: 768px) {
    .footer-logo img {
        height: 65px;
    }
}

@media (max-width: 576px) {
    .footer-logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 60px;
    }
}

.footer-logo .logo-light {
    display: block;
}

.footer-logo .logo-dark {
    display: none;
}

[data-theme="dark"] .footer-logo .logo-light {
    display: none;
}

[data-theme="dark"] .footer-logo .logo-dark {
    display: block;
}

.footer-logo .logo-text {

    color: var(--white);

}



.footer-about p {

    opacity: 0.8;

    line-height: 1.8;

    margin-bottom: 25px;

}



.footer-social {

    display: flex;

    gap: 12px;

}



.footer-social a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: rgba(255,255,255,0.1);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all var(--transition);

}



.footer-social a:hover {

    background: var(--accent-gradient-btn);

    transform: translateY(-3px);

}



.footer-col h4 {

    font-size: 1.1rem;

    margin-bottom: 25px;

    color: var(--white);

}



.footer-col ul li {

    margin-bottom: 12px;

}



.footer-col ul li a {

    opacity: 0.8;

    transition: all var(--transition);

}



.footer-col ul li a:hover {

    opacity: 1;

    color: var(--accent);

    padding-left: 5px;

}



.footer-contact ul li {

    display: flex;

    gap: 15px;

    margin-bottom: 15px;

}



.footer-contact ul li i {

    color: var(--accent);

    margin-top: 4px;

}



.footer-contact ul li span,

.footer-contact ul li a {

    opacity: 0.8;

}



.newsletter-form {

    display: flex;

    gap: 10px;

}



.newsletter-form input {

    flex: 1;

    padding: 14px 18px;

    border: none;

    border-radius: var(--radius);

    background: rgba(255,255,255,0.1);

    color: var(--white);

}



.newsletter-form input::placeholder {

    color: rgba(255,255,255,0.6);

}



.newsletter-form button {

    width: 50px;

    height: 50px;

    border-radius: var(--radius);

    background: var(--accent-gradient-btn);

    color: var(--white);

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all var(--transition);

}



.newsletter-form button:hover {

    background: var(--accent-gradient-hover);

}



.newsletter-message {

    margin-top: 10px;

    font-size: 0.9rem;

}



.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.1);

    padding: 25px 0;

}



.footer-bottom-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.footer-bottom p {

    opacity: 0.7;

}



.footer-links {

    display: flex;

    gap: 30px;

}



.footer-links a {

    opacity: 0.7;

    transition: all var(--transition);

}



.footer-links a:hover {

    opacity: 1;

    color: var(--accent);

}



/* Loading Overlay */

.loading-overlay {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: var(--bg);

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transition: all var(--transition);

}



.loading-overlay.active {

    opacity: 1;

    visibility: visible;

}



.loader {

    width: 50px;

    height: 50px;

    border: 3px solid var(--border);

    border-top-color: var(--accent);

    border-radius: 50%;

    animation: spin 1s linear infinite;

}



@keyframes spin {

    to { transform: rotate(360deg); }

}



/* Page Header */

.page-header {

    background: linear-gradient(135deg, rgba(26, 26, 46, 0.65) 0%, rgba(22, 33, 62, 0.55) 100%), url('../images/banner/image4.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    padding: 80px 0;

    text-align: center;

    color: var(--white);

}



[data-theme="dark"] .page-header {

    background: linear-gradient(135deg, rgba(10, 14, 24, 0.70) 0%, rgba(15, 23, 42, 0.60) 100%), url('../images/banner/image4.png');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

}



.page-header-title {

    font-size: 3rem;

    margin-bottom: 15px;

    color: var(--white);

}



.breadcrumb {

    display: flex;

    justify-content: center;

    gap: 10px;

    font-size: 0.95rem;

}



.breadcrumb a {

    opacity: 0.8;

    transition: opacity var(--transition);

}



.breadcrumb a:hover {

    opacity: 1;

}



.breadcrumb span {

    opacity: 0.6;

}



/* Product Detail */

.product-detail {

    padding: 60px 0;

}



.product-detail-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

}



.product-gallery {

    position: sticky;

    top: 120px;

}



.product-main-image {

    position: relative;

    border-radius: var(--radius-lg);

    overflow: hidden;

    margin-bottom: 20px;

    cursor: zoom-in;

}



.product-main-image img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;

    transition: transform 0.3s ease;

}



.product-main-image:hover img {

    transform: scale(1.5);

}



.product-thumbnails {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;

}



.product-thumbnail {

    border-radius: var(--radius);

    overflow: hidden;

    cursor: pointer;

    border: 2px solid transparent;

    transition: all var(--transition);

}



.product-thumbnail.active,

.product-thumbnail:hover {

    border-color: var(--accent);

}



.product-thumbnail img {

    width: 100%;

    aspect-ratio: 1;

    object-fit: cover;

}



.product-info h1 {

    font-size: 2.5rem;

    margin-bottom: 15px;

}



.product-meta {

    display: flex;

    gap: 20px;

    margin-bottom: 25px;

    color: var(--text-light);

    font-size: 0.95rem;

}



.product-detail-price {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

}



.product-detail-price .current {

    font-size: 2.5rem;

    font-weight: 700;

    color: var(--accent);

}



.product-detail-price .original {

    font-size: 1.5rem;

    color: var(--text-muted);

    text-decoration: line-through;

}



.product-description {

    margin-bottom: 30px;

    line-height: 1.8;

    color: var(--text-light);

}



.product-actions {

    display: flex;

    gap: 15px;

    margin-bottom: 40px;

}



.product-specs {

    border-top: 1px solid var(--border);

    padding-top: 30px;

}



.product-specs h3 {

    margin-bottom: 20px;

}



.specs-table {

    width: 100%;

}



.specs-table tr {

    border-bottom: 1px solid var(--border);

}



.specs-table td {

    padding: 15px 0;

}



.specs-table td:first-child {

    font-weight: 600;

    width: 40%;

}



/* Pagination */

.pagination {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 50px;

}



.pagination a,

.pagination span {

    width: 45px;

    height: 45px;

    border-radius: var(--radius);

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--border);

    transition: all var(--transition);

}



.pagination a:hover,

.pagination span.active {

    background: var(--accent-gradient-btn);

    border-color: var(--accent);

    color: var(--white);

}



/* Forms */

.form-group {

    margin-bottom: 25px;

}



.form-label {

    display: block;

    margin-bottom: 8px;

    font-weight: 500;

}



.form-control {

    width: 100%;

    padding: 15px 20px;

    border: 2px solid var(--border);

    border-radius: var(--radius);

    background: var(--bg);

    color: var(--text);

    transition: border-color var(--transition);

}



.form-control:focus {

    outline: none;

    border-color: var(--accent);

}



textarea.form-control {

    min-height: 150px;

    resize: vertical;

}



/* Responsive */

@media (max-width: 1200px) {

    .footer-grid {

        grid-template-columns: repeat(3, 1fr);

    }

    

    .footer-newsletter {

        grid-column: span 3;

    }

}



@media (max-width: 992px) {

    .hero-title {

        font-size: 3rem;

    }

    

    .section-title {

        font-size: 2.2rem;

    }

    

    .main-nav {

        display: none;

    }

    

    .mobile-menu-toggle {

        display: flex;

    }

    

    .product-detail-grid {

        grid-template-columns: 1fr;

    }

    

    .product-gallery {

        position: static;

    }

}



@media (max-width: 768px) {

    .top-bar-left {

        display: none;

    }

    

    .hero-section {

        min-height: 70vh;

    }

    

    .hero-title {

        font-size: 2.2rem;

    }

    

    .hero-description {

        font-size: 1rem;

    }

    

    .section {

        padding: 60px 0;

    }

    

    .section-title {

        font-size: 1.8rem;

    }

    

    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }

    

    .footer-about {

        grid-column: span 2;

    }

    

    .footer-newsletter {

        grid-column: span 2;

    }

    

    .footer-bottom-content {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }

    

    .cta-title {

        font-size: 2rem;

    }

}



@media (max-width: 576px) {

    .hero-buttons {

        flex-direction: column;

    }

    

    .footer-grid {

        grid-template-columns: 1fr;

    }

    

    .footer-about,

    .footer-newsletter {

        grid-column: span 1;

    }

    

    .product-info h1 {

        font-size: 1.8rem;

    }

    

    .product-detail-price .current {

        font-size: 2rem;

    }

}



 .flipbook-hero {

     text-align: center;

     margin-bottom: 22px;

 }



 .flipbook-shell {

     border-radius: var(--radius-lg);

     background: linear-gradient(135deg, rgba(201,169,98,0.12) 0%, rgba(22,33,62,0.08) 55%, rgba(0,0,0,0) 100%);

     border: 1px solid rgba(255,255,255,0.12);

     box-shadow: 0 24px 60px rgba(0,0,0,0.12);

     overflow: hidden;

 }



 [data-theme="dark"] .flipbook-shell {

     border: 1px solid rgba(255,255,255,0.08);

     box-shadow: 0 24px 60px rgba(0,0,0,0.35);

 }



 .flipbook-toolbar {

     display: flex;

     align-items: center;

     justify-content: space-between;

     gap: 12px;

     padding: 14px 16px;

     background: rgba(255,255,255,0.6);

     backdrop-filter: blur(10px);

     border-bottom: 1px solid rgba(0,0,0,0.06);

 }



 [data-theme="dark"] .flipbook-toolbar {

     background: rgba(18,18,31,0.65);

     border-bottom: 1px solid rgba(255,255,255,0.08);

 }



 .flipbook-toolbar-right {

     display: inline-flex;

     align-items: center;

     gap: 10px;

 }



 .flipbook-status {

     font-weight: 600;

     color: var(--text-light);

 }



 .flipbook-stage {

     padding: 22px 18px 18px;

 }



 .flipbook {

     position: relative;

     max-width: 1100px;

     margin: 0 auto;

     perspective: 1600px;

 }



 .flipbook-spread {

     display: grid;

     grid-template-columns: 1fr 1fr;

     position: relative;

     border-radius: 18px;

     overflow: hidden;

     background: var(--bg);

     box-shadow: 0 22px 50px rgba(0,0,0,0.18);

 }



 [data-theme="dark"] .flipbook-spread {

     box-shadow: 0 22px 50px rgba(0,0,0,0.5);

 }



 .flipbook-page {

     position: relative;

     background-size: cover;

     background-position: center;

     background-repeat: no-repeat;

     min-height: 68vh;

 }



 .flipbook-page.left {

     border-right: 1px solid rgba(0,0,0,0.08);

 }



 [data-theme="dark"] .flipbook-page.left {

     border-right: 1px solid rgba(255,255,255,0.1);

 }



 .flipbook-page::after {

     content: "";

     position: absolute;

     inset: 0;

     pointer-events: none;

     background: radial-gradient(circle at 15% 50%, rgba(0,0,0,0.07), transparent 55%);

 }



 [data-theme="dark"] .flipbook-page::after {

     background: radial-gradient(circle at 15% 50%, rgba(0,0,0,0.35), transparent 55%);

 }



 .flipbook-page.left::after {

     background: radial-gradient(circle at 85% 50%, rgba(0,0,0,0.07), transparent 55%);

 }



 [data-theme="dark"] .flipbook-page.left::after {

     background: radial-gradient(circle at 85% 50%, rgba(0,0,0,0.35), transparent 55%);

 }



 .flipbook-flip {

     position: absolute;

     top: 0;

     right: 0;

     width: 50%;

     height: 100%;

     border-radius: 0 18px 18px 0;

     background-size: cover;

     background-position: center;

     background-repeat: no-repeat;

     transform-style: preserve-3d;

     transform: rotateY(0deg);

     opacity: 0;

     pointer-events: none;

     box-shadow: 0 18px 40px rgba(0,0,0,0.18);

     transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 180ms ease;

 }



 .flipbook-flip.from-left {

     left: 0;

     right: auto;

     width: 50%;

     border-radius: 18px 0 0 18px;

 }



 .flipbook-flip.active {

     opacity: 1;

 }



 .flipbook-flip.active.from-right {

     transform-origin: left center;

     transform: rotateY(-180deg);

 }



 .flipbook-flip.active.from-left {

     transform-origin: right center;

     transform: rotateY(180deg);

 }



 .flipbook-hint {

     text-align: center;

     padding: 10px 16px 18px;

     font-size: 0.9rem;

     color: var(--text-muted);

 }



 .flipbook-stage.is-zoomed {

     overflow: auto;

 }



 .flipbook-stage.is-zoomed .flipbook {

     transform: scale(1.35);

     transform-origin: top center;

 }



 @media (max-width: 900px) {

     .flipbook-page {

         min-height: 62vh;

     }

 }



/* Services Owl Carousel Styles - Premium Stone Industry Design */

.services-owl-wrapper {

    position: relative;

    margin-top: 60px;

    background: linear-gradient(135deg, rgba(26, 58, 92, 0.05) 0%, rgba(46, 125, 50, 0.03) 100%);

    border-radius: 24px;

    padding: 40px 20px;

    border: 1px solid rgba(26, 58, 92, 0.1);

}



.services-owl-carousel {

    padding: 10px 0;

    min-height: 480px;

}



.services-owl-carousel .owl-stage-outer {

    padding: 15px 0;

}



.services-owl-carousel .owl-stage {

    display: flex !important;

}



.services-owl-carousel .owl-item {

    display: block !important;

    float: left !important;

}



.service-item {

    padding: 0 20px;

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



.service-card {

    background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 
        0 20px 60px rgba(26, 58, 92, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    height: 100%;

    display: flex;

    flex-direction: column;

    border: 1px solid rgba(26, 58, 92, 0.08);

    position: relative;

    min-height: 480px;

    visibility: visible !important;

    opacity: 1 !important;

}



.service-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 6px;

    background: linear-gradient(90deg, 

        var(--primary) 0%, 

        var(--accent) 25%, 

        var(--secondary) 50%, 

        var(--accent) 75%, 

        var(--primary) 100%);

    opacity: 0;

    transition: opacity 0.4s ease;

    background-size: 200% 100%;

    animation: shimmer 3s ease-in-out infinite;

}



@keyframes shimmer {

    0% { background-position: -200% 0; }

    100% { background-position: 200% 0; }

}



.service-card:hover::before {

    opacity: 1;

}



.service-card:hover {

    transform: translateY(-16px) scale(1.03);

    box-shadow: 
        0 32px 80px rgba(26, 58, 92, 0.15),
        0 16px 48px rgba(0, 0, 0, 0.12),

        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    border-color: var(--accent);

}



.service-image-container {

    position: relative;

    height: 280px;

    overflow: hidden;

    background: linear-gradient(135deg, 

        var(--primary) 0%, 

        var(--primary-light) 50%, 

        var(--accent) 100%);

}



.service-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);

    display: block !important;

    filter: brightness(0.95);

}



.service-card:hover .service-image {

    transform: scale(1.08);

    filter: brightness(1.05);

}



.service-placeholder {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg, 

        var(--primary) 0%, 

        var(--primary-light) 50%, 

        var(--accent) 100%);

    color: rgba(255, 255, 255, 0.9);

    font-size: 4rem;

}



.service-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(to bottom, 

        transparent 0%, 

        rgba(26, 58, 92, 0.1) 30%,

        rgba(0, 0, 0, 0.7) 100%);

    opacity: 0;

    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);

    display: flex;

    align-items: flex-end;

    padding: 30px;

}



.service-card:hover .service-overlay {

    opacity: 1;

}



.service-overlay-content h3 {

    color: white;

    font-size: 1.5rem;

    margin-bottom: 12px;

    font-weight: 800;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

    transform: translateY(20px);

    transition: transform 0.5s ease;

}



.service-card:hover .service-overlay-content h3 {

    transform: translateY(0);

}



.service-overlay-content p {

    color: rgba(255, 255, 255, 0.95);

    font-size: 1rem;

    line-height: 1.6;

    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);

    transform: translateY(20px);

    transition: transform 0.5s ease 0.1s;

}



.service-card:hover .service-overlay-content p {

    transform: translateY(0);

}



.service-content {

    padding: 35px;

    flex: 1;

    display: flex;

    flex-direction: column;

    background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);

    position: relative;

}



.service-content::before {

    content: '';

    position: absolute;

    top: 0;

    left: 35px;

    right: 35px;

    height: 1px;

    background: linear-gradient(90deg, 

        transparent 0%, 

        rgba(26, 58, 92, 0.2) 50%, 

        transparent 100%);

}



.service-title {

    font-size: 1.6rem;

    font-weight: 900;

    margin-bottom: 20px;

    color: var(--primary);

    line-height: 1.3;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    position: relative;

}



.service-title::after {

    content: '';

    position: absolute;

    bottom: -8px;

    left: 0;

    width: 60px;

    height: 3px;

    background: linear-gradient(90deg, var(--accent) 0%, var(--secondary) 100%);

    border-radius: 2px;

}



.service-short-desc {

    color: var(--accent);

    font-weight: 700;

    font-size: 1.05rem;

    margin-bottom: 15px;

    line-height: 1.5;

    text-transform: uppercase;

    letter-spacing: 0.3px;

}



.service-full-desc {

    color: var(--text-light);

    font-size: 1rem;

    line-height: 1.8;

    margin-bottom: 25px;

    flex: 1;

    font-weight: 400;

}



.service-badge {

    display: inline-block;

    padding: 8px 20px;

    border-radius: 30px;

    font-size: 0.75rem;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.2px;

    margin-bottom: 25px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    position: relative;

    overflow: hidden;

}



.service-badge::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);

    transition: left 0.6s ease;

}



.service-badge:hover::before {

    left: 100%;

}



.service-badge.featured {

    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);

    color: white;

    box-shadow: 
        0 8px 30px rgba(46, 125, 50, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

}



.service-actions {

    margin-top: auto;

}



.service-actions .btn {

    border-radius: 30px;

    padding: 15px 35px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.8px;

    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

    box-shadow: 
        0 8px 25px rgba(26, 58, 92, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);

    position: relative;

    overflow: hidden;

    border: 2px solid transparent;

}



.service-actions .btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

    transition: left 0.6s ease;

}



.service-actions .btn:hover::before {

    left: 100%;

}



.service-actions .btn:hover {

    transform: translateY(-4px) scale(1.05);

    box-shadow: 
        0 12px 35px rgba(26, 58, 92, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    border-color: rgba(255, 255, 255, 0.3);

}



/* Premium Owl Carousel Navigation */

.services-owl-carousel .owl-nav {

    margin-top: 40px;

    text-align: center;

    position: relative;

    display: none; /* Hide navigation buttons */

}



.services-owl-carousel .owl-nav button {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);

    color: white;

    border: none;

    margin: 0 15px;

    font-size: 1.4rem;

    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

    box-shadow: 
        0 8px 30px rgba(26, 58, 92, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);

    position: relative;

    overflow: hidden;

}



.services-owl-carousel .owl-nav button::before {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 0;

    height: 0;

    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);

    transform: translate(-50%, -50%);

    transition: all 0.4s ease;

}



.services-owl-carousel .owl-nav button:hover::before {

    width: 100%;

    height: 100%;

}



.services-owl-carousel .owl-nav button:hover {

    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);

    transform: scale(1.15);

    box-shadow: 
        0 12px 40px rgba(46, 125, 50, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);

}



.services-owl-carousel .owl-nav button.owl-prev,

.services-owl-carousel .owl-nav button.owl-next {

    position: relative;

}



.services-owl-carousel .owl-nav button.disabled {

    opacity: 0.4;

    cursor: not-allowed;

    transform: scale(1);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}



/* Premium Owl Carousel Dots */

.services-owl-carousel .owl-dots {

    margin-top: 35px;

    text-align: center;

    position: relative;

}



.services-owl-carousel .owl-dots .owl-dot {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: rgba(26, 58, 92, 0.2);

    margin: 0 8px;

    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

    border: 2px solid transparent;

    position: relative;

    overflow: hidden;

}



.services-owl-carousel .owl-dots .owl-dot::before {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 0;

    height: 0;

    background: var(--accent);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    transition: all 0.4s ease;

}



.services-owl-carousel .owl-dots .owl-dot:hover {

    background: rgba(26, 58, 92, 0.4);

    transform: scale(1.3);

    border-color: rgba(26, 58, 92, 0.3);

}



.services-owl-carousel .owl-dots .owl-dot:hover::before {

    width: 6px;

    height: 6px;

}



.services-owl-carousel .owl-dots .owl-dot.active {

    background: var(--accent);

    border-color: var(--accent);

    transform: scale(1.4);

    box-shadow: 
        0 0 20px rgba(46, 125, 50, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);

}



.services-owl-carousel .owl-dots .owl-dot.active::before {

    width: 8px;

    height: 8px;

    background: white;

}



/* Services Responsive Design */

@media (max-width: 1200px) {

    .service-item {

        padding: 0 15px;

    }

    

    .service-image-container {

        height: 240px;

    }

    

    .service-content {

        padding: 30px;

    }

    

    .service-title {

        font-size: 1.4rem;

    }

}



@media (max-width: 768px) {

    .services-owl-wrapper {

        margin-top: 50px;

        padding: 30px 15px;

    }

    

    .service-item {

        padding: 0 12px;

    }

    

    .service-image-container {

        height: 200px;

    }

    

    .service-content {

        padding: 25px;

    }

    

    .service-title {

        font-size: 1.3rem;

    }

    

    .service-overlay {

        padding: 25px;

    }

    

    .service-overlay-content h3 {

        font-size: 1.2rem;

    }

    

    .services-owl-carousel .owl-nav button {

        width: 50px;

        height: 50px;

        font-size: 1.2rem;

        margin: 0 10px;

    }

}



@media (max-width: 480px) {

    .services-owl-wrapper {

        padding: 25px 10px;

    }

    

    .service-image-container {

        height: 180px;

    }

    

    .service-content {

        padding: 20px;

    }

    

    .service-title {

        font-size: 1.2rem;

    }

    

    .service-overlay {

        padding: 20px;

    }

    

    .service-overlay-content h3 {

        font-size: 1.1rem;

    }

    

    .service-overlay-content p {

        font-size: 0.9rem;

    }

    

    .services-owl-carousel .owl-nav button {

        width: 45px;

        height: 45px;

        font-size: 1rem;

        margin: 0 8px;

    }

}



 @media (max-width: 768px) {

     .flipbook-spread {

         grid-template-columns: 1fr;

     }

     .flipbook-page.left {

         display: none;

     }

     .flipbook-flip,

     .flipbook-flip.from-left {

         width: 100%;

         border-radius: 18px;

     }

 }



 .page-flipbook .top-bar {

     display: none;

 }



 .page-flipbook .main-content {

     padding-top: 0;

 }



 .page-flipbook .main-footer,

 .page-flipbook .loading-overlay {

     display: none;

 }



 .page-flipbook .main-header {

     position: sticky;

     top: 0;

     background: rgba(255,255,255,0.55);

     backdrop-filter: blur(10px);

     border-bottom: 1px solid rgba(0,0,0,0.06);

 }



 [data-theme="dark"].page-flipbook .main-header {

     background: rgba(18,18,31,0.55);

     border-bottom: 1px solid rgba(255,255,255,0.08);

 }



 .flipbook-scene {

     position: relative;

     min-height: calc(100vh - 74px);

     padding: 10px 0 24px;

 }



 .page-flipbook .container {

     max-width: none;

 }



 .flipbook-ui {

     position: relative;

     z-index: 5;

     display: flex;

     align-items: center;

     justify-content: space-between;

     gap: 14px;

     padding: 18px 18px 10px;

 }



 .flipbook-ui-center {

     text-align: center;

 }



 .flipbook-ui-title {

     font-family: var(--font-display);

     font-weight: 600;

     letter-spacing: 0.3px;

 }



 .flipbook-ui-right {

     display: inline-flex;

     align-items: center;

     gap: 10px;

 }



 .flipbook-ui-btn {

     width: 44px;

     height: 44px;

     display: inline-flex;

     align-items: center;

     justify-content: center;

     border-radius: 999px;

     background: rgba(255,255,255,0.55);

     border: 1px solid rgba(0,0,0,0.08);

     box-shadow: 0 10px 24px rgba(0,0,0,0.08);

     transition: transform var(--transition-fast), background var(--transition-fast);

 }



 .flipbook-ui-btn:hover {

     transform: translateY(-1px);

     background: rgba(255,255,255,0.75);

 }



 [data-theme="dark"] .flipbook-ui-btn {

     background: rgba(18,18,31,0.55);

     border: 1px solid rgba(255,255,255,0.12);

     box-shadow: 0 10px 24px rgba(0,0,0,0.35);

 }



 [data-theme="dark"] .flipbook-ui-btn:hover {

     background: rgba(18,18,31,0.75);

 }



 .page-flipbook .flipbook-stage {

     position: relative;

     width: 100%;

     padding: 0 14px 22px;

     --parallax-x: 0px;

     --parallax-y: 0px;

 }



 .page-flipbook .flipbook-stage::before,

 .page-flipbook .flipbook-stage::after {

     content: "";

     position: absolute;

     inset: -40px;

     z-index: 0;

     pointer-events: none;

 }



 .page-flipbook .flipbook-stage::before {

     background:

         radial-gradient(1200px 700px at 10% 20%, rgba(201,169,98,0.18), transparent 60%),

         radial-gradient(900px 600px at 80% 15%, rgba(22,33,62,0.20), transparent 55%),

         radial-gradient(700px 700px at 30% 85%, rgba(0,0,0,0.10), transparent 60%),

         linear-gradient(180deg, rgba(248,249,250,1) 0%, rgba(240,240,240,1) 100%);

     transform: translate3d(calc(var(--parallax-x) * 0.5), calc(var(--parallax-y) * 0.5), 0);

     transition: transform 200ms ease;

 }



 [data-theme="dark"].page-flipbook .flipbook-stage::before {

     background:

         radial-gradient(1200px 700px at 10% 20%, rgba(201,169,98,0.16), transparent 60%),

         radial-gradient(900px 600px at 80% 15%, rgba(22,33,62,0.30), transparent 55%),

         radial-gradient(700px 700px at 30% 85%, rgba(0,0,0,0.55), transparent 60%),

         linear-gradient(180deg, rgba(10,10,18,1) 0%, rgba(15,15,26,1) 100%);

 }



 .page-flipbook .flipbook-stage::after {

     background:

         repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 2px, rgba(0,0,0,0) 2px 10px),

         radial-gradient(900px 520px at 50% 10%, rgba(255,255,255,0.08), transparent 60%);

     transform: translate3d(calc(var(--parallax-x) * 0.9), calc(var(--parallax-y) * 0.9), 0);

     opacity: 0.55;

     transition: transform 200ms ease;

 }



 .page-flipbook .flipbook {

     position: relative;

     z-index: 2;

     margin: 0 auto;

 }



 /* .page-flipbook #flipbook {

     box-shadow:

         0 45px 90px rgba(0,0,0,0.25),

         0 10px 30px rgba(0,0,0,0.12);

 } */



 [data-theme="dark"].page-flipbook #flipbook {

     box-shadow:

         0 45px 90px rgba(0,0,0,0.55),

         0 10px 30px rgba(0,0,0,0.35);

 }



 .page-flipbook .flipbook-page {

     background-color: #fff;

     display: flex;

     align-items: center;

     justify-content: center;

     overflow: hidden;

 }



 [data-theme="dark"].page-flipbook .flipbook-page {

     background-color: #0a0a12;

 }



 .page-flipbook .flipbook-page img {

     width: 100%;

     height: 100%;

     /* object-fit: contain; */

     user-select: none;

 }



 .page-flipbook #flipbook .turn-page {

     background-color: #fff;

 }



 [data-theme="dark"].page-flipbook #flipbook .turn-page {

     background-color: #0a0a12;

 }



 .page-flipbook #flipbook .even,

 .page-flipbook #flipbook .odd {

     box-shadow: 0 0 20px rgba(0,0,0,0.2);

 }



 .page-flipbook #flipbook .page-wrapper {

     perspective: 2000px;

 }



 .page-flipbook #flipbook .hard {

     background: linear-gradient(135deg, rgba(46,125,50,0.08) 0%, rgba(26,58,92,0.05) 100%);

     box-shadow: 0 0 30px rgba(0,0,0,0.3);

 }



 [data-theme="dark"].page-flipbook #flipbook .hard {

     background: linear-gradient(135deg, rgba(46,125,50,0.12) 0%, rgba(26,58,92,0.15) 100%);

 }



 .petals-layer {

     position: absolute;

     inset: -30px;

     z-index: 1;

     pointer-events: none;

     overflow: hidden;

     opacity: 0;

     transition: opacity 420ms ease;

 }



 .flipbook-stage.is-backside .petals-layer {

     opacity: 1;

 }



 .petal {

     position: absolute;

     top: -40px;

     background: radial-gradient(circle at 30% 30%, rgba(255,182,193,0.95), rgba(255,105,180,0.55));

     border-radius: 70% 30% 70% 30%;

     filter: blur(0.2px);

     opacity: 0.65;

     animation-name: petal-fall;

     animation-timing-function: linear;

     will-change: transform;

 }



 @keyframes petal-fall {

     0% {

         transform: translate3d(0, 0, 0) rotate(0deg);

     }

     100% {

         transform: translate3d(var(--petal-drift, 120px), 120vh, 0) rotate(var(--petal-rot, 120deg));

     }

 }



 @media (max-width: 768px) {

     .flipbook-ui {

         padding: 14px 12px 8px;

     }

     .flipbook-ui-title {

         font-size: 1rem;

     }

     .page-flipbook #flipbook {

         width: 100% !important;

         height: auto !important;

     }

 }



 /* ===================================

   OUR CLIENTS SECTION - PREMIUM STYLING

   =================================== */



 .clients-section {

     position: relative;

     overflow: hidden;

 }



 .clients-section::before {

     content: '';

     position: absolute;

     top: 0;

     left: 0;

     right: 0;

     bottom: 0;

     background: 

         radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.1) 0%, transparent 50%),

         radial-gradient(circle at 80% 50%, rgba(26, 58, 92, 0.1) 0%, transparent 50%);

     pointer-events: none;

     z-index: 1;

 }



 .clients-slider-wrapper {

     position: relative;

     z-index: 2;

 }



 .clients-slider {

     display: flex;

     gap: 2rem;

     overflow: hidden;

     padding: 2rem 0;

 }



 .client-slide {

     flex: 0 0 auto;

     width: 280px;

 }



 .client-card {

     background: rgba(255, 255, 255, 0.05);

     backdrop-filter: blur(20px);

     border: 1px solid rgba(255, 255, 255, 0.1);

     border-radius: var(--radius-lg);

     padding: 2rem;

     text-align: center;

     transition: all var(--transition);

     height: 100%;

     display: flex;

     flex-direction: column;

     justify-content: space-between;

 }



 .client-card:hover {

     transform: translateY(-8px);

     background: rgba(255, 255, 255, 0.08);

     border-color: var(--accent);

     box-shadow: 0 20px 40px rgba(46, 125, 50, 0.2);

 }



 .client-logo {

     margin-bottom: 1.5rem;

     height: 80px;

     display: flex;

     align-items: center;

     justify-content: center;

 }



 .client-logo img {

     max-width: 100%;

     max-height: 60px;

     width: auto;

     height: auto;

     object-fit: contain;

     filter: none;

     opacity: 0.9;

     transition: all var(--transition);

 }



 .client-card:hover .client-logo img {

     opacity: 1;

     filter: drop-shadow(0 0 20px rgba(46, 125, 50, 0.3));

 }



 .client-info h4 {

     color: #fff;

     font-size: 1.1rem;

     font-weight: 600;

     margin-bottom: 0.5rem;

 }



 .client-website {

     color: var(--accent);

     text-decoration: none;

     font-size: 0.9rem;

     opacity: 0.8;

     transition: all var(--transition);

 }



 .client-website:hover {

     opacity: 1;

     color: var(--accent-light);

 }



 .clients-nav {

     display: flex;

     justify-content: center;

     gap: 1rem;

     margin-top: 2rem;

 }



 .clients-nav-btn {

     width: 50px;

     height: 50px;

     border: 2px solid rgba(255, 255, 255, 0.2);

     background: rgba(255, 255, 255, 0.1);

     color: #fff;

     border-radius: 50%;

     display: flex;

     align-items: center;

     justify-content: center;

     cursor: pointer;

     transition: all var(--transition);

     backdrop-filter: blur(10px);

 }



 .clients-nav-btn:hover {

     background: var(--accent);

     border-color: var(--accent);

     transform: scale(1.1);

 }



 /* ===================================

   OUR WORKS/PROJECTS SECTION - PREMIUM STYLING

   =================================== */



 .projects-section {

     background: var(--bg-alt);

     position: relative;

 }



 .projects-grid {

     display: grid;

     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

     gap: 2rem;

 }



 .project-card {

     background: var(--bg-card);

     border-radius: var(--radius-lg);

     overflow: hidden;

     box-shadow: 0 4px 20px var(--shadow);

     transition: all var(--transition);

     position: relative;

 }



 .project-card:hover {

     transform: translateY(-12px);

     box-shadow: 0 20px 40px var(--shadow-lg);

 }



 .project-card-media {

     position: relative;

     aspect-ratio: 16/10;

     overflow: hidden;

 }



 .project-image img,

 .project-video img {

     width: 100%;

     height: 100%;

     object-fit: cover;

     transition: all var(--transition-slow);

 }



 .project-card:hover .project-image img,

 .project-card:hover .project-video img {

     transform: scale(1.1);

     filter: brightness(0.9);

 }



 .project-overlay {

     position: absolute;

     top: 0;

     left: 0;

     right: 0;

     bottom: 0;

     background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);

     opacity: 0;

     transition: all var(--transition);

     display: flex;

     align-items: center;

     justify-content: center;

 }



 .project-card:hover .project-overlay {

     opacity: 1;

 }



 .project-actions {

     display: flex;

     gap: 1rem;

 }



 .project-action-btn {

     width: 50px;

     height: 50px;

     border: 2px solid rgba(255, 255, 255, 0.8);

     background: rgba(255, 255, 255, 0.2);

     color: #fff;

     border-radius: 50%;

     display: flex;

     align-items: center;

     justify-content: center;

     cursor: pointer;

     transition: all var(--transition);

     backdrop-filter: blur(10px);

     text-decoration: none;

 }



 .project-action-btn:hover {

     background: var(--accent);

     border-color: var(--accent);

     transform: scale(1.1);

 }



 .play-button {

     width: 80px;

     height: 80px;

     border: 3px solid rgba(255, 255, 255, 0.9);

     background: rgba(255, 255, 255, 0.2);

     color: #fff;

     border-radius: 50%;

     display: flex;

     align-items: center;

     justify-content: center;

     cursor: pointer;

     transition: all var(--transition);

     backdrop-filter: blur(10px);

     font-size: 1.5rem;

 }



 .play-button:hover {

     background: var(--accent);

     border-color: var(--accent);

     transform: scale(1.1);

 }



 .play-button i {

     margin-left: 4px;

 }



 .project-category {

     position: absolute;

     top: 1rem;

     left: 1rem;

     background: var(--accent);

     color: #fff;

     padding: 0.5rem 1rem;

     border-radius: var(--radius-full);

     font-size: 0.8rem;

     font-weight: 600;

     text-transform: uppercase;

     letter-spacing: 0.5px;

     z-index: 2;

 }



 .project-card-body {

     padding: 1.5rem;

 }



 .project-title {

     font-size: 1.3rem;

     font-weight: 700;

     color: var(--text);

     margin-bottom: 0.5rem;

     line-height: 1.3;

 }



 .project-description {

     color: var(--text-muted);

     line-height: 1.6;

     margin-bottom: 1rem;

 }



 .project-meta {

     display: flex;

     flex-wrap: wrap;

     gap: 1rem;

     font-size: 0.9rem;

     color: var(--text-muted);

 }



 .project-client,

 .project-location {

     display: flex;

     align-items: center;

     gap: 0.5rem;

 }



 .project-client i,

 .project-location i {

     color: var(--accent);

 }



 /* ===================================

   VIDEO MODAL STYLING

   =================================== */



 .video-modal {

     display: none;

     position: fixed;

     top: 0;

     left: 0;

     right: 0;

     bottom: 0;

     background: rgba(0, 0, 0, 0.9);

     z-index: var(--z-modal);

     opacity: 0;

     transition: opacity var(--transition);

 }



 .video-modal.active {

     display: flex;

     align-items: center;

     justify-content: center;

     opacity: 1;

 }



 .video-modal-content {

     position: relative;

     max-width: 95vw;

     max-height: 95vh;

     background: #000;

     border-radius: var(--radius-lg);

     overflow: hidden;

     transform: scale(0.8);

     transition: transform var(--transition);

 }



 .video-modal.active .video-modal-content {

     transform: scale(1);

 }

/* Tablet adjustments for video modal */
@media (min-width: 769px) and (max-width: 1199px) {
     .video-modal-content {
         max-width: 90vw;
         max-height: 85vh;
     }
 }

/* Larger modal for desktop screens */
@media (min-width: 1200px) {
     .video-modal-content {
         max-width: 1200px;
         max-height: 800px;
     }
 }

@media (min-width: 1600px) {
     .video-modal-content {
         max-width: 1400px;
         max-height: 900px;
     }
 }



 .video-modal-close {

     position: absolute;

     top: 1rem;

     right: 1rem;

     width: 40px;

     height: 40px;

     background: rgba(255, 255, 255, 0.2);

     border: 2px solid rgba(255, 255, 255, 0.3);

     color: #fff;

     border-radius: 50%;

     display: flex;

     align-items: center;

     justify-content: center;

     cursor: pointer;

     transition: all var(--transition);

     backdrop-filter: blur(10px);

     z-index: 10;

 }



 .video-modal-close:hover {

     background: var(--accent);

     border-color: var(--accent);

     transform: scale(1.1);

 }



 .video-modal video,

 .video-modal iframe {

     width: 100%;

     height: 100%;

     display: block;

 }



 /* ===================================

   RESPONSIVE DESIGN FOR NEW SECTIONS

   =================================== */



 @media (max-width: 768px) {

     /* Video modal responsive adjustments */
     .video-modal-content {
         max-width: 95vw;
         max-height: 90vh;
         margin: 0 10px;
     }
     
     .video-modal-close {
         width: 36px;
         height: 36px;
         top: 0.5rem;
         right: 0.5rem;
     }

     .clients-slider {

         gap: 1rem;

         padding: 1rem 0;

     }

     

     .client-slide {

         width: 240px;

     }

     

     .client-card {

         padding: 1.5rem;

     }

     

     .projects-grid {

         grid-template-columns: 1fr;

         gap: 1.5rem;

     }

     

     .play-button {

         width: 60px;

         height: 60px;

         font-size: 1.2rem;

     }

     

     .project-action-btn {

         width: 40px;

         height: 40px;

     }

 }



 @media (max-width: 480px) {

     .clients-nav-btn {

         width: 40px;

         height: 40px;

     }

     

     .client-slide {

         width: 200px;

     }

     

     .client-card {

         padding: 1rem;

     }

     

     .client-logo {

         height: 60px;

     }

     

     .client-logo img {

         max-height: 40px;

     }

 }

