* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-btn {
    background: #FFD700;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.phone-btn:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 50 Q25 25 50 50 T100 50" stroke="%23FFD700" fill="none" opacity="0.1"/></svg>');
    opacity: 0.05;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #FFD700;
    display: block;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #ddd;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #FFD700;
    color: #1a1a1a;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #FFC700;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #FFD700;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
}

/* Benefits */
.benefits {
    padding: 60px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.section-title span {
    color: #FFD700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #FFD700;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.benefit-card p {
    color: #666;
    font-size: 15px;
}

/* Pricing */
.pricing {
    padding: 60px 0;
    background: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.price-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.price-card.featured {
    border: 3px solid #FFD700;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFEF8 100%);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #1a1a1a;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 10px;
}

.price span {
    font-size: 18px;
    color: #666;
}

.price-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.price-features li:last-child {
    border-bottom: none;
}

/* Services */
.services {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-item {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px 25px;
    border-radius: 10px;
    border-left: 4px solid #FFD700;
    transition: all 0.3s;
}

.service-item:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateX(5px);
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #FFD700;
    font-weight: 700;
}

.service-item p {
    color: #ddd;
    font-size: 14px;
}

/* Gallery */
.gallery {
    padding: 60px 0;
    background: #fff;
}

.gallery-slider {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery-slide {
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gallery-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    background: #FFD700;
    width: 30px;
    border-radius: 6px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #2d2d2d;
}

.cta-phone {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.cta-phone:hover {
    transform: scale(1.05);
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: #f9f9f9;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    color: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
    color: #FFD700;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-item.active .faq-question {
    color: #FFD700;
}

.faq-toggle {
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    margin-bottom: 20px;
}

.footer-phone {
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    text-decoration: none;
    display: inline-block;
    margin: 20px 0;
}

.footer-info {
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .cta-phone {
        font-size: 36px;
    }
    
    .header-content {
        justify-content: center;
    }
    
    .gallery-slide {
        height: 300px;
    }
}