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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --neon-glow: 0 0 10px rgba(231, 76, 60, 0.5), 0 0 20px rgba(231, 76, 60, 0.3), 0 0 30px rgba(231, 76, 60, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.cookie-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Header Styles */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    font-size: 28px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-2);
    transition: width 0.4s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo:hover {
    transform: scale(1.05);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* Hero Section with Accordion */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: #000;
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    bottom: 20%;
    left: 5%;
    animation-delay: 5s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
    transform: translate(-50%, -50%);
}

.decoration-dots {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.decoration-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

.decoration-dots span:nth-child(1) { animation-delay: 0s; }
.decoration-dots span:nth-child(2) { animation-delay: 0.3s; }
.decoration-dots span:nth-child(3) { animation-delay: 0.6s; }
.decoration-dots span:nth-child(4) { animation-delay: 0.9s; }
.decoration-dots span:nth-child(5) { animation-delay: 1.2s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.hero-accordion {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.accordion-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: flex 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    border-right: 2px solid transparent;
}

.accordion-item:last-child {
    border-right: none;
}

.accordion-item.active {
    flex: 3;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

.accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(231, 76, 60, 0.75));
    transition: var(--transition);
}

.accordion-item.active .accordion-overlay {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(231, 76, 60, 0.5));
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.accordion-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    right: 80px;
    color: var(--bg-white);
    z-index: 10;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(231, 76, 60, 0.3);
    border: 1px solid rgba(231, 76, 60, 0.5);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Title with Typography Play */
.hero-title {
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line-1 {
    display: block;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 5px;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.title-line-2 {
    display: block;
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.title-line-3 {
    display: block;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 5px;
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcf7f, #4d96ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.95; }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: rgba(231, 76, 60, 0.9);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.hero-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 0.5s;
}

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

.hero-btn:hover {
    background: #c0392b;
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--neon-glow);
}

.neon-border {
    border: 2px solid rgba(231, 76, 60, 0.8);
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.5), inset 0 0 20px rgba(231, 76, 60, 0.1);
}

.hero-btn-ghost {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--bg-white);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.hero-btn-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s;
}

.hero-btn-ghost:hover::before {
    left: 100%;
}

.hero-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
}

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

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-ctrl {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-ctrl svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.hero-ctrl:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(231, 76, 60, 0.8);
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.5);
}

.hero-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.dot:hover::after {
    width: 20px;
    height: 20px;
}

.dot.active {
    background: var(--bg-white);
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.dot.active::after {
    display: none;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

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

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Instruments Section */
.instruments-section {
    background: var(--bg-light);
}

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

.instrument-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

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

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

.instrument-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(231, 76, 60, 0.3);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.instrument-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: #c0392b;
    margin-left: 5px;
}

/* Categories Section */
.categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.category-item:hover::before {
    opacity: 0.1;
}

.category-item:hover {
    background: linear-gradient(135deg, var(--primary-color), #34495e);
    color: var(--bg-white);
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(231, 76, 60, 0.5);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.category-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-item:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.category-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.category-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.category-item:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Services Section */
.services-section {
    background: var(--bg-white);
}

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

.service-box {
    text-align: center;
    padding: 40px 30px;
    position: relative;
    transition: all 0.4s ease;
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-2);
    transition: width 0.4s ease;
}

.service-box:hover::after {
    width: 80%;
}

.service-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.service-box:hover .service-icon::before {
    left: 100%;
}

.service-box:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.service-box h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-box:hover h3 {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--bg-light);
}

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

.why-choose-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-check {
    background: var(--gradient-2);
    color: var(--bg-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(240, 87, 108, 0.4);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-check {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 6px 20px rgba(240, 87, 108, 0.6);
}

.feature-item h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.about-content {
    display: grid;
    gap: 50px;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-light);
    font-size: 16px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 120px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--secondary-color);
}

.testimonial-stars {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(255, 255, 255, 0.9));
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.05), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1), 0 4px 15px rgba(231, 76, 60, 0.1);
    transform: translateY(-2px);
    background: var(--bg-white);
}

