/* Global Styles */
:root {
    --color-primary: #2F3640;
    --color-accent: #F368E0;
    --color-secondary: #7EFFF5;
    --color-white: #F5F6FA;
    --color-text: #C8D6E5;
    --color-hover: #FF9FF3;
    --gradient-primary: linear-gradient(135deg, #2F3640 0%, #4D4F5C 100%);
    --gradient-accent: linear-gradient(135deg, #F368E0 0%, #FF9FF3 100%);
    --gradient-secondary: linear-gradient(135deg, #7EFFF5 0%, #58B7A6 100%);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

section[id] {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--color-primary);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: var(--transition);
}

a:hover {
    color: var(--color-hover);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

button, .btn {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--color-white);
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

button:hover, .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 104, 224, 0.3);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(47, 54, 64, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
}

.logo svg {
    margin-right: 10px;
}

.logo span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover {
    color: var(--color-white);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
}

.menu-button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.menu-button span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('./img/e02UZ.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--color-white);
}

/* About Section */
.about-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-card h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* Services Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--color-accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
   
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 0;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15px;
    width: 30px;
    height: 3px;
    background: var(--color-accent);
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-white);
    margin: 0 auto 20px;
}

/* Benefits Section */
.benefits {
    background: var(--gradient-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(47, 54, 64, 0.5);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(47, 54, 64, 0.8);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    flex: 0 0 100%;
    padding: 30px;
    background: var(--gradient-primary);
    border-radius: 15px;
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--color-accent);
    font-weight: 600;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    display: block;
    width: 100%;
    background: var(--gradient-primary);
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    color: var(--color-white);
    font-weight: 600;
    text-align: left;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(47, 54, 64, 0.5);
    border-radius: 0 0 8px 8px;
}

.faq-answer-inner {
    padding: 20px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-item input[type="checkbox"]:checked + .faq-question {
    border-radius: 8px 8px 0 0;
}

.faq-item input[type="checkbox"]:checked + .faq-question::after {
    content: '-';
}

/* Contact Form */
.form-section {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 15px;
}

form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(126, 255, 245, 0.2);
    border-radius: 8px;
    background: rgba(47, 54, 64, 0.5);
    color: var(--color-white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: rgba(47, 54, 64, 0.8);
}

.form-control::placeholder {
    color: rgba(200, 214, 229, 0.6);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237EFFF5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.submit-btn {
    justify-self: center;
    min-width: 200px;
}

.policy-page {
    padding: 120px 0 60px;
}

.policy-content {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: var(--color-secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.policy-section p {
    margin-bottom: 15px;
}

.policy-section ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-footer {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--color-text);
    opacity: 0.8;
}

/* Footer */
footer {
    background: var(--color-primary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(126, 255, 245, 0.1);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    display: grid;
    gap: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(126, 255, 245, 0.1);
    font-size: 0.9rem;
    color: rgba(200, 214, 229, 0.6);
}

/* Cookie Consent */
#cookie-consent {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--gradient-primary);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: all 0.5s ease;
}

#cookie-consent.show {
    bottom: 0;
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

#cookie-consent p {
    margin-right: 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

/* Custom Elements */
.highlight-text {
    color: var(--color-accent);
}

.bg-accent {
    background: var(--gradient-accent);
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--color-accent);
    margin: 20px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-button {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--gradient-primary);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked + .menu-button span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle:checked + .menu-button span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked + .menu-button span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    #cookie-consent p {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* Form Error Styles */
.form-error {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 82, 82, 0.2);
    border-left: 5px solid #ff5252;
    color: #ff5252;
    border-radius: 5px;
}

.form-error p {
    margin: 0;
    font-weight: 500;
} 