/* Base Styles */
:root {
    --bg-color: #f4f7fa;
    --text-color: #1f1f1f;
    --accent-gradient-start: #373B44;
    --accent-gradient-end: #4286f4;
    --button-color: #ff6f61;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--accent-gradient-end);
    text-decoration: none;
    transition: all var(--transition-speed);
}

a:hover {
    color: var(--accent-gradient-start);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

/* Header Styles */
.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: block;
}

.menu-toggle {
    display: none;
}

.menu-toggle-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle-label span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-list a:hover {
    color: var(--accent-gradient-end);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    transition: width var(--transition-speed);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--button-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
}

.nav-cta:hover {
    background-color: #e25f53;
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero-section {
    background-image: url('./img/8Br54.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(55, 59, 68, 0.8), rgba(66, 134, 244, 0.6));
}

.hero-section .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-section p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.cta-button {
    display: inline-block;
    background-color: var(--button-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    animation: fadeIn 1.5s ease;
}

.cta-button:hover {
    background-color: #e25f53;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 0 0 30px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed);
    overflow: hidden;
}

.service-card h3, 
.service-card p {
    padding: 0 20px;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 20px;
    color: var(--accent-gradient-end);
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Advantages Section */
.advantages-section {
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
}

.advantages-section h2::after {
    background: white;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    backdrop-filter: blur(5px);
    transition: transform var(--transition-speed);
}

.advantage-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.testimonial {
    scroll-snap-align: start;
    min-width: 300px;
    width: calc(33.33% - 20px);
    margin-right: 30px;
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.testimonial:last-child {
    margin-right: 0;
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.quote::before {
    content: "";
    font-size: 3rem;
    color: var(--accent-gradient-end);
    position: absolute;
    top: -20px;
    left: 0;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #777;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-step {
    width: calc(25% - 20px);
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -50px;
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* FAQ Section */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-toggle {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

.accordion-title {
    background-color: white;
    color: var(--text-color);
    padding: 20px;
    display: block;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.accordion-title:hover {
    background-color: #f8f8f8;
}

.accordion-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-speed);
}

.accordion-toggle:checked + .accordion-title {
    background: linear-gradient(to right, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
}

.accordion-toggle:checked + .accordion-title::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height var(--transition-speed);
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 20px;
    margin: 0;
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.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 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-button {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-family: 'Montserrat', sans-serif;
}

.submit-button:hover {
    background-color: #e25f53;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.main-footer {
    background-color: var(--accent-gradient-start);
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    flex: 2;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex: 3;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-nav, .footer-legal, .footer-contact {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-content h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--button-color);
}

.footer-content ul {
    list-style: none;
}

.footer-content li {
    margin-bottom: 10px;
}

.footer-content a {
    color: #eee;
    transition: color var(--transition-speed);
}

.footer-content a:hover {
    color: var(--button-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    bottom: 0;
    width: 90%;
    max-width: 800px;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: white;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 3px solid var(--button-color);
}

.cookie-popup.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-popup p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.cookie-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.cookie-button {
    background-color: var(--button-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(255, 111, 97, 0.3);
}

.cookie-button:hover {
    background-color: white;
    color: var(--accent-gradient-end);
    transform: translateY(-3px);
}

/* Policy Pages */
.policy-section {
    padding: 100px 0;
}

.policy-section h1 {
    text-align: center;
    margin-bottom: 40px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto 40px;
}

.policy-date {
    color: #777;
    margin-bottom: 30px;
    font-style: italic;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin-top: 40px;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

.contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.back-button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: var(--button-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.back-button:hover {
    background-color: #e25f53;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.check-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    margin-bottom: 30px;
}

.contact-info {
    margin-top: 30px;
}

.home-button {
    display: inline-block;
    background-color: var(--button-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 30px;
    transition: all var(--transition-speed);
}

.home-button:hover {
    background-color: #e25f53;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .process-step {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }
    
    .testimonial {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .menu-toggle-label {
        display: flex;
        z-index: 1002;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-speed);
        z-index: 1001;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 100px 40px;
    }
    
    .nav-list li {
        margin-left: 0;
        margin-bottom: 20px;
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .menu-toggle:checked ~ .menu-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle:checked ~ .menu-toggle-label span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .process-step {
        width: 100%;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
    }
    
    .footer-nav, .footer-legal, .footer-contact {
        margin-bottom: 0;
    }
    
    .testimonial {
        width: 100%;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .services-grid, .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-popup {
        width: 95%;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-button, .cookie-link {
        text-align: center;
    }
    
    .cookie-button {
        order: -1;
        margin-bottom: 10px;
    }
} 