/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-bg: #0a0a0f;
    --secondary-bg: #1a1a2e;
    --accent-bg: #16213e;
    --card-bg: rgba(26, 26, 46, 0.8);
    --text-primary: #e8e8f0;
    --text-secondary: #b8b8c8;
    --text-muted: #888899;
    --accent-purple: #DC143C;  /* Crimson red like AK redline */
    --accent-gold: #1a1a1a;   /* Deep black */
    --accent-red: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);  /* Red to dark red */
    --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); /* Black gradient */
    
    /* Shadows */
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(220, 20, 60, 0.3);  /* Red glow */
    
    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9333EA;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.nav-logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 10px var(--accent-purple));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-menu a:hover {
    color: var(--text-primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, var(--primary-bg) 70%);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(245, 158, 11, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(139, 92, 246, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: float 20s linear infinite;
}

.wolf-silhouette {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 400px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 400"><g fill="none" stroke="rgba(220,20,60,0.4)" stroke-width="2"><path d="M175 80 L140 60 L120 40 L100 50 L90 70 L85 90 L90 110 L100 130 L120 140 L140 150 L160 160 L175 170 L190 160 L210 150 L230 140 L250 130 L260 110 L265 90 L260 70 L250 50 L230 40 L210 60 Z"/><path d="M175 170 L160 180 L150 200 L145 220 L150 240 L160 260 L175 280 L190 260 L200 240 L205 220 L200 200 L190 180 Z"/><path d="M100 50 L85 30 L75 20 L70 25 L75 35 L85 45"/><path d="M250 50 L265 30 L275 20 L280 25 L275 35 L265 45"/><circle cx="145" cy="120" r="6" fill="rgba(220,20,60,0.6)"/><circle cx="205" cy="120" r="6" fill="rgba(220,20,60,0.6)"/><path d="M175 140 L170 150 L175 155 L180 150 Z" fill="rgba(220,20,60,0.3)"/><path d="M160 160 L175 170 L190 160" stroke-width="3"/></g><g fill="rgba(220,20,60,0.1)" stroke="rgba(220,20,60,0.2)" stroke-width="1"><polygon points="120,140 140,150 160,160 175,170 190,160 210,150 230,140 220,120 200,110 175,115 150,110 130,120"/><polygon points="150,200 160,180 175,170 190,180 200,200 190,220 175,230 160,220"/></g></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.7;
    animation: breathe 4s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease-out 1.2s forwards;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--accent-purple);
    border-bottom: 2px solid var(--accent-purple);
    transform: rotate(45deg);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-padding);
}

/* About Section */
.about {
    background: var(--secondary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-purple);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.about-image .image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.about-image .image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
}

.placeholder-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Master Philosophy Section */
.master-philosophy {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.philosophy-text h3 {
    color: var(--accent-purple);
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    position: relative;
}

.philosophy-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
    border-radius: 2px;
}

.philosophy-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.author-signature {
    margin-top: 40px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.author-signature p {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
}

.signature-image {
    height: 110px;
    width: auto;
    opacity: 0.8;
    filter: invert(1) brightness(0.9);
}

.philosophy-image {
    position: relative;
}

.philosophy-image .image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.philosophy-image .image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    background: var(--primary-bg);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--accent-bg);
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(139, 92, 246, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    text-align: center;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.portfolio-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--secondary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-price {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 10px 18px;
    display: inline-block;
    text-align: center;
    min-width: 80px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.15);
    margin-top: 5px;
}

.service-card:hover .service-price {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
    background: rgba(139, 92, 246, 0.15);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(220, 20, 60, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(26, 26, 26, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold), var(--accent-purple));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
    border-radius: 2px;
}

/* Style group for conditional fields */
#style-group {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#style-group.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Custom select styling for better UX */
.form-group select:hover {
    border-color: rgba(220, 20, 60, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.02);
}

/* Smooth animation for form elements */
.form-group {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 18px 20px;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B5CF6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 50px;
    position: relative;
    z-index: 1;
}

