/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #666;
    background-color: #fff;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #333333;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #7B68EE;
    color: white;
    border: 2px solid #7B68EE;
}

.btn-primary:hover {
    background: #e69500;
    border-color: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 168, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333333;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    background: #333333;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-link {
    background: transparent;
    color: #7B68EE;
    padding: 8px 0;
}

.btn-link:hover {
    color: #e69500;
    transform: translateX(4px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.navbar-brand .logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #7B68EE;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7B68EE;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* ===== LANGUAGE SELECT ===== */
.login-box {
    display: flex;
    align-items: center;
}

.login-box .form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background-color: #fff;
    color: #374151;
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    min-width: 140px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-box .form-control:hover {
    border-color: #cbd5e1;
}

.login-box .form-control:focus {
    outline: none;
    border-color: #7B68EE;
    box-shadow: 0 0 0 3px rgba(246, 168, 0, 0.12);
}

.nav-menu .login-box select {
    margin-left: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f4f4f4;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #333333;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333333;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 5rem 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.service-card {
    background: #f4f4f4;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-title {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-subtitle {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-description {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* ===== VOLUME OFFERS SECTION ===== */
.volume-offers {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #7B68EE;
}

.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.section-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 5rem 0;
    background: #f1f5f9;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.cta-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-title {
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-description {
    color: #64748b;
    margin-bottom: 2rem;
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 5rem 0;
    background: #fff;
    color: #333333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #7B68EE;
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: #333333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #7B68EE;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-item label {
    font-weight: 600;
    color: #cbd5e1;
}

.contact-item a,
.contact-item span {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #7B68EE;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #7B68EE;
    transform: translateY(-2px);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #7B68EE;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #cbd5e1;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .navbar-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Page Header */
    .page-header {
        padding: 6rem 0 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    /* Values Section */
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Contact Section */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 8rem 0 3rem;
    margin-top: 80px;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #7B68EE;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #7B68EE;
}

.breadcrumb .separator {
    color: #64748b;
}

.breadcrumb .current {
    color: #7B68EE;
    font-weight: 500;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-content h3 {
    color: #2563eb;
    margin: 2rem 0 1rem;
}

.about-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 5rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 5rem 0;
    background: #f1f5f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.team-member h3 {
    color: #1e293b;
    margin: 1.5rem 1.5rem 0.5rem;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin: 0 1.5rem 1rem;
}

.member-description {
    color: #64748b;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

/* ===== CTA CONTENT ===== */
.cta-content h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* .contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
} */

.contact-intro {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-content h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #1d4ed8;
}

.contact-content p,
.contact-content address {
    color: #64748b;
    margin: 0.25rem 0 0;
    font-style: normal;
    line-height: 1.5;
}

.social-contact h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

/* ===== CONTACT FORM ===== */
.contact-form h2 {
    color: #1e293b;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 5rem 0;
    background: white;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background: #f1f5f9;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ===== UTILITIES ===== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.process-section {
    padding: 4rem 0;
    background: #f8fafc;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-section,
.policy-section,
.terms-section,
.cookies-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.legal-content,
.policy-content,
.terms-content,
.cookies-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block,
.policy-block,
.terms-block,
.cookies-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.legal-block:hover,
.policy-block:hover,
.terms-block:hover,
.cookies-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Legal blocks animations */
.legal-block,
.policy-block,
.terms-block,
.cookies-block {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.legal-block:nth-child(1) { animation-delay: 0.1s; }
.legal-block:nth-child(2) { animation-delay: 0.2s; }
.legal-block:nth-child(3) { animation-delay: 0.3s; }
.legal-block:nth-child(4) { animation-delay: 0.4s; }
.legal-block:nth-child(5) { animation-delay: 0.5s; }
.legal-block:nth-child(6) { animation-delay: 0.6s; }
.legal-block:nth-child(7) { animation-delay: 0.7s; }
.legal-block:nth-child(8) { animation-delay: 0.8s; }
.legal-block:nth-child(9) { animation-delay: 0.9s; }
.legal-block:nth-child(10) { animation-delay: 1.0s; }

.legal-block h2,
.policy-block h2,
.terms-block h2,
.cookies-block h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: #333333;
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #7B68EE;
}

.legal-block h2 i,
.policy-block h2 i,
.terms-block h2 i,
.cookies-block h2 i {
    color: #7B68EE;
    width: 24px;
    text-align: center;
    font-size: 1.25rem;
}

.legal-block h3,
.policy-block h3,
.terms-block h3,
.cookies-block h3 {
    margin: 1.5rem 0 1rem;
    color: #333333;
    font-size: 1.25rem;
    font-weight: 600;
}

.legal-block p,
.policy-block p,
.terms-block p,
.cookies-block p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-block ul,
.policy-block ul,
.terms-block ul,
.cookies-block ul {
    color: #666;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-block li,
.policy-block li,
.terms-block li,
.cookies-block li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Company Info Styles */
.company-info,
.controller-info,
.address-info,
.registration-info,
.insurance-info,
.hosting-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #7B68EE;
}

.info-item {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item strong {
    color: #333333;
    font-weight: 600;
    display: inline-block;
    min-width: 200px;
}

.info-item a {
    color: #7B68EE;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #e69500;
    text-decoration: underline;
}

/* Representatives Styles */
.representatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.representative {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #7B68EE;
}

.representative strong {
    color: #333333;
    font-weight: 600;
}

/* Address Info Styles */
.address-info p {
    margin: 0;
    line-height: 1.6;
}

.address-info strong {
    color: #333333;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Intellectual Property Styles */
.intellectual-property p {
    margin-bottom: 1rem;
    text-align: justify;
}

/* Applicable Law Styles */
.applicable-law p {
    font-style: italic;
    text-align: center;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #7B68EE;
}

/* Last Update Styles */
.last-update {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.last-update p {
    margin-bottom: 0.5rem;
}

.last-update p:last-child {
    margin-bottom: 0;
}

.last-update strong {
    color: #0ea5e9;
    font-weight: 600;
}

/* Process Steps Styles */
.return-process,
.process-steps {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin: 0 0 0.5rem 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: #64748b;
}

/* Contact Methods Styles */
.contact-methods,
.return-contact .contact-methods,
.privacy-contact .contact-methods,
.cookies-contact .contact-methods {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.contact-method i {
    color: #2563eb;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-method a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* FAQ Styles for Policy Pages */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #e2e8f0;
}

.faq-question h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.faq-question i {
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Cookies Specific Styles */
.cookies-types {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cookie-type {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.cookie-type h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.cookie-type h3 i {
    color: #2563eb;
    width: 20px;
}

.cookies-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookies-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookies-table th {
    background: #2563eb;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookies-table tr:hover {
    background: #f8fafc;
}

.browser-settings {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.browser h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.browser h4 i {
    color: #2563eb;
    width: 20px;
}

.browser ol {
    color: #64748b;
    padding-left: 1.5rem;
}

.browser li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Third Party Cookies */
.third-party-cookies h3 {
    color: #1e293b;
    margin: 1.5rem 0 1rem;
}

.third-party-cookies p {
    color: #64748b;
    margin-bottom: 1rem;
}

.third-party-cookies ul {
    margin: 1rem 0;
}

.third-party-cookies a {
    color: #2563eb;
    text-decoration: none;
}

.third-party-cookies a:hover {
    text-decoration: underline;
}

/* Last Update Styles */
.last-update {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.last-update p {
    margin-bottom: 0.5rem;
}

.last-update p:last-child {
    margin-bottom: 0;
}

/* ===== CONTAINERS PAGE STYLES ===== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #7B68EE 0%, #e69500 100%);
    padding: 4rem 0 2rem;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

/* Filters Section */
.filters-section {
    background: #f8f9fa;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    font-size: 1rem;
    color: #333333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: #7B68EE;
    box-shadow: 0 0 0 3px rgba(246, 168, 0, 0.1);
}

.filter-select:hover {
    border-color: #7B68EE;
}

.filter-group .btn {
    height: 48px;
    align-self: flex-end;
    white-space: nowrap;
}

/* Containers Section */
.containers-section {
    padding: 4rem 0;
    background: white;
}

.containers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.container-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.container-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.container-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.container-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.container-card:hover .container-image img {
    transform: scale(1.05);
}

.container-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.container-badge.new {
    background: #10b981;
    color: white;
}

.container-badge.used {
    background: #f59e0b;
    color: white;
}

.container-content {
    padding: 1.5rem;
}

.container-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.container-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.spec i {
    color: #7B68EE;
    width: 16px;
    text-align: center;
}

.container-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.container-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #7B68EE;
}

.price-note {
    font-size: 0.85rem;
    color: #999;
}

.container-actions {
    display: flex;
    gap: 0.75rem;
}

.container-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    padding: 10px 16px;
}

/* Animation for filtered containers */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container-card.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* No results message */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: #666;
    grid-column: 1 / -1;
}

.no-results h3 {
    color: #333333;
    margin-bottom: 1rem;
}

.no-results p {
    margin-bottom: 1.5rem;
}

/* Filter results counter */
.filter-results {
    text-align: center;
    margin: 1rem 0;
    color: #666;
    font-size: 0.9rem;
}

.filter-results strong {
    color: #7B68EE;
}

/* Responsive Styles for Containers Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .containers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container-actions {
        flex-direction: column;
    }
    
    .container-actions .btn {
        flex: none;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0 1rem;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .containers-section {
        padding: 2rem 0;
    }
    
    .container-content {
        padding: 1rem;
    }
    
    .container-specs {
        gap: 0.25rem;
    }
    
    .spec {
        font-size: 0.85rem;
    }
}

/* ===== DEPOTS PAGE STYLES ===== */

/* Depots Introduction */
.depots-intro {
    background: #f8f9fa;
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.intro-stats .stat-item {
    text-align: center;
}

.intro-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #7B68EE;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.intro-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Depots Section */
.depots-section {
    padding: 4rem 0;
    background: white;
}

.depots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.depot-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.depot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.depot-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.depot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.depot-card:hover .depot-image img {
    transform: scale(1.05);
}

.depot-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.depot-badge.main {
    background: #7B68EE;
    color: white;
}

.depot-badge.port {
    background: #2563eb;
    color: white;
}

.depot-content {
    padding: 2rem;
}

.depot-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
}

.depot-info {
    margin-bottom: 2rem;
}

.depot-address,
.depot-contact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.depot-address i,
.depot-contact i {
    color: #7B68EE;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.depot-address div,
.depot-contact div {
    flex: 1;
}

.depot-address strong {
    color: #333333;
    font-weight: 600;
}

.depot-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.depot-contact a:hover {
    color: #7B68EE;
}

.depot-hours,
.depot-services {
    margin-bottom: 1.5rem;
}

.depot-hours h4,
.depot-services h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.75rem;
}

.depot-hours ul,
.depot-services ul {
    list-style: none;
    padding: 0;
}

.depot-hours li,
.depot-services li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.depot-hours li::before,
.depot-services li::before {
    content: "•";
    color: #7B68EE;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.depot-hours li strong {
    color: #333333;
}

.depot-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.depot-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 0.9rem;
    padding: 12px 16px;
}

/* Map Section */
.depots-map-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.depots-map-section .section-title {
    color: #333333;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.map-container iframe {
    display: block;
    border-radius: 12px;
}

/* Depot Services Section */
.depot-services-section {
    padding: 4rem 0;
    background: white;
}

.depot-services-section .section-title {
    color: #333333;
    margin-bottom: 3rem;
}

.depot-services-section .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depot-services-section .service-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.depot-services-section .service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.depot-services-section .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B68EE 0%, #e69500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.depot-services-section .service-item h3 {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 1rem;
}

.depot-services-section .service-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for Depots Page */
@media (max-width: 768px) {
    .depots-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .depot-actions {
        flex-direction: column;
    }
    
    .depot-actions .btn {
        flex: none;
    }
    
    .depot-services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .intro-content h2 {
        font-size: 2rem;
    }
    
    .intro-content p {
        font-size: 1rem;
    }
    
    .intro-stats {
        gap: 2rem;
    }
    
    .intro-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .depots-intro {
        padding: 2rem 0;
    }
    
    .depots-section {
        padding: 2rem 0;
    }
    
    .depot-content {
        padding: 1.5rem;
    }
    
    .depot-image {
        height: 200px;
    }
    
    .depot-services-section {
        padding: 2rem 0;
    }
    
    .depot-services-section .service-item {
        padding: 1.5rem 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .intro-stats .stat-number {
        font-size: 1.75rem;
    }
}

/* ===== DEVIS PAGE STYLES ===== */

/* Devis Introduction */
.devis-intro {
    background: #f8f9fa;
    padding: 3rem 0;
    border-bottom: 1px solid #e9ecef;
}

.devis-intro .intro-content h2 {
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 1.5rem;
}

.devis-intro .intro-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Devis Section */
.devis-section {
    padding: 4rem 0;
    background: white;
}

.devis-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form Container */
.devis-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    overflow: hidden;
}

.devis-form {
    padding: 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f3f4;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #7B68EE;
}

.form-section h3 i {
    color: #7B68EE;
    font-size: 1.1rem;
}

/* Form Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    color: #333333;
    background: white;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7B68EE;
    box-shadow: 0 0 0 3px rgba(246, 168, 0, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #7B68EE;
}

.form-group.focused label {
    color: #7B68EE;
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.devis-form.submitting {
    opacity: 0.8;
    pointer-events: none;
}

.devis-form.submitting .form-section {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.checkbox-item:hover {
    background: #f8f9fa;
    border-color: #e9ecef;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #7B68EE;
    border-color: #7B68EE;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Form Submit */
.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f3f4;
}

.form-submit .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Sidebar */
.devis-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #7B68EE;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.5;
}

.benefits-list li:last-child {
    margin-bottom: 0;
}

.benefits-list i {
    color: #10b981;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.benefits-list strong {
    color: #333333;
}

/* Contact Info in Sidebar */
.sidebar-card .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-card .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sidebar-card .contact-item i {
    color: #7B68EE;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    width: 20px;
    text-align: center;
}

.sidebar-card .contact-item div {
    flex: 1;
}

.sidebar-card .contact-item strong {
    color: #333333;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar-card .contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-card .contact-item a:hover {
    color: #7B68EE;
}

/* Container Types */
.container-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.type-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
}

.type-item:hover {
    background: #e9ecef;
    color: #333333;
}

.type-item i {
    color: #7B68EE;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.process-section .section-title {
    color: #333333;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B68EE 0%, #e69500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.25rem;
    color: #333333;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

/* Form animations */
.form-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-card {
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 0.6s ease forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Success message styles */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.success-message.show {
    transform: translateX(0);
}

.success-message i {
    margin-right: 0.5rem;
}

/* Responsive Styles for Devis Page */
@media (max-width: 768px) {
    .devis-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .container-types {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .devis-intro .intro-content h2 {
        font-size: 2rem;
    }
    
    .devis-intro .intro-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .devis-intro {
        padding: 2rem 0;
    }
    
    .devis-section {
        padding: 2rem 0;
    }
    
    .devis-form {
        padding: 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .sidebar-card {
        padding: 1rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Responsive Styles for Legal Pages */
@media (max-width: 768px) {
    .legal-section,
    .policy-section,
    .terms-section,
    .cookies-section {
        padding: 2rem 0;
    }
    
    .legal-block,
    .policy-block,
    .terms-block,
    .cookies-block {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .legal-block h2,
    .policy-block h2,
    .terms-block h2,
    .cookies-block h2 {
        font-size: 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-item strong {
        min-width: auto;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .representatives {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .cookies-table {
        font-size: 0.9rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 0.8rem;
    }
    
    .browser-settings {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-block,
    .policy-block,
    .terms-block,
    .cookies-block {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .legal-block h2,
    .policy-block h2,
    .terms-block h2,
    .cookies-block h2 {
        font-size: 1.1rem;
    }
    
    .company-info,
    .controller-info,
    .address-info,
    .contact-info,
    .registration-info,
    .insurance-info,
    .hosting-info {
        padding: 1rem;
    }
    
    .representative {
        padding: 0.75rem;
    }
}
