/* ========================================
   POSTPRESS - PREMIUM PACKAGING DESIGN
   ======================================== */

:root {
    /* === MODERN COLOR PALETTE === */
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --black: #09090b;
    
    /* === PREMIUM BRAND COLORS - RED SCHEME === */
    --primary: #dc2626;
    --primary-light: #ef4444;
    --primary-dark: #b91c1c;
    --primary-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    
    /* === LEGACY GOLD VARIABLES REPLACED WITH RED === */
    --gold: #dc2626;
    --gold-light: #ef4444;
    --gold-dark: #b91c1c;
    --gold-gradient: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    
    /* === ACCENT COLORS === */
    --blue: #3b82f6;
    --blue-light: #60a5fa;
    --green: #10b981;
    --red: #ef4444;
    --purple: #8b5cf6;
    --orange: #f59e0b;
    
    /* === TYPOGRAPHY === */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    
    /* === PREMIUM SPACING === */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* === MODERN RADIUS === */
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* === PROFESSIONAL SHADOWS === */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    
    /* === SMOOTH TRANSITIONS === */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* === PREMIUM GRADIENTS - RED THEME === */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    --gradient-gold: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    --gradient-dark: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f4f4f5 100%);
    --gradient-hero: linear-gradient(135deg, rgba(244, 244, 245, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    
    /* === UNIFIED BACKGROUND === */
    --unified-bg: 
        linear-gradient(135deg, rgba(244, 244, 245, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=2000&q=80') center/cover;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--unified-bg);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin: 0;
}

p {
    margin: 0;
    color: var(--gray-700);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: var(--space-md) 0;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    letter-spacing: -0.025em;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo span {
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.logo:hover span::before {
    left: 100%;
}

.nav-center {
    display: flex;
    gap: var(--space-2xl);
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition-base);
    position: relative;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-md);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-end;
}

.contact-phone {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-email {
    font-size: 0.9rem;
    color: var(--gray-600);
    transition: color var(--transition-base);
}

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

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    transition: right var(--transition-slow);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-200);
    background: var(--gradient-primary);
    color: var(--white);
}

.mobile-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-xs);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-base);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: var(--space-lg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-md);
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    transition: left var(--transition-base);
    z-index: -1;
}

.mobile-nav-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.mobile-contact-phone {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.mobile-contact-email {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ========================================
   PREMIUM BUTTONS WITH SHIMMER EFFECT
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-xl);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    letter-spacing: 0.025em;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-900);
    border: 2px solid var(--gray-300);
    box-shadow: var(--shadow-sm);
}

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(244, 244, 245, 0.3), transparent);
    pointer-events: none;
}

.hero-overlay {
    margin-top: 3rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    padding: 0 var(--space-lg);
    animation: fadeInUp 1s ease-out;
    text-align: center;
    margin: 0 auto;
}

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

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description p {
    margin-bottom: var(--space-md);
    color: var(--gray-700);
}

.hero-buttons {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
    justify-content: center;
    margin-top: var(--space-2xl);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(220, 38, 38, 0.3);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.cta-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-badge::before {
    content: '✨';
    font-size: 1rem;
}

/* ========================================
   SECTION LAYOUTS
   ======================================== */

section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
    line-height: 1.1;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-weight: 500;
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio {
    position: relative;
}

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

.portfolio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.portfolio .container {
    position: relative;
    z-index: 2;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

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

.portfolio-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(220, 38, 38, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-item:hover .portfolio-image::before {
    opacity: 1;
}

.portfolio-images-count {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-content {
    padding: var(--space-xl);
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
    line-height: 1.3;
}

.portfolio-description {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-area {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* Empty Portfolio State */
.empty-portfolio {
    text-align: center;
    padding: var(--space-3xl);
    color: var(--gray-600);
    grid-column: 1 / -1;
}

.empty-portfolio-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.empty-portfolio h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--gray-800);
}

.empty-portfolio p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
}

.empty-portfolio .btn {
    margin-top: var(--space-lg);
}



/* Responsive Portfolio Grid */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--space-lg);
    }
    
    .portfolio-image {
        height: 220px;
    }
    
    .portfolio-content {
        padding: var(--space-lg);
    }
    
    .portfolio-title {
        font-size: 1.2rem;
    }
    
    .portfolio-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--space-md);
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: var(--space-md);
    }
    
    .portfolio-title {
        font-size: 1.1rem;
    }
    
    .portfolio-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-title {
        font-size: 1rem;
    }
    
    .portfolio-description {
        font-size: 0.8rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    position: relative;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-2xl);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.service-item:hover::before {
    transform: scaleX(1);
}

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

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
}

.service-item p {
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 1rem;
}

/* ========================================
   CONTACT SECTION - UNIFIED BACKGROUND
   ======================================== */

.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-subtitle {
    color: var(--gold);
}

.contact .section-title {
    color: var(--gray-900);
}