.form-group select option {
    background: #2a2a2a;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group select option:hover,
.form-group select option:checked {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    color: #ffffff;
}

.form-group select option:disabled {
    background: #1a1a1a;
    color: #666666;
    cursor: not-allowed;
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1),
                0 8px 25px rgba(220, 20, 60, 0.15);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1),
                0 8px 25px rgba(220, 20, 60, 0.15);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    z-index: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-form .btn-primary::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;
}

.contact-form .btn-primary:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.4),
                0 5px 15px rgba(220, 20, 60, 0.2);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-purple));
}

.contact-form .btn-primary:active {
    transform: translateY(-1px);
}

.working-hours {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    text-align: center;
}

.working-hours h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.working-hours p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.2),
                0 0 20px rgba(220, 20, 60, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}

.contact-details {
    flex: 1;
    position: relative;
    z-index: 2;
}

.contact-details h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    position: relative;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
    transition: width 0.3s ease;
}

.contact-details a:hover::after {
    width: 100%;
}

.contact-details a:hover {
    color: var(--accent-gold);
    transform: translateX(3px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--accent-purple);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: white;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--accent-purple);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    color: var(--text-muted);
}

.footer-signature {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 20, 60, 0.1);
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.mubi-link {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.mubi-link:hover {
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.3);
}

.mubi-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(90deg, var(--accent-purple), #fbbf24);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* ===== ANIMATIONS ===== */
@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(10px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes breathe {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.05); }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--secondary-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 4rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .contact-form h3 {
        font-size: 1.6rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-text {
        order: 2;
    }
    
    .philosophy-image {
        order: 1;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .wolf-silhouette {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 40px;
    }
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #1a1a2e 50%, var(--primary-bg) 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(220, 20, 60, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.pricing .section-title {
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.pricing .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold));
    border-radius: 2px;
}

.pricing-category {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.pricing-category:nth-child(2) { animation-delay: 0.3s; }
.pricing-category:nth-child(3) { animation-delay: 0.5s; }
.pricing-category:nth-child(4) { animation-delay: 0.7s; }
.pricing-category:nth-child(5) { animation-delay: 0.9s; }

.category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.category-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: calc(50% - 100px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-purple));
    transform: translateY(-50%);
    z-index: -1;
}

.category-title::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(50% - 100px);
    height: 1px;
    background: linear-gradient(90deg, var(--accent-purple), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transform: translateY(0);
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.6s ease;
}

.pricing-item:hover::before {
    left: 100%;
}

.pricing-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3),
                0 0 30px rgba(220, 20, 60, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-item.featured {
    border: 2px solid var(--accent-purple);
    background: rgba(220, 20, 60, 0.1);
    transform: scale(1.05);
    position: relative;
}

.pricing-item.featured::after {
    content: 'Популярно';
    position: absolute;
    top: -1px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-gold));
    color: var(--text-primary);
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 25px 50px rgba(220, 20, 60, 0.4),
                0 0 40px rgba(220, 20, 60, 0.3);
}

.pricing-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.pricing-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.pricing-item .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-purple);
    position: relative;
    z-index: 2;
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-item:hover .price {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.pricing-note {
    background: rgba(220, 20, 60, 0.1);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-gold), var(--accent-purple));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.pricing-note p {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pricing-note strong {
    color: var(--accent-purple);
    font-weight: 600;
}

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

@keyframes shimmer {
    0%, 100% {
        background-position: -200% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pricing {
        padding: 80px 0;
    }
    
    .pricing .section-title {
        font-size: 2.2rem;
        margin-bottom: 60px;
    }
    
    .pricing-category {
        margin-bottom: 60px;
    }
    
    .category-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .category-title::before,
    .category-title::after {
        width: calc(50% - 80px);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-item {
        padding: 25px;
    }
    
    .pricing-item.featured {
        transform: none;
    }
    
    .pricing-item.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-item h4 {
        font-size: 1.2rem;
    }
    
    .pricing-item .price {
        font-size: 1.8rem;
    }
    
    .pricing-note {
        padding: 25px;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-item {
        padding: 20px;
    }
    
    .pricing-item h4 {
        font-size: 1.1rem;
    }
    
    .pricing-item .price {
        font-size: 1.6rem;
    }
}

.pricing-note p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pricing-note strong {
    color: var(--accent-primary);
    font-weight: 600;
}
