/* CSS Variables - Warm Beige Color Palette */
:root {
    --color-cream: #FDF8F3;
    --color-beige-light: #F5EBE0;
    --color-beige: #E6D5C3;
    --color-beige-dark: #D4C4B0;
    --color-brown-light: #B5A191;
    --color-brown: #8B7355;
    --color-brown-dark: #5D4E37;
    --color-accent: #C9A86C;
    --color-accent-light: #D4BA8A;
    --color-accent-dark: #A68B5B;
    --color-text: #4A3F35;
    --color-text-light: #6B5D4D;
    --color-white: #FFFFFF;
    --color-success: #7DB87D;
    --color-error: #D4726A;

    --gradient-primary: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    --gradient-bg: linear-gradient(135deg, var(--color-cream) 0%, var(--color-beige-light) 100%);
    --gradient-text: linear-gradient(135deg, var(--color-accent) 0%, var(--color-brown) 100%);

    --shadow-sm: 0 2px 8px rgba(93, 78, 55, 0.08);
    --shadow-md: 0 4px 20px rgba(93, 78, 55, 0.12);
    --shadow-lg: 0 8px 40px rgba(93, 78, 55, 0.15);
    --shadow-glow: 0 0 40px rgba(201, 168, 108, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--color-cream);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-brown-dark);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-beige-light);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 100px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-beige);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float-particle 15s infinite;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.cursor-glow.visible {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(5px);
}

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

.btn-glow {
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.4);
}

.btn-glow:hover {
    box-shadow: 0 8px 30px rgba(201, 168, 108, 0.6);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--color-brown-dark);
    border: 2px solid var(--color-beige-dark);
}

.btn-outline:hover {
    background: var(--color-beige-light);
    border-color: var(--color-accent);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 248, 243, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--color-accent-dark);
}

.nav a:hover::before,
.nav a.active::before {
    width: 100%;
}

.nav a.active {
    color: var(--color-accent-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--color-brown-dark);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    padding: 5px 0;
    transition: var(--transition);
    position: relative;
}

.nav-dropdown > .nav-dropdown-toggle::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-dropdown > .nav-dropdown-toggle:hover {
    color: var(--color-accent-dark);
}

.nav-dropdown > .nav-dropdown-toggle:hover::before,
.nav-dropdown > .nav-dropdown-toggle.active::before {
    width: 100%;
}

.nav-dropdown > .nav-dropdown-toggle.active {
    color: var(--color-accent-dark);
}

.nav-dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 10px 0;
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1002;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 22px;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.nav-dropdown-menu a::before {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(200, 170, 130, 0.12);
    color: var(--color-accent-dark);
}

.nav-dropdown-menu a.active {
    color: var(--color-accent-dark);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-beige);
    top: -200px;
    right: -200px;
    animation: morphShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-light);
    bottom: -100px;
    left: -100px;
    animation: morphShape 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--color-beige-dark);
    top: 50%;
    left: 50%;
    animation: morphShape 18s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-brown-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(93, 78, 55, 0.25));
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.deco {
    position: absolute;
    font-size: 2.5rem;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.deco-1 { top: 10%; left: 10%; animation-delay: 0s; }
.deco-2 { top: 20%; right: 5%; animation-delay: 0.5s; }
.deco-3 { bottom: 20%; left: 5%; animation-delay: 1s; }
.deco-4 { bottom: 10%; right: 15%; animation-delay: 1.5s; }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-brown-light);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-brown-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--color-brown-light);
    font-weight: 600;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
}

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

.about-text p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--color-beige-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    background: var(--color-beige);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent-dark);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: var(--color-brown-dark);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    padding: 30px;
    background: var(--gradient-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid var(--color-beige);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent-dark);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* Catalog Section */
.catalog {
    padding: 100px 0;
    background: var(--gradient-bg);
    position: relative;
}

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

.catalog-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-beige);
}

.catalog-card:hover::before {
    transform: scaleX(1);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.catalog-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-brown-dark);
    transition: var(--transition);
}

.catalog-card:hover .card-icon svg {
    stroke: var(--color-white);
}

.catalog-card h3 {
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 15px;
    text-align: center;
}

.catalog-card > p {
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-accent-dark);
    text-align: center;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    margin-bottom: 25px;
}

