/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #101820;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, #FEE715, #00FFD1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

h2 {
    font-size: 2.5rem;
    color: #FEE715;
}

h3 {
    font-size: 2rem;
    color: #00FFD1;
}

p {
    color: #B0B0B0;
    margin-bottom: 1rem;
}

/* Animations */
@keyframes glow {
    from {
        text-shadow: 0 0 10px #FEE715, 0 0 20px #FEE715, 0 0 30px #FEE715;
    }
    to {
        text-shadow: 0 0 20px #00FFD1, 0 0 30px #00FFD1, 0 0 40px #00FFD1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in {
    animation: slideIn 0.8s ease-out;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #101820 0%, rgba(0, 255, 209, 0.1) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(254, 231, 21, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #FEE715;
    text-decoration: none;
    text-shadow: 0 0 10px #FEE715;
    transition: all 0.3s ease;
}

.logo a:hover {
    text-shadow: 0 0 20px #FEE715, 0 0 30px #FEE715;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #00FFD1;
    text-shadow: 0 0 10px #00FFD1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FEE715, #00FFD1);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-phone a {
    color: #FEE715;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid #FEE715;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.header-phone a:hover {
    background: #FEE715;
    color: #101820;
    box-shadow: 0 0 20px rgba(254, 231, 21, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #FEE715, #00FFD1);
    color: #101820;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(254, 231, 21, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(0, 255, 209, 0.4);
}

.btn-outline {
    background: transparent;
    color: #FEE715;
    border: 2px solid #FEE715;
}

.btn-outline:hover {
    background: #FEE715;
    color: #101820;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #101820 0%, rgba(0, 255, 209, 0.1) 50%, rgba(254, 231, 21, 0.05) 100%);
    background-image: url('./img/of8lCS.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.8), rgba(0, 255, 209, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: #FFFFFF;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00FFD1, transparent);
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(0, 255, 209, 0.05));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    animation: slideIn 0.8s ease-out;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 209, 0.3);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(254, 231, 21, 0.4);
}

/* Advantages Section */
.advantages {
    background: linear-gradient(135deg, rgba(254, 231, 21, 0.05), rgba(16, 24, 32, 0.95));
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.1), rgba(16, 24, 32, 0.8));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 209, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 209, 0.3);
    border-color: #00FFD1;
}

.advantage-icon {
    font-size: 3rem;
    color: #FEE715;
    margin-bottom: 1rem;
    display: block;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(254, 231, 21, 0.05));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(254, 231, 21, 0.1), rgba(16, 24, 32, 0.8));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(254, 231, 21, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}





.service-card h3 {
    color: #FEE715;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #00FFD1;
    margin: 1rem 0;
}

.service-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(254, 231, 21, 0.3);
    transition: all 0.3s ease;
}



/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.05), rgba(16, 24, 32, 0.95));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.1), rgba(16, 24, 32, 0.8));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #00FFD1;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 209, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.testimonial-author {
    color: #FEE715;
    font-weight: bold;
}

/* Order Form Section */
.order-form {
    background: linear-gradient(135deg, rgba(254, 231, 21, 0.05), rgba(16, 24, 32, 0.95));
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.9), rgba(0, 255, 209, 0.1));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 209, 0.3);
    box-shadow: 0 0 40px rgba(0, 255, 209, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FEE715;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(16, 24, 32, 0.8);
    border: 2px solid rgba(0, 255, 209, 0.3);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00FFD1;
    box-shadow: 0 0 15px rgba(0, 255, 209, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group label a {
    color: #FFFFFF;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(0, 255, 209, 0.05));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: linear-gradient(135deg, rgba(254, 231, 21, 0.1), rgba(16, 24, 32, 0.8));
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(254, 231, 21, 0.3);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #00FFD1;
}

.team-member h4 {
    color: #FEE715;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: #00FFD1;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, rgba(0, 255, 209, 0.05), rgba(16, 24, 32, 0.95));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.9), rgba(0, 255, 209, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 209, 0.3);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #FEE715;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #00FFD1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    text-shadow: 0 0 10px #00FFD1;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(254, 231, 21, 0.3);
}

.map-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(0, 0, 0, 0.9));
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 209, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #FEE715;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a {
    color: #FFFFFF;
}

.footer-section .contact-info a {
    color: #FFFFFF;
}

.footer-links a:hover {
    color: #00FFD1;
    text-shadow: 0 0 5px #00FFD1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 209, 0.1);
    color: #B0B0B0;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(0, 255, 209, 0.1));
    border: 1px solid rgba(0, 255, 209, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    color: #FFFFFF;
}

.cookie-content a {
    color: #00FFD1;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-decline {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #00FFD1;
    color: #101820;
}

.btn-accept:hover {
    background: #FEE715;
}

.btn-decline {
    background: transparent;
    color: #B0B0B0;
    border: 1px solid #B0B0B0;
}

.btn-decline:hover {
    background: #B0B0B0;
    color: #101820;
}

/* Policy Pages */
.policy-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.95), rgba(0, 255, 209, 0.05));
    border-radius: 15px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 209, 0.2);
}

.policy-page h1 {
    color: #FEE715;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-page h2 {
    color: #00FFD1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-page h3 {
    color: #FEE715;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-page ul,
.policy-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-page li {
    margin-bottom: 0.5rem;
    color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .advantage-card,
    .service-card,
    .testimonial-card,
    .team-member {
        padding: 1.5rem;
    }
}