.contact .section-description {
    color: var(--gray-700);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: var(--space-2xl);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-2xl);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    color: var(--gray-900);
    font-size: 1rem;
    transition: all var(--transition-base);
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: var(--space-md);
    font-size: 1.1rem;
    padding: var(--space-lg) var(--space-xl);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #09090b; /* Убираем прозрачность для консистентности */
    background-color: #09090b !important; /* Принудительно */
    color: var(--white);
    padding: 32px 0 24px 0; /* Фиксированные значения для консистентности */
    border-top: 1px solid rgba(220, 38, 38, 0.3);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    width: 100%;
    /* Принудительные стили для консистентности */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Убираем проблемные свойства которые могут работать по-разному */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; /* Фиксированные отступы */
    box-sizing: border-box;
    width: 100%;
    position: relative;
    background: transparent !important;
    /* Принудительные сброс стилей */
    border: none !important;
    outline: none !important;
}

.footer-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
}

.footer-logo-section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.footer-contact-section {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.footer-requisites-section {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    min-width: 280px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 22px; /* Фиксированный размер */
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 6px;
}

.footer-tagline {
    color: var(--gray-300);
    font-size: 13px; /* Фиксированный размер */
    opacity: 0.8;
    line-height: 1.3;
}

.footer-contact-section h4,
.footer-requisites-section h4 {
    color: var(--primary);
    font-size: 15px; /* Фиксированный размер */
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.footer-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}

.footer-contact a {
    color: var(--gray-300);
    font-size: 13px; /* Фиксированный размер */
    transition: color var(--transition-base);
    line-height: 1.3;
}

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

.requisites-compact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    box-sizing: border-box;
}

.requisites-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 0;
    min-height: 20px;
    box-sizing: border-box;
    width: 100%;
}

.requisites-label {
    color: var(--primary);
    font-size: 12px; /* Фиксированный размер */
    font-weight: 500;
    min-width: 80px;
    max-width: 80px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    line-height: 1.4;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

.requisites-value {
    color: var(--gray-200);
    font-size: 12px; /* Фиксированный размер */
    line-height: 1.4;
    word-break: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: inherit;
    overflow-wrap: break-word;
}

.footer-bottom {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 12px; /* Фиксированный размер */
    margin: 0;
    line-height: 1.3;
}

/* ========================================
   NOTIFICATION SYSTEM
   ======================================== */

.notification {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 10000;
    background: var(--white);
    color: var(--gray-900);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-weight: 600;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--primary);
    transform: translateX(100px);
    opacity: 0;
    transition: all var(--transition-bounce);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.error {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.notification.hidden {
    display: none;
}

/* ========================================
   LOADING STATES
   ======================================== */

.loading-dots {
    display: inline-flex;
    gap: var(--space-xs);
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: loadingPulse 1.4s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(3) {
    animation-delay: -0.16s;
}

@keyframes loadingPulse {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* ========================================
   SCROLLBAR STYLING
   ======================================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   MODAL STYLES
   ======================================== */

.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.portfolio-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    max-width: 90vw;
    max-height: 85vh;
    width: 800px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl), 0 0 60px rgba(0, 0, 0, 0.15);
    animation: modalOpen 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: 3vh;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes modalOpen {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px) rotateX(10deg);
        filter: blur(5px);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02) translateY(-5px) rotateX(2deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    backdrop-filter: blur(20px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05) rotate(90deg);
    color: var(--gray-800);
}

.modal-close:active {
    transform: scale(0.95) rotate(90deg);
    background: rgba(255, 255, 255, 0.8);
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity var(--transition-base), transform var(--transition-base), filter var(--transition-base);
    cursor: zoom-in;
}

.modal-image:hover {
    transform: scale(1.02);
}

.modal-image.switching {
    opacity: 0.6;
    transform: scale(0.95);
    filter: blur(2px);
}



/* Image navigation - within same work */
.modal-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--gray-800);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
}

.modal-image-nav.prev {
    left: 15px;
}

.modal-image-nav.next {
    right: 15px;
}

.modal-image-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.05);
    color: var(--gray-900);
}

.modal-image-nav:active {
    transform: translateY(-50%) scale(0.95);
    background: rgba(255, 255, 255, 0.8);
}

/* Image counter */
.modal-image-counter {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-800);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    z-index: 1002;
    backdrop-filter: blur(20px);
    letter-spacing: 0.3px;
}

.modal-info {
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.modal-info h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.modal-info p {
    margin-bottom: var(--space-md);
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

.modal-area {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.modal-thumbnails {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-md);
    overflow-x: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.modal-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.modal-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
}

.modal-thumbnails::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: var(--radius-full);
}

.modal-thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
}

.modal-thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    transition: all var(--transition-base);
}

.modal-thumbnail.active {
    border-color: var(--primary);
    transform: scale(1.05);
}

.modal-thumbnail.active::after {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0) 100%);
}

