/* Base Styles */
:root {
    --primary-bg: #1B1F3B;
    --accent-color: #FF6B35;
    --secondary-accent: #FFD166;
    --text-color: #FFFFFF;
    --secondary-text: #B0B0B0;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-bg);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--secondary-accent);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
    /* Center heading */
    text-align: center;
}

h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-accent));
    bottom: 0;
    /* Center the underline */
    left: 50%;
    transform: translateX(-50%);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    color: var(--text-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: var(--text-color);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-color);
}

/* Cookie Consent */
.cookie-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(27, 31, 59, 0.95);
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--accent-color);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    background-color: rgba(27, 31, 59, 0.95);
    padding: 20px 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
}

.nav-list a:hover {
    color: var(--accent-color);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--text-color) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

.menu-toggle-label {
    display: none;
    cursor: pointer;
}

.menu-icon {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: background-color var(--transition-speed) ease;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--text-color);
    transition: all var(--transition-speed) ease;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(rgba(27, 31, 59, 0.8), rgba(27, 31, 59, 0.9)), url('./img/vQY7qi.jpg') center/cover;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.01);
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background-color: rgba(255, 107, 53, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: var(--secondary-accent);
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-accent));
}

.service-card p {
    text-align: center;
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background-color: rgba(255, 255, 255, 0.02);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    background-color: rgba(255, 255, 255, 0.03);
    transition: all var(--transition-speed) ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    background-color: rgba(255, 107, 53, 0.05);
}

.benefit-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 100px 0;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 0;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.testimonial-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.testimonial-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(27, 31, 59, 1), rgba(27, 31, 59, 0));
    z-index: 1;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    border-top: 3px solid var(--secondary-accent);
    background-color: rgba(255, 255, 255, 0.03);
    width: 100%;
    flex: 1;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    position: absolute;
    top: 230px;
    right: 20px;
    color: rgba(255, 107, 53, 0.2);
    font-family: Georgia, serif;
    z-index: 3;
}

.testimonial-text {
    margin: 0 0 20px;
    position: relative;
    z-index: 3;
    text-align: center;
    font-style: italic;
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--secondary-accent);
    font-style: normal;
    text-align: center;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Process Section */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    counter-reset: process-counter;
    margin-top: 40px;
}

.process-step {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: all var(--transition-speed) ease;
}

.process-step:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 107, 53, 0.05);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-accent));
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 15px;
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(rgba(27, 31, 59, 0.9), rgba(27, 31, 59, 0.95)), url('./img/vQY7qi.jpg') center/cover;
}

.form-container {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--secondary-accent);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.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 rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

/* Improved dropdown styling */
.form-group select {
    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='white' width='18px' height='18px'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    cursor: pointer;
    border: 1px solid var(--accent-color);
}

.form-group select:focus {
    border-color: var(--secondary-accent);
    box-shadow: 0 0 0 2px rgba(255, 209, 102, 0.3);
    outline: none;
}

.form-group select option {
    background-color: var(--primary-bg);
    color: var(--text-color);
    padding: 10px;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 107, 53, 0.05);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.faq-question:hover {
    background-color: rgba(255, 107, 53, 0.05);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease;
}

.faq-toggle:checked + .faq-question {
    background-color: rgba(255, 107, 53, 0.05);
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 500px;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer */
.site-footer {
    padding: 60px 0 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--secondary-text);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--secondary-text);
}

/* Thank You Page */
.thank-you-section {
    text-align: center;
    padding: 100px 0;
}

.thank-you-content h1 {
    color: var(--accent-color);
    margin-bottom: 30px;
}

.thank-you-message {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--secondary-accent);
}

.action-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-section {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--secondary-accent);
}

.legal-content h1 {
    color: var(--accent-color);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .menu-toggle-label {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 101;
    }
    
    .menu-toggle:checked ~ .menu-toggle-label .menu-icon {
        background-color: transparent;
    }
    
    .menu-toggle:checked ~ .menu-toggle-label .menu-icon::before {
        transform: rotate(45deg) translate(0, 8px);
    }
    
    .menu-toggle:checked ~ .menu-toggle-label .menu-icon::after {
        transform: rotate(-45deg) translate(0, -8px);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: right var(--transition-speed) ease;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content button {
        width: 100%;
    }
} 