.submit-btn {
    padding: 16px 40px;
    background: var(--gradient-2);
    color: var(--bg-white);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(240, 87, 108, 0.4);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(240, 87, 108, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

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

/* Policy Pages Styles */
.policy-page {
    padding: 40px 0;
    background: var(--bg-white);
}

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

.policy-header {
    margin-bottom: 40px;
}

.policy-header h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-header p {
    color: var(--text-light);
    font-size: 16px;
}

.policy-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-content a {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.thanks-content a:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    /* Hero improvements for better readability */
    .accordion-overlay {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.92), rgba(231, 76, 60, 0.88)) !important;
    }
    
    .accordion-item.active .accordion-overlay {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(231, 76, 60, 0.8)) !important;
    }
    
    .glass-effect {
        background: rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .title-line-1 {
        font-size: 24px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .title-line-2 {
        font-size: 52px;
        text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    }
    
    .title-line-3 {
        font-size: 26px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
        opacity: 1 !important;
    }
    
    .glass-effect {
        padding: 35px 40px;
    }
    
    .accordion-content {
        left: 30px;
        right: 30px;
        bottom: 60px;
    }
    
    .why-choose-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .instruments-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .decoration-shape {
        opacity: 0.05;
    }
    
    .hero-decorations {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Hero accordion becomes full-screen slider on mobile */
    .hero-accordion {
        flex-direction: column;
    }
    
    .accordion-item {
        flex: 0;
        min-height: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        border-right: none;
        border-bottom: none;
        transition: opacity 0.6s ease, max-height 0.6s ease;
    }
    
    .accordion-item.active {
        flex: 1;
        min-height: 100%;
        max-height: 100%;
        opacity: 1;
        border-right: none;
        border-bottom: none;
    }
    
    .hero-section {
        height: 90vh;
        min-height: 600px;
    }
    
    /* Enhanced overlay for better text readability */
    .accordion-overlay {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(231, 76, 60, 0.9)) !important;
    }
    
    .accordion-item.active .accordion-overlay {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.88), rgba(231, 76, 60, 0.85)) !important;
    }
    
    /* Improved glass effect with better contrast */
    .glass-effect {
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.35);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    
    .title-line-1 {
        font-size: 20px;
        letter-spacing: 2px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        font-weight: 400;
    }
    
    .title-line-2 {
        font-size: 42px;
        text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
        line-height: 1.1;
    }
    
    .title-line-3 {
        font-size: 22px;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-subtitle {
        font-size: 15px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        opacity: 1 !important;
        line-height: 1.7;
        font-weight: 400;
    }
    
    .hero-badge {
        background: rgba(231, 76, 60, 0.5);
        border: 1px solid rgba(231, 76, 60, 0.7);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    .glass-effect {
        padding: 30px 25px;
    }
    
    .accordion-content {
        left: 20px;
        right: 20px;
        bottom: 140px;
        top: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn, .hero-btn-ghost {
        width: 100%;
        text-align: center;
        font-size: 13px;
        padding: 15px 35px;
    }
    
    /* Improve controls visibility */
    .hero-controls {
        bottom: 20px;
        padding: 12px 20px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px);
    }
    
    .scroll-indicator {
        bottom: 80px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-form-wrapper::before {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 85vh;
        min-height: 550px;
    }
    
    /* Maximum contrast for smallest screens */
    .accordion-overlay {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.97), rgba(231, 76, 60, 0.93)) !important;
    }
    
    .accordion-item.active .accordion-overlay {
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.92), rgba(231, 76, 60, 0.88)) !important;
    }
    
    .glass-effect {
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    }
    
    .title-line-1 {
        font-size: 18px;
        letter-spacing: 1.5px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
        font-weight: 500;
    }
    
    .title-line-2 {
        font-size: 38px;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
        line-height: 1.1;
        letter-spacing: -1px;
    }
    
    .title-line-3 {
        font-size: 20px;
        letter-spacing: 1px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
    }
    
    .hero-subtitle {
        font-size: 14px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        opacity: 1 !important;
        line-height: 1.6;
        font-weight: 400;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 16px;
        background: rgba(231, 76, 60, 0.6);
        border: 1px solid rgba(231, 76, 60, 0.8);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    .hero-btn, .hero-btn-ghost {
        padding: 14px 30px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .glass-effect {
        padding: 25px 20px;
    }
    
    .accordion-content {
        bottom: 120px;
        left: 15px;
        right: 15px;
    }
    
    .hero-controls {
        bottom: 15px;
        padding: 10px 15px;
        gap: 15px;
    }
    
    .hero-ctrl {
        width: 40px;
        height: 40px;
    }
    
    .hero-ctrl svg {
        width: 18px;
        height: 18px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 28px;
    }
    
    .scroll-indicator {
        bottom: 70px;
        font-size: 10px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .title-line-1 {
        font-size: 16px;
    }
    
    .title-line-2 {
        font-size: 32px;
    }
    
    .title-line-3 {
        font-size: 18px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .glass-effect {
        padding: 20px 15px;
    }
    
    .accordion-content {
        bottom: 110px;
        left: 10px;
        right: 10px;
    }
    
    .hero-btn, .hero-btn-ghost {
        padding: 12px 25px;
        font-size: 11px;
    }
}


