/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0;
    background-color: #0E1A2B;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0E1A2B 0%, #1B2B44 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #FF7F50;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF7F50;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-phone {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: #FF7F50;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0E1A2B 0%, #1B2B44 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./img/3GfTGs.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #E0E0E0;
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FF7F50, #FFD700);
    color: #0E1A2B;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 127, 80, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

/* Anchor offset to account for fixed header */
.section[id] {
    scroll-margin-top: 100px;
}

#about, #services, #order, #contact {
    scroll-margin-top: 100px;
}

.section-title {
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #E0E0E0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #1B2B44 0%, #0E1A2B 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #1B2B44 0%, #0E1A2B 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF7F50, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #0E1A2B;
    font-weight: bold;
}

.benefit-title {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #E0E0E0;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1B2B44 0%, #0E1A2B 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(135deg, #0E1A2B 0%, #1B2B44 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #FF7F50;
}

.service-image {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-title {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.service-description {
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-price {
    font-size: 1.3rem;
    color: #FF7F50;
    font-weight: bold;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, #0E1A2B 0%, #1B2B44 100%);
    padding: 100px 0;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1B2B44 0%, #0E1A2B 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    background-color: rgba(224, 224, 224, 0.1);
    color: #E0E0E0;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    background-color: rgba(224, 224, 224, 0.2);
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.3);
    transform: translateY(-2px);
}

.form-select option {
    background-color: #1B2B44;
    color: #E0E0E0;
    padding: 10px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.form-checkbox {
    margin-top: 5px;
}

.form-checkbox-label {
    color: #E0E0E0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.form-checkbox-label a {
    color: #FF7F50;
    text-decoration: none;
}

.form-checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: linear-gradient(45deg, #FF7F50, #FFD700);
    color: #0E1A2B;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.3);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 127, 80, 0.4);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: linear-gradient(135deg, #1B2B44 0%, #0E1A2B 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #E0E0E0;
    line-height: 1.6;
}

.review-author {
    color: #FFD700;
    font-weight: bold;
}

.review-rating {
    color: #FF7F50;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #1B2B44 0%, #0E1A2B 100%);
}

.faq-item {
    background: rgba(224, 224, 224, 0.05);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: linear-gradient(135deg, #0E1A2B 0%, #1B2B44 100%);
    color: #FFD700;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #1B2B44 0%, #0E1A2B 100%);
}

.faq-answer {
    padding: 1.5rem;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.contact-info a {
    color: #FF7F50;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-map img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0E1A2B 0%, #1B2B44 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-description {
    color: #E0E0E0;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #E0E0E0;
}

.footer-contact a {
    color: #FF7F50;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF7F50;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(224, 224, 224, 0.1);
    color: #E0E0E0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0E1A2B 0%, #1B2B44 100%);
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    color: #E0E0E0;
    margin: 0;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: linear-gradient(45deg, #FF7F50, #FFD700);
    color: #0E1A2B;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 80, 0.3);
}

.cookie-policy-link {
    color: #FF7F50;
    text-decoration: none;
}

.cookie-policy-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .nav-list {
        flex-direction: row;
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .header-phone {
        font-size: 0.9rem;
    }
    
    .main {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .nav-list {
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.5rem;
    }
    
    .header-phone {
        font-size: 0.8rem;
        order: 3;
        flex-basis: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .order-form {
        padding: 2rem;
    }
}
