/* Cookie Policy Specific Styles */

.cookie-preferences-panel {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
}

.cookie-preferences-panel h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--white);
}

.btn-cookie-settings,
.btn-manage-cookies {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-settings:hover,
.btn-manage-cookies:hover {
    background: var(--accent-color);
    color: var(--gray-dark);
    transform: translateY(-2px);
}

.cookie-explanation {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.cookie-type-card {
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cookie-type-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
    font-size: 1.2rem;
}

.cookies-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.9rem;
}

.cookies-table thead {
    background: var(--gray-dark);
    color: var(--white);
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookies-table code {
    background: var(--light-color);
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.cookie-necessary {
    border-left: 4px solid #28a745;
}

.cookie-analytics {
    border-left: 4px solid #007bff;
}

.cookie-marketing {
    border-left: 4px solid #dc3545;
}

.cookie-preferences {
    border-left: 4px solid #ffc107;
}

.cookie-legend {
    margin-top: 20px;
    text-align: center;
}

.legend-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.legend-item {
    font-size: 0.9rem;
    font-weight: 600;
}

.legend-item.necessary {
    color: #28a745;
}

.legend-item.analytics {
    color: #007bff;
}

.legend-item.marketing {
    color: #dc3545;
}

.legend-item.preferences {
    color: #ffc107;
}

.finalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.finalidad-card {
    border-radius: var(--border-radius);
    padding: 25px;
    border-top: 4px solid;
    background: var(--white);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.finalidad-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.finalidad-card.necessary {
    border-top-color: #28a745;
}

.finalidad-card.analytics {
    border-top-color: #007bff;
}

.finalidad-card.marketing {
    border-top-color: #dc3545;
}

.finalidad-card.preferences {
    border-top-color: #ffc107;
}

.finalidad-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.finalidad-card h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.finalidad-note {
    font-style: italic;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 15px;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.legal-basis-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.basis-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.basis-item h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.basis-item p {
    margin-bottom: 10px;
}

.basis-item p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.third-party-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.third-party-item {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
}

.third-party-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.third-party-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.third-party-info strong {
    color: var(--gray-dark);
}

.third-party-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-management-panel {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.management-note {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
}

.management-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.option-item {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-color);
    text-align: center;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.option-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.browser-item {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
}

.browser-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.browser-item ol {
    margin-bottom: 15px;
}

.browser-item li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.browser-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.mobile-browsers {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.consequences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.consequence-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
    border-top: 4px solid;
    position: relative;
}

.consequence-card.necessary {
    border-top-color: #28a745;
}

.consequence-card.analytics {
    border-top-color: #007bff;
}

.consequence-card.marketing {
    border-top-color: #dc3545;
}

.consequence-card.preferences {
    border-top-color: #ffc107;
}

.consequence-impact {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.consequence-impact.severe {
    background: #dc3545;
    color: var(--white);
}

.consequence-impact.moderate {
    background: #ffc107;
    color: var(--gray-dark);
}

.consequence-impact.low {
    background: #28a745;
    color: var(--white);
}

.consequence-note {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 15px;
    margin-bottom: 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.version-history {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.version-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.version-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.version-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.contact-cookies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.contact-method {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.contact-method h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.contact-method p {
    margin-bottom: 8px;
    font-weight: 600;
}

.response-time {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-style: italic;
}

.additional-resources {
    background: var(--gray-light);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.additional-resources h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.additional-resources ul {
    margin-bottom: 0;
}

.additional-resources a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive Cookies Page */
@media (max-width: 768px) {
    .cookie-types-grid,
    .finalidades-grid,
    .third-party-cookies,
    .browser-instructions,
    .consequences-grid,
    .contact-cookies {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookies-table-container {
        font-size: 0.8rem;
    }
    
    .cookies-table th,
    .cookies-table td {
        padding: 8px 10px;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 10px;
    }
    
    .management-options {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .consequence-impact {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .cookie-preferences-panel,
    .cookie-management-panel {
        padding: 15px;
    }
    
    .finalidad-card,
    .consequence-card,
    .third-party-item,
    .browser-item {
        padding: 20px 15px;
    }
    
/* Accessibility Page Specific Styles */

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--gray-dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 4px 4px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1001;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

.commitment-statement {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.commitment-statement h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--white);
}

.commitment-statement blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
}

.commitment-statement cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.principles-list {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.principles-list dt {
    font-size: 1.1rem;
    margin-bottom: 8px;
    margin-top: 20px;
    color: var(--primary-color);
}

.principles-list dt:first-child {
    margin-top: 0;
}

.principles-list dd {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.standard-item {
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.standard-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.standard-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
    font-size: 1.3rem;
}

.standard-item p {
    margin-bottom: 10px;
}

.standard-item p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.measures-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.measure-category {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
}

.measure-category h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.measure-category ul {
    margin-bottom: 0;
}

.measure-category li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.measure-category strong {
    color: var(--gray-dark);
}

.conformity-status {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid #28a745;
}

.conformity-level {
    text-align: center;
    margin-bottom: 30px;
}

.conformity-level h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.conformity-badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.conformity-badge.aa {
    background: #28a745;
    color: var(--white);
}

.success-criteria {
    margin-top: 20px;
}

.criteria-level {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.criteria-level h5 {
    min-width: 120px;
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.criteria-bar {
    flex: 1;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.criteria-progress {
    height: 100%;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.criteria-percentage {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.limitations-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.limitation-item {
    background: var(--white);
    border: 1px solid #ffc107;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
}

.limitation-item h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.limitation-item p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.limitation-item p:last-child {
    margin-bottom: 0;
}

.limitation-item strong {
    color: var(--gray-dark);
}

.status-planned {
    background: #ffc107;
    color: var(--gray-dark);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-progress {
    background: #007bff;
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-resolved {
    background: #28a745;
    color: var(--white);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.evaluation-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.step-content p {
    margin-bottom: 0;
    color: var(--secondary-color);
    line-height: 1.5;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.tool-item {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border-top: 3px solid var(--primary-color);
}

.tool-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.tool-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.feedback-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 25px 0;
}

.feedback-method {
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feedback-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feedback-method h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.feedback-method p {
    margin-bottom: 8px;
    font-weight: 600;
}

.feedback-method a {
    color: var(--primary-color);
    text-decoration: underline;
}

.response-time {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: normal;
}

.feedback-commitment {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 25px 0;
}

.feedback-commitment h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.improvements-timeline {
    margin: 30px 0;
}

.improvements-timeline h3 {
    margin-bottom: 30px;
    color: var(--gray-dark);
    text-align: center;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 50px;
    bottom: -30px;
    width: 2px;
    background: var(--light-color);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-date {
    min-width: 100px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    height: fit-content;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    position: relative;
}

.timeline-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.timeline-content ul {
    margin-bottom: 15px;
}

.status-completed {
    background: #28a745;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tech-category {
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-light);
}

.tech-category h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.tech-category ul {
    margin-bottom: 0;
}

.tech-category li {
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.accessibility-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-info-acc {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.contact-info-acc h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.contact-info-acc p {
    margin-bottom: 8px;
}

.contact-info-acc a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-info-acc address {
    font-style: normal;
    line-height: 1.6;
}

/* Responsive Accessibility Page */
@media (max-width: 768px) {
    .standards-grid,
    .measures-categories,
    .feedback-channels,
    .technologies-grid,
    .accessibility-contact {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .evaluation-process {
        gap: 15px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-date {
        min-width: auto;
        align-self: flex-start;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .commitment-statement,
    .conformity-status,
    .feedback-commitment {
        padding: 20px;
    }
    
    .measure-category,
    .limitation-item,
    .timeline-content,
    .contact-info-acc {
        padding: 20px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-level {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .criteria-level h5 {
        min-width: auto;
    }
}/* Legal Pages Styles */
}
.legal-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-color), var(--white));
    border-bottom: 1px solid #eee;
}

.legal-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--gray-dark);
    margin-bottom: 15px;
    text-align: center;
}

.legal-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
}

.legal-meta {
    text-align: center;
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-style: italic;
}

.legal-content {
    padding: var(--section-padding);
    background: var(--white);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Table of Contents */
.legal-toc {
    position: sticky;
    top: 120px;
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    height: fit-content;
}

.legal-toc h3 {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.legal-toc ul {
    list-style: none;
}

.legal-toc li {
    margin-bottom: 8px;
}

.legal-toc a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
    border-left: 3px solid transparent;
    padding-left: 15px;
}

.legal-toc a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Legal Text Content */
.legal-text {
    line-height: 1.7;
}

.legal-text section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.legal-text h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gray-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-text h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin: 30px 0 15px;
}

.legal-text h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin: 25px 0 10px;
}


.services-overview {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.service-card.premium {
    border-color: var(--accent-color);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.premium-badge {
    background: var(--accent-color);
    color: var(--gray-dark);
}

.service-image {
    position: relative;
    height: 200px;
    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.1);
}

.service-content {
    padding: 30px;
}

.service-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.service-capacity {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.service-price {
    margin-bottom: 25px;
}

.price-amount {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-left: 5px;
}

.service-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.feature-item::before {
    content: none;
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.btn-service {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Additional Services */
.additional-services {
    padding: var(--section-padding);
    background: var(--light-color);
    position: relative;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.extra-item {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.extra-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.extra-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.extra-item h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.extra-item p {
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}

.extra-price {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Booking Section */
.booking-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info {
    order: 1;
}

.booking-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.highlight-text p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.booking-form-container {
    order: 2;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.extras-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.privacy-checkbox {
    margin-top: 10px;
}

.privacy-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.price-summary {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-line.total {
    border-top: 2px solid var(--primary-color);
    padding-top: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Comparison Table */
.comparison-section {
    padding: var(--section-padding);
    background: var(--white);
}

.comparison-table-container {
    overflow-x: auto;
    margin-top: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--light-color);
    font-weight: 600;
    color: var(--gray-dark);
    position: sticky;
    top: 0;
}

.featured-column {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table tbody tr:hover {
    background: var(--gray-light);
}

.comparison-table td:first-child {
    font-weight: 600;
    background: var(--white);
    position: sticky;
    left: 0;
    border-right: 1px solid #eee;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--light-color);
    position: relative;
}

.floating-elements-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.float-anchor,
.float-compass,
.float-wheel {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.float-anchor {
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-compass {
    background: var(--secondary-color);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-wheel {
    background: var(--accent-color);
    border-radius: 50%;
    bottom: 20%;

}

:root {
    --primary-color: #9999ff;
    --secondary-color: #6b7db3;
    --light-color: #e6ecff;
    --accent-color: #ffd699;
    --accent-dark: #b3966b;
    --white: #ffffff;
    --black: #000000;
    --gray-dark: #333333;
    --gray-light: #f8f9fa;
    
    /* Fonts */
    --font-primary: 'Josefin Slab', serif;
    --font-secondary: 'Neuton', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    --border-radius: 12px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-configure {
    padding: 10px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent-color);
    color: var(--gray-dark);
}

.btn-configure {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-accept:hover, .btn-configure:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-align: left;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-subtitle {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-dark);
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(153, 153, 255, 0.3), rgba(107, 125, 179, 0.4));
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line-1,
.title-line-2 {
    display: block;
}

.title-line-2 {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    background: var(--light-color);
}

.wave-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    font-size: 0;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
    border: none;
}

/* Why Choose Section */
.why-choose-section {
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.reason-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background: var(--white);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.reason-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reason-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.reason-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background: var(--gray-light);
    position: relative;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape.circle {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 10%;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 150px solid var(--accent-color);
    bottom: 20%;
    left: 5%;
}

.shape.square {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    transform: rotate(45deg);
    top: 60%;
    right: 20%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.gallery-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-gallery {
    background: var(--accent-color);
    color: var(--gray-dark);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Reviews Section */
.reviews-section {
    background: var(--white);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-content {
    margin-bottom: 20px;
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--gray-dark);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 3px;
}

.author-info span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Planning Section */
.planning-section {
    background: var(--gray-light);
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.float-item {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.float-item.anchor {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23%239999ff"><path d="M12 2C13.1 2 14 2.9 14 4C14 5.1 13.1 6 12 6C10.9 6 10 5.1 10 4C10 2.9 10.9 2 12 2M21 9V7H15L13.5 7.5C12.09 8.07 10.91 8.07 9.5 7.5L8 7H2V9H7.5L9.5 9.5C10.91 10.07 13.09 10.07 14.5 9.5L16.5 9H21M6 10V22H8V10H6M16 10V22H18V10H16Z"/></svg>') center/contain no-repeat;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-item.compass {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23%236b7db3"><circle cx="12" cy="12" r="10"/><polygon points="12,6 16,12 12,18 8,12"/></svg>') center/contain no-repeat;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.float-item.wheel {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23%23ffd699"><circle cx="12" cy="12" r="10" fill="none" stroke="currentColor" stroke-width="2"/><circle cx="12" cy="12" r="2"/><line x1="12" y1="2" x2="12" y2="6"/><line x1="12" y1="18" x2="12" y2="22"/><line x1="4.93" y1="4.93" x2="7.76" y2="7.76"/><line x1="16.24" y1="16.24" x2="19.07" y2="19.07"/><line x1="2" y1="12" x2="6" y2="12"/><line x1="18" y1="12" x2="22" y2="12"/><line x1="4.93" y1="19.07" x2="7.76" y2="16.24"/><line x1="16.24" y1="7.76" x2="19.07" y2="4.93"/></svg>') center/contain no-repeat;
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.planning-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.step-item {
    text-align: center;
    max-width: 250px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-medium);
}

.step-content h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--secondary-color);
    line-height: 1.5;
}

.step-connector {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 20px;
    position: relative;
    top: -40px;
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(153, 153, 255, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.benefit-card:hover::before {
    animation: shimmer 0.6s ease-in-out;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.asymmetric-1 {
    border-radius: 30px 10px 30px 10px;
}

.asymmetric-2 {
    border-radius: 10px 30px 10px 30px;
}

.asymmetric-3 {
    border-radius: 25px 25px 10px 25px;
}

.asymmetric-4 {
    border-radius: 10px 25px 25px 25px;
}

.benefit-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 125, 179, 0.8), rgba(153, 153, 255, 0.6));
    z-index: 2;
}

.cta-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 600px;
    padding: 0 20px;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-cta {
    background: var(--accent-color);
    color: var(--gray-dark);
    padding: 18px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--shadow-medium);
}

.btn-cta:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Page-specific styles */

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: underline;
}

.breadcrumb span {
    color: #007bff;
}

.page-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-align: center;
}

.page-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    text-align: center;
}

/* Story Section */
.story-section {
    padding: var(--section-padding);
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    order: 1;
}

.story-image {
    order: 2;
    position: relative;
}

.lead-paragraph {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.5;
}

.story-paragraphs p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: transform 0.3s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: -10px;
    left: 20px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Timeline Section */
.timeline-section {
    padding: var(--section-padding);
    background: var(--gray-light);
    position: relative;
}

.wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    margin: 0 30px;
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.timeline-content h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.member-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    display: none!important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 15px;
}

.member-social a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.2);
}

.member-info {
    padding: 30px;
}

.member-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
}

.member-info p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.credential {
    background: var(--accent-color);
    color: var(--gray-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: var(--section-padding);
    background: var(--gray-light);
    position: relative;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape-1 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 130px solid var(--secondary-color);
    opacity: 0.1;
    bottom: 20%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card,
.vision-card,
.values-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before,
.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: left 0.3s ease;
}

.mission-card:hover::before,
.vision-card:hover::before,
.values-card:hover::before {
    left: 0;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: var(--secondary-color);
    line-height: 1.7;
}

.values-card ul {
    list-style: none;
    text-align: left;
}

.values-card li {
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.6;
}

.values-card strong {
    color: var(--primary-color);
}

/* Achievements Section */
.achievements-section {
    padding: var(--section-padding);
    background: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.achievement-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--light-color), var(--white));
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.achievement-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.achievement-text h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 10px;
}

.achievement-text p {
    color: var(--secondary-color);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text {
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 40px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
    
    .timeline-year {
        margin: 0 0 20px -40px;
    }
    
    .timeline-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
.float-wheel {
    background: var(--accent-color);
    border-radius: 50%;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-answer {
    background: var(--light-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 20px 30px;
}

.faq-answer p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

/* Responsive styles for services page */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 60px auto 0;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-info {
        order: 2;
    }
    
    .booking-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        margin: 0 10px;
    }
    
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .extras-checkboxes {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .comparison-table-container {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-item.open .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 20px;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .booking-form-container {
        padding: 20px;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .highlight-icon {
        margin-right: 0;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
        font-size: 0.7rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        font-size: 1.2rem;
    }
}
}
/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid .service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.services-grid .service-card:nth-child(1) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.3s; }

.extras-grid .extra-item {
    animation: fadeInUp 0.6s ease forwards;
}

.extras-grid .extra-item:nth-child(1) { animation-delay: 0.1s; }
.extras-grid .extra-item:nth-child(2) { animation-delay: 0.2s; }
.extras-grid .extra-item:nth-child(3) { animation-delay: 0.3s; }
.extras-grid .extra-item:nth-child(4) { animation-delay: 0.4s; }
.extras-grid .extra-item:nth-child(5) { animation-delay: 0.5s; }
/* Contact Page Styles */

.contact-info-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: left 0.3s ease;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--accent-dark);
    font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info {
    order: 1;
}

.contact-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.feature-text p {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form-container {
    order: 2;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Map Section */
.map-section {
    padding: var(--section-padding);
    background: var(--white);
}

.map-container {
    position: relative;
    margin-top: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    max-width: 250px;
}

.map-info h4 {
    font-family: var(--font-primary);
    color: var(--gray-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.map-info p {
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.btn-directions {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-directions:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Contact FAQ Section */
.contact-faq-section {
    padding: var(--section-padding);
    background: var(--light-color);
    position: relative;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circle-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.wave-shape {
    position: absolute;
    width: 200px;
    height: 100px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50% 50% 0 0;
    bottom: 20%;
    left: 15%;
    animation: float 6s ease-in-out infinite reverse;
}

/* Emergency Contact Section */
.emergency-contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.emergency-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.emergency-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.emergency-contacts {
    display: flex;
    gap: 20px;
}

.emergency-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.emergency-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.emergency-btn.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
}

.btn-icon {
    font-size: 1.2rem;
}

.emergency-image {
    text-align: right;
}

.emergency-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
}

/* Responsive styles for contact page */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
    
    .emergency-info {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .emergency-image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        margin-right: 0;
    }
    
    .map-overlay {
        position: static;
        margin: 20px;
        max-width: none;
    }
    
    .emergency-contacts {
        flex-direction: column;
        align-items: center;
    }
    
    .emergency-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .emergency-content h3 {
        font-size: 1.5rem;
    }
    
    .emergency-content p {
        font-size: 1rem;
    }
    
.legal-text p {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 8px;
    color: var(--gray-dark);
}

.legal-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: var(--secondary-color);
}

/* Special Sections */
.company-info {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--primary-color);
}

.company-info h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.company-info ul {
    margin-bottom: 0;
}

.definition-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.price-table td:first-child {
    background: var(--light-color);
    font-weight: 600;
}

.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
}

.cancellation-policy {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
}

.cancellation-policy h4 {
    color: #856404;
    margin-top: 0;
}

.cancellation-policy ul li {
    color: #856404;
    font-weight: 500;
}

.legal-basis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.legal-basis > div {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
}

.legal-basis h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.legal-basis p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.providers-list {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.retention-table th,
.retention-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.retention-table th {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.retention-table tr:nth-child(even) {
    background: var(--gray-light);
}

.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.right-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.right-item h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.right-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.cookies-summary {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
}

.transfers-info {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 20px 0;
}

.contact-legal,
.dpo-contact,
.aepd-contact {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 15px 0;
    border-left: 4px solid var(--primary-color);
}

.legal-notice {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--secondary-color);
}

.legal-notice em {
    font-size: 0.9rem;
}

/* Responsive Legal Pages */
@media (max-width: 1024px) {
    .legal-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .legal-toc {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .legal-toc {
        position: static;
        order: 2;
        margin-top: 30px;
    }
    
    .legal-text {
        order: 1;
    }
    
    .legal-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
    
    .legal-text h3 {
        font-size: 1.2rem;
    }
    
    .rights-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .legal-basis {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .retention-table {
        font-size: 0.8rem;
    }
    
    .retention-table th,
    .retention-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-text section {
        margin-bottom: 35px;
    }
    
    .company-info,
    .legal-notice,
    .contact-legal,
    .dpo-contact,
    .aepd-contact {
        padding: 15px;
    }
    
    .right-item {
        padding: 20px;
    }
    
    .legal-toc {
        padding: 15px;
    }
}
}


.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}