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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: #fefbf3;
}

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

/* Logo and Brand */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    flex-shrink: 0;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
}

/* Centered sections */
.centered-section {
    padding: 50px;
    text-align: center;
}

.centered-section .container > * {
    margin-left: auto;
    margin-right: auto;
}

.centered-section h2 {
    text-align: center;
}

.centered-section .section-subtitle {
    text-align: center;
}

/* Header */
.header {
    background: #fefbf3;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1e3a8a;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fefbf3;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #e2e8f0;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fefbf3;
    padding: 3rem 0;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fefbf3;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Buttons */
.btn, .cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary, .cta-button.primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover, .cta-button.primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-secondary, .cta-button.secondary {
    background: transparent;
    color: #fefbf3;
    border: 2px solid #fefbf3;
}

.btn-secondary:hover, .cta-button.secondary:hover {
    background: #fefbf3;
    color: #1e3a8a;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Instruments Grid */
.instruments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instrument-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.instrument-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instrument-image {
    height: 200px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.instrument-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.instrument-card h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.instrument-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.price-range {
    font-size: 1.125rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.instrument-cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.instrument-cta:hover {
    background: #1e40af;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Rental Plans */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rental-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.rental-card.featured {
    border: 2px solid #ff7f7f;
    transform: scale(1.05);
}

.rental-card h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.rental-period {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.rental-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.rental-card ul li {
    padding: 0.25rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.rental-card ul li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rental-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

/* Trade-in Section */
.trade-in {
    background: #f8fafc;
}

.trade-in-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.trade-in-text h2 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.trade-in-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trade-in-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.trade-in-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #374151;
}

.trade-in-text ul li::before {
    content: "✓";
    color: #059669;
    font-weight: bold;
    margin-right: 0.75rem;
}

.trade-in-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trade-in-visual img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .trade-in-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Lessons Section */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lesson-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.lesson-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.lesson-card h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lesson-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lesson-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #059669;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.feature h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

/* Financing */
.financing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.financing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.financing-option {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.financing-option h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.rate {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff7f7f;
    margin-bottom: 0.5rem;
}

.financing-option p {
    color: #64748b;
    font-size: 0.875rem;
}

.contacts{
    padding: 50px;
}
/* Contact Section */
.contacts-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    color: #1e3a8a;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: space-between;
    color: #374151;
}

.contact-item strong {
    margin-right: 0.5rem;
    min-width: 80px;
}

.map-placeholder {
    background: #f8fafc;
    height: 350px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: #fefbf3;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.footer-brand {
    max-width: 350px;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fefbf3;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fefbf3;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        max-width: none;
        text-align: center;
    }
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #cbd5e0;
    margin: 0;
}