.modal-thumbnail:hover {
    border-color: var(--primary);
    transform: scale(1.03);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal help hints */
.modal-help {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    z-index: 1003;
    opacity: 0;
    animation: fadeInHelp 0.6s ease-in-out 2s forwards;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

@keyframes fadeInHelp {
    0% { 
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    100% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.modal-help.hide {
    animation: fadeOutHelp 0.4s ease-in-out forwards;
}

@keyframes fadeOutHelp {
    0% { 
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% { 
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   GENERAL RESPONSIVE DESIGN
   ======================================== */

/* Точные breakpoints для консистентного отображения */
@media screen and (max-width: 1200px) {
    .footer-main {
        gap: 20px;
    }
    
    .footer-requisites-section {
        min-width: 240px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .footer-main {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }
    
    .footer-logo-section {
        min-width: 180px;
        max-width: 240px;
    }
    
    .footer-contact-section {
        min-width: 160px;
        max-width: 200px;
    }
    
    .footer-requisites-section {
        min-width: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .contact-info {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 var(--space-md);
    }
    
    .nav-center {
        display: none;
    }
    
    .contact-info {
        display: none;
    }
    
    .hero-content {
        padding: 0 var(--space-md);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }
    
    .footer-logo-section,
    .footer-contact-section,
    .footer-requisites-section {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .requisites-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        align-items: center;
    }
    
    .requisites-label {
        min-width: auto;
        max-width: none;
        text-align: center;
    }
    
    .requisites-value {
        text-align: center;
    }
    
    section {
        padding: var(--space-3xl) 0;
    }
    
    .contact-form {
        margin: var(--space-xl) var(--space-md);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        min-width: 160px;
        padding: var(--space-sm) var(--space-lg);
    }
    
    .modal-content {
        width: 95vw;
        height: 95vh;
    }
    
    .modal-image-container {
        height: 300px;
    }
    
    .modal-image-nav {
        width: 32px;
        height: 32px;
    }
    
    .modal-image-nav.prev {
        left: 10px;
    }
    
    .modal-image-nav.next {
        right: 10px;
    }
    
    .modal-image-counter {
        top: 10px;
        left: 10px;
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .modal-info {
        padding: var(--space-md);
    }
    
    .modal-thumbnails {
        padding: var(--space-sm);
    }
    
    .modal-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    /* Футер на очень маленьких экранах */
    .footer {
        padding: 24px 0 16px 0;
    }
    
    .footer-content {
        padding: 0 16px;
    }
    
    .footer-main {
        gap: 24px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-tagline {
        font-size: 12px;
    }
    
    .footer-contact-section h4,
    .footer-requisites-section h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .footer-contact a {
        font-size: 12px;
    }
    
    .requisites-label,
    .requisites-value {
        font-size: 11px;
    }
    
    .footer-bottom {
        padding-top: 12px;
    }
    
    .footer-bottom p {
        font-size: 11px;
    }
}

/* Специальные правила для популярных разрешений */

/* Full HD 1920x1080 и схожие разрешения */
@media screen and (min-width: 1920px) {
    .footer {
        background: #09090b !important;
        background-color: #09090b !important;
    }
    
    .footer-main {
        max-width: 1200px;
        margin: 0 auto;
        gap: 48px;
    }
    
    .footer-logo-section {
        max-width: 380px;
    }
    
    .footer-contact-section {
        max-width: 280px;
    }
    
    .footer-requisites-section {
        max-width: 500px;
    }
}

/* 1440p и 4K мониторы */
@media screen and (min-width: 2560px) {
    .footer {
        background: #09090b !important;
        background-color: #09090b !important;
    }
    
    .footer-content {
        max-width: 1400px;
    }
    
    .footer-main {
        max-width: 1400px;
        gap: 64px;
    }
}

/* Стандартные ноутбуки 1366x768, 1440x900, 1600x900 */
@media screen and (min-width: 1400px) and (max-width: 1919px) {
    .footer {
        background: #09090b !important;
        background-color: #09090b !important;
    }
    
    .footer-main {
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .footer-logo-section {
        max-width: 320px;
    }
    
    .footer-contact-section {
        max-width: 240px;
    }
    
    .footer-requisites-section {
        max-width: 450px;
    }
}

/* Принудительные стили для всех разрешений */
@media screen {
    .footer {
        background: #09090b !important;
        background-color: #09090b !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Принудительные стили для всех дочерних элементов */
    .footer *,
    .footer *::before,
    .footer *::after {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-sizing: border-box !important;
    }
    
    .footer-content,
    .footer-main,
    .footer-logo-section,
    .footer-contact-section,
    .footer-requisites-section,
    .requisites-compact,
    .requisites-item,
    .footer-bottom {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Принудительные стили для текста */
    .footer-logo {
        color: #dc2626 !important;
        font-size: 22px !important;
        font-weight: 700 !important;
        font-family: 'Playfair Display', serif !important;
    }
    
    .footer-tagline {
        color: #d4d4d4 !important;
        font-size: 13px !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    .footer-contact-section h4,
    .footer-requisites-section h4 {
        color: #dc2626 !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    .footer-contact a {
        color: #d4d4d4 !important;
        font-size: 13px !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    .requisites-label {
        color: #dc2626 !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    .requisites-value {
        color: #e5e5e5 !important;
        font-size: 12px !important;
        font-family: 'Inter', sans-serif !important;
    }
    
    .footer-bottom p {
        color: #a3a3a3 !important;
        font-size: 12px !important;
        font-family: 'Inter', sans-serif !important;
    }
} 
