/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #c9c9c9;
    background: linear-gradient(135deg, #1a1d2e 0%, #2a2d43 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(42, 45, 67, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 225, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #00ffe1;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #c9c9c9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00ffe1;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    background: 
        linear-gradient(rgba(42, 45, 67, 0.8), rgba(26, 29, 46, 0.9)),
        url('./img/ukLGtL.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 225, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 225, 0.3);
    box-shadow: 0 20px 40px rgba(0, 255, 225, 0.2);
    transition: all 0.3s ease;
}

.hero-img:hover {
    border-color: #00ffe1;
    box-shadow: 0 30px 60px rgba(0, 255, 225, 0.3);
    transform: translateY(-5px);
}

.hero-title {
    font-size: 3rem;
    color: #00ffe1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 225, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c9c9c9;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #00ffe1, #ff6f61);
    color: #2a2d43;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 225, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.about-section,
.benefits-section,
.services-section,
.testimonials-section,
.faq-section,
.contact-section {
    border-bottom: 1px solid rgba(0, 255, 225, 0.1);
}

.benefits-section {
    background: 
        linear-gradient(rgba(26, 29, 46, 0.95), rgba(42, 45, 67, 0.95)),
        url('./img/TyRuou.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

h2 {
    font-size: 2.5rem;
    color: #00ffe1;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    color: #ff6f61;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    padding-right: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffe1;
    text-shadow: 0 0 10px rgba(0, 255, 225, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #c9c9c9;
    margin-top: 0.5rem;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(255, 111, 97, 0.3);
    box-shadow: 0 15px 35px rgba(255, 111, 97, 0.2);
    transition: all 0.3s ease;
}

.about-img:hover {
    border-color: #ff6f61;
    box-shadow: 0 25px 50px rgba(255, 111, 97, 0.3);
    transform: translateY(-3px);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(42, 45, 67, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 225, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: #00ffe1;
    box-shadow: 0 10px 30px rgba(0, 255, 225, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(42, 45, 67, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 225, 0.2);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card.featured {
    border-color: #ff6f61;
    box-shadow: 0 0 40px rgba(255, 111, 97, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6f61, #00ffe1);
    color: #2a2d43;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price {
    font-size: 2.5rem;
    color: #00ffe1;
    font-weight: bold;
    margin: 1rem 0;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 225, 0.1);
}

.select-service {
    background: linear-gradient(135deg, #00ffe1, #ff6f61);
    color: #2a2d43;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.select-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 225, 0.3);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(42, 45, 67, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #ff6f61;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(42, 45, 67, 0.8);
    border-left-color: #00ffe1;
    box-shadow: 0 10px 30px rgba(0, 255, 225, 0.1);
    transform: translateY(-3px);
}

.testimonial-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6f61;
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
    transition: all 0.3s ease;
}

.avatar-img:hover {
    border-color: #00ffe1;
    box-shadow: 0 8px 25px rgba(0, 255, 225, 0.4);
    transform: scale(1.05);
}

.testimonial-author {
    margin-top: 1rem;
    text-align: right;
}

.testimonial-author strong {
    color: #00ffe1;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(42, 45, 67, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 255, 225, 0.1);
}

.faq-toggle {
    color: #00ffe1;
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #00ffe1;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #ff6f61;
}

.contact-office-image {
    margin-bottom: 2rem;
}

.office-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(0, 255, 225, 0.3);
    box-shadow: 0 10px 25px rgba(0, 255, 225, 0.2);
    transition: all 0.3s ease;
}

.office-img:hover {
    border-color: #00ffe1;
    box-shadow: 0 15px 35px rgba(0, 255, 225, 0.3);
    transform: translateY(-3px);
}

/* Form Styles */
.contact-form {
    background: rgba(42, 45, 67, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 225, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #00ffe1;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(26, 29, 46, 0.8);
    border: 2px solid rgba(0, 255, 225, 0.3);
    border-radius: 8px;
    color: #c9c9c9;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00ffe1;
    box-shadow: 0 0 10px rgba(0, 255, 225, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background: linear-gradient(135deg, #00ffe1, #ff6f61);
    color: #2a2d43;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 225, 0.3);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(42, 45, 67, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 225, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: space-between;
    align-items: center;
}

.cookie-link {
    color: #00ffe1;
    text-decoration: none;
}

.cookie-accept {
    background: linear-gradient(135deg, #00ffe1, #ff6f61);
    color: #2a2d43;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
.footer {
    background: rgba(26, 29, 46, 0.9);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 225, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #00ffe1;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links a {
    color: #c9c9c9;
    text-decoration: none;
}

.footer-links a:hover {
    color: #00ffe1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 225, 0.1);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .about-img {
        height: 300px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section,
    .benefits-section {
        background-attachment: scroll;
    }
    
    section {
        padding: 50px 0;
    }
    
    h2 {
        font-size: 2rem;
    }
} 