/* 
   Main Stylesheet
   Color palette:
   - Background: #0E1D40 (deep indigo blue)
   - Accents: #9EF8D2 (lime-mint)
   - Text: #ECECEC (light gray)
   - Secondary background: gradient from #1F2E4D to #0E1D40
   - Buttons: #B45CFA (purple), hover: #D3A5FF
*/

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0E1D40;
    color: #ECECEC;
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #9EF8D2;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 20px;
}

a {
    color: #9EF8D2;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #D3A5FF;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: #B45CFA;
    color: #fff;
}

.btn-primary:hover {
    background-color: #D3A5FF;
    color: #0E1D40;
}

.btn-nav {
    background-color: #B45CFA;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
}

/* Header */
header {
    background-color: rgba(14, 29, 64, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

.menu-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ECECEC;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.close-menu {
    display: none;
    font-size: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav li a {
    color: #ECECEC;
    font-weight: 500;
}

.main-nav li a:hover {
    color: #9EF8D2;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(14, 29, 64, 0.8), rgba(14, 29, 64, 0.8)), url('./img/Ztzyn.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 800px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1F2E4D, #0E1D40);
    padding: 100px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #0E1D40;
}

.service-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: linear-gradient(135deg, #1F2E4D, #0E1D40);
    border-radius: 10px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #9EF8D2;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0E1D40, #1F2E4D);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    padding: 20px;
    background: rgba(31, 46, 77, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: scale(1.05);
}

.advantage-item h3 {
    color: #9EF8D2;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #0E1D40;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: linear-gradient(135deg, #1F2E4D, #0E1D40);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: rgba(158, 248, 210, 0.2);
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    display: block;
    font-weight: 600;
    color: #9EF8D2;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1F2E4D, #0E1D40);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(31, 46, 77, 0.6);
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    transition: all 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-toggle:checked + .faq-question:after {
    content: '−';
}

.faq-toggle:checked + .faq-question {
    background-color: rgba(31, 46, 77, 0.8);
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #0E1D40;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: linear-gradient(135deg, #1F2E4D, #0E1D40);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    color: #9EF8D2;
    margin-bottom: 5px;
}

.member-title {
    color: #B45CFA;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0E1D40, #1F2E4D);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(31, 46, 77, 0.6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(158, 248, 210, 0.3);
    background-color: rgba(14, 29, 64, 0.8);
    color: #ECECEC;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #9EF8D2;
    box-shadow: 0 0 0 2px rgba(158, 248, 210, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Coordinates Section */
.coordinates-section {
    padding: 100px 0;
    background-color: #0E1D40;
}

.coordinates-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.coordinate-item {
    padding: 20px;
    background: rgba(31, 46, 77, 0.6);
    border-radius: 10px;
}

.coordinate-item h3 {
    color: #9EF8D2;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1F2E4D, #0E1D40);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h3 {
    color: #9EF8D2;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(158, 248, 210, 0.1);
}

.policy-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0E1D40, #1F2E4D);
}

.policy-section h1 {
    color: #9EF8D2;
    text-align: center;
    margin-bottom: 40px;
}

.policy-content {
    background: rgba(31, 46, 77, 0.6);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.policy-content h2 {
    color: #9EF8D2;
    font-size: 1.5rem;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 20px;
}

.policy-content h2:after {
    content: none;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

.policy-footer {
    text-align: center;
    margin-top: 30px;
    color: #ECECEC;
    opacity: 0.7;
}
/* Cookie Popup */
#cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(31, 46, 77, 0.95);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-link {
    margin-left: 10px;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: rgba(14, 29, 64, 0.98);
        padding: 80px 20px;
        transition: all 0.3s ease;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .close-menu {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
} 