.card-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--color-text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--color-beige-light);
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--color-beige-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-features li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.catalog-card .btn {
    width: 100%;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: var(--color-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.advantage-card:hover {
    background: var(--color-beige-light);
    transform: translateY(-10px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: var(--transition);
}

.advantage-card:hover .icon-bg {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.advantage-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-white);
    position: relative;
    z-index: 1;
}

.advantage-card h4 {
    font-size: 1.3rem;
    color: var(--color-brown-dark);
    margin-bottom: 12px;
}

.advantage-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--gradient-bg);
}

.gallery-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.gallery-carousel {
    overflow: hidden;
    border-radius: var(--radius-lg);
    flex: 1;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    flex: 0 0 33.333%;
    padding: 0 7px;
    box-sizing: border-box;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: var(--radius-lg);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(93, 78, 55, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-brown);
    background: var(--color-white);
    color: var(--color-brown);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 2;
}

.gallery-arrow:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.gallery-arrow svg {
    width: 24px;
    height: 24px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-brown);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-dot.active {
    background: var(--color-brown);
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: var(--color-white);
}

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

.contact-card {
    background: var(--gradient-bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent-dark);
}

.contact-item strong {
    display: block;
    color: var(--color-brown-dark);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-item p {
    color: var(--color-text);
    font-size: 1.1rem;
    font-weight: 600;
}

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

.social-link {
    width: 55px;
    height: 55px;
    background: var(--color-beige-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.social-link::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 8px 12px;
    background: var(--color-brown-dark);
    color: var(--color-white);
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.social-link:hover::before {
    transform: translateX(-50%) translateY(-5px);
    opacity: 1;
    visibility: visible;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.social-link svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-brown-dark);
    transition: var(--transition);
}

.social-link:hover svg {
    stroke: var(--color-white);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-beige);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--color-beige);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.input-focus {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.form-group input:focus ~ .input-focus,
.form-group textarea:focus ~ .input-focus {
    width: 100%;
    left: 0;
}

/* Contact Method Radio Buttons */
.contact-method-label {
    display: block;
    font-weight: 600;
    color: var(--color-brown-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-method-options {
    display: flex;
    gap: 10px;
}

.contact-method-option {
    flex: 1;
    cursor: pointer;
}

.contact-method-option input[type="radio"] {
    display: none;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border: 2px solid var(--color-beige);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.contact-method-btn:hover {
    border-color: var(--color-accent);
    background: rgba(201, 168, 108, 0.05);
}

.contact-method-option input[type="radio"]:checked + .contact-method-btn {
    border-color: var(--color-accent);
    background: rgba(201, 168, 108, 0.1);
    color: var(--color-brown-dark);
    box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.1);
}

@media (max-width: 480px) {
    .contact-method-options {
        flex-direction: column;
        gap: 8px;
    }
}

/* Footer */
.footer {
    background: var(--color-brown-dark);
    color: var(--color-beige-light);
    padding-top: 0;
    position: relative;
}

.footer-wave {
    margin-bottom: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    fill: var(--color-brown-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding: 60px 0;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-brown-light);
    font-size: 1rem;
    max-width: 250px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--color-brown-light);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-brown-light);
    font-size: 0.9rem;
}

.admin-link {
    color: var(--color-brown-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.admin-link:hover {
    color: var(--color-accent);
}

/* Notifications */
.notifications {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 20px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification.success {
    background: var(--color-success);
    color: var(--color-white);
}

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

.notification.removing {
    animation: slideOutRight 0.3s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        order: 1;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        flex: 0 0 50%;
    }

    .contacts-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 248, 243, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px;
        z-index: 999;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 1.5rem;
    }

    .nav-dropdown {
        text-align: center;
    }

    .nav-dropdown > .nav-dropdown-toggle {
        font-size: 1.5rem;
        justify-content: center;
    }

    .nav-dropdown-arrow {
        width: 16px;
        height: 16px;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        padding: 8px 0 0;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 300px;
    }

    .nav-dropdown.open .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-menu a {
        font-size: 1.2rem;
        padding: 8px 0;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .gallery-arrow {
        width: 36px;
        height: 36px;
    }

    .gallery-arrow svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .contact-card {
        padding: 25px;
    }

    .notifications {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
}
