/* 
 * Main Stylesheet
 * Color Palette:
 * - Main background: #0E1C36 (dark indigo)
 * - Accent color: #FF6F61 (coral)
 * - Supporting: #F7C59F (warm beige)
 * - Additional: #5DA9E9 (bright blue)
 * - Text colors: #FFFFFF and #D3D3D3
 */

/* Base Styles */
:root {
    --color-primary: #0E1C36;
    --color-accent: #FF6F61;
    --color-supporting: #F7C59F;
    --color-additional: #5DA9E9;
    --color-text-light: #FFFFFF;
    --color-text-light-alt: #D3D3D3;
    --color-text-dark: #333333;
    --font-primary: 'Roboto', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Roboto', Arial, sans-serif;
    --transition: all 0.3s ease;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* Reset & Base Styles */
* {
    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: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Header Styles */
.site-header {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
}

.logo a {
    display: block;
}

.logo svg {
    width: 100%;
    height: auto;
}

/* Navigation */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-list a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-close {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 20px;
        width: 30px;
        cursor: pointer;
    }
    
    .nav-toggle-label span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: var(--color-text-light);
        border-radius: 2px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--color-primary);
        padding: 4rem 2rem 2rem;
        transition: var(--transition);
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-close {
        display: block;
    }
    
    .nav-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    .nav-list a::after {
        bottom: -2px;
    }
}

/* Hero Section */
.hero-section {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('../img/2wJL3.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 28, 54, 0.8);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--color-text-light-alt);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

/* Advantages Section */
.advantages-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 1.5rem;
}

.service-card h3 {
    margin-top: 1.5rem;
    color: var(--color-primary);
}

.service-card p {
    padding-bottom: 1.5rem;
}

/* Order/Form Section */
.order-section {
    padding: 5rem 0;
    background-color: var(--color-supporting);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: var(--color-text-light);
}

.form-group select option {
    background-color: var(--color-text-light);
    color: var(--color-text-dark);
    padding: 10px;
}

/* Custom styling for select options */
.form-group select option {
    background-color: var(--color-supporting);
    color: var(--color-primary);
    padding: 10px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(255, 111, 97, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    display: inline;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    position: relative;
    padding: 1rem 0;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    color: var(--color-accent);
    opacity: 0.2;
}

.testimonial-author {
    margin-top: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.testimonial-author p {
    color: #666;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    padding: 1rem;
    cursor: pointer;
    display: block;
    position: relative;
    font-weight: 500;
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.faq-toggle:checked + .faq-question {
    background-color: var(--color-accent);
}

.faq-toggle:checked + .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-container {
    display: flex;
    gap: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    color: var(--color-accent);
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.25rem;
    color: var(--color-primary);
}

.contact-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--color-supporting);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s ease;
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    bottom: 0;
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 1rem;
    color: var(--color-primary);
}

.btn-cookie {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie:hover {
    background-color: var(--color-accent);
}

/* Footer */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-text-light-alt);
    padding-top: 3rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-info, .footer-contact, .footer-links, .footer-legal {
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
    max-width: 150px;
}

.footer-description {
    margin-bottom: 1rem;
}

.footer-contact ul, .footer-links ul, .footer-legal ul {
    padding: 0;
    margin: 0;
}

.footer-contact li, .footer-links li, .footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-contact strong {
    margin-right: 0.5rem;
}

.footer-links a, .footer-legal a {
    color: var(--color-text-light-alt);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-accent);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

/* Policy Pages */
.policy-section {
    padding: 5rem 0;
}

.policy-section h1 {
    margin-bottom: 2rem;
}

.policy-content {
    margin-bottom: 3rem;
}

.policy-content h2 {
    margin-top: 2.5rem;
    color: var(--color-primary);
}

.policy-content h3 {
    margin-top: 1.5rem;
    color: var(--color-primary);
}

.policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-content ul {
    list-style-type: disc;
}

.policy-content ol {
    list-style-type: decimal;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-actions {
    margin-top: 2rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-accent);
}

.thank-you-actions {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Error Container */
.error-container {
    max-width: 700px;
    margin: 5rem auto;
    text-align: center;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .thank-you-actions {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
} 