/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.legal-content {
    background: white;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    line-height: 1.8;
}

.legal-content h1 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 2.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
}

.legal-content h2 {
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    position: relative;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.legal-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-content p {
    margin-bottom: 15px;
    text-align: justify;
}

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

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

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 40px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.signature {
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.legal-seal {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.page-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(212, 175, 55, 0.8) 100%);
    z-index: -1;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: white;
}

/* Contact Page Specific Styles */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
}

.contact-header h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--bg-light);
}

.contact-icon {
    flex: 0 0 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h5 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-social {
    margin-top: 30px;
    text-align: center;
}

.contact-social h5 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.quick-contact-card {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.quick-contact-card h4 {
    margin-bottom: 15px;
}

.quick-contact-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-block {
    width: 100%;
}

/* Map Styles */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.map-container iframe {
    filter: grayscale(20%);
    transition: var(--transition);
}

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

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

.map-info h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* FAQ Styles */
.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: white;
    color: var(--text-dark);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    border-radius: var(--border-radius) !important;
    box-shadow: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c757d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 25px;
    background: white;
    color: var(--text-dark);
    line-height: 1.7;
}

/* About Page Specific Styles */
.our-story-section {
    background: white;
    padding: 100px 0;
}

.story-content {
    padding: 40px 0;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.story-image img {
    transition: var(--transition);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.story-stats {
    margin-top: 40px;
}

.story-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.story-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.story-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.story-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
}

.mission-points i,
.vision-points i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Values Section */
.values-section {
    background: white;
    padding: 100px 0;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

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

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.team-overlay .social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-overlay .social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.team-content {
    padding: 30px;
}

.team-content h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-expertise {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.expertise-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

/* Timeline Section */
.timeline-section {
    background: white;
    padding: 100px 0;
}

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

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    z-index: 1;
}

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

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

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

.timeline-date {
    flex: 0 0 120px;
    background: var(--gradient-primary);
    color: white;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    margin: 0 40px;
    position: relative;
    border: 2px solid var(--bg-light);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 12px 0;
    border-color: transparent white transparent transparent;
}

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

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

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

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

/* Legal Page Tables */
.refund-table table,
.cookie-table table {
    margin: 20px 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.refund-table th,
.cookie-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px;
}

.refund-table td,
.cookie-table td {
    padding: 12px 15px;
    border-color: #eee;
    vertical-align: middle;
}

.refund-table tr:hover,
.cookie-table tr:hover {
    background: var(--bg-light);
}

/* Info Boxes */
.company-info-box,
.contact-info-box,
.legal-contact-box,
.important-notice {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 5px solid var(--primary-color);
}

.important-notice {
    background: rgba(231, 76, 60, 0.1);
    border-left-color: var(--accent-color);
}

.important-notice h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Cookie Settings Panel */
.cookie-consent-panel {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    margin: 30px 0;
    border: 2px solid var(--primary-color);
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.cookie-description {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cookie-settings {
    text-align: center;
    margin: 30px 0;
}

    /* Responsive Design for Legal Pages */
@media (max-width: 992px) {
    .legal-content {
        padding: 40px;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-date {
        flex: none;
        margin-bottom: 20px;
        margin-left: 0;
    }
    
    .timeline-content {
        margin: 0 0 0 60px;
        width: calc(100% - 60px);
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -12px;
        border-width: 12px 12px 12px 0;
        border-color: transparent white transparent transparent;
    }
    
    .contact-info {
        position: static;
        margin-top: 40px;
    }
    
    .map-overlay {
        position: static;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h2::before {
        display: none;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .story-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .mission-card,
    .vision-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .team-image {
        height: 250px;
    }
    
    .team-content {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-category {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 20px;
    }
    
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .page-hero .hero-title {
        font-size: 1.8rem;
    }
    
    .refund-table,
    .cookie-table {
        overflow-x: auto;
    }
    
    .refund-table table,
    .cookie-table table {
        min-width: 600px;
    }
    
    .company-info-box,
    .contact-info-box,
    .legal-contact-box,
    .important-notice {
        padding: 20px;
    }
    
    .timeline-content {
        margin-left: 40px;
        width: calc(100% - 40px);
    }
    
    .timeline-date {
        font-size: 1rem;
        padding: 10px;
        flex: 0 0 100px;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 14px;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .story-stats .row {
        flex-direction: column;
    }
    
    .value-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .team-card {
        margin-bottom: 30px;
    }
    
    .timeline-container::before {
        left: 20px;
    }
}

/* Print Styles for Legal Pages */
@media print {
    .legal-page {
        padding: 0;
        background: white;
    }
    
    .legal-content {
        box-shadow: none;
        padding: 20px;
    }
    
    .legal-content h1,
    .legal-content h2,
    .legal-content h3 {
        color: black !important;
        page-break-after: avoid;
    }
    
    .legal-content h2::before {
        display: none;
    }
    
    .signature {
        page-break-inside: avoid;
        border: 1px solid black;
    }
    
    .company-info-box,
    .contact-info-box,
    .legal-contact-box,
    .important-notice {
        border: 1px solid #ccc;
        background: #f9f9f9 !important;
    }
    
    .refund-table table,
    .cookie-table table {
        border: 1px solid black;
    }
    
    .refund-table th,
    .cookie-table th {
        background: #f0f0f0 !important;
        color: black !important;
    }
}/* Custom Properties */
:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f1c40f 50%, #e67e22 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(231, 76, 60, 0.9) 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="10" cy="10" r="3" fill="%23d4af37"/></svg>'), auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Buttons */
.btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    padding: 12px 30px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: white;
}

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

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    color: white;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

/* Button Microanimations */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: white;
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-text i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

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

.btn-cookie-config {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-config:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn-cookie-accept {
    background: var(--gradient-primary);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Navigation */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.custom-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 500px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

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

/* Section Styles */
.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

/* Spain Map Section */
.spain-map-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.spain-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23d4af37" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.interactive-map {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.spain-svg {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    padding: 20px;
}

.destination-point {
    fill: var(--primary-color);
    stroke: white;
    stroke-width: 3;
    cursor: pointer;
    transition: var(--transition);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.destination-point:hover {
    fill: var(--accent-color);
    r: 12;
    filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
}

.destination-info {
    margin-top: 30px;
    min-height: 200px;
}

.destination-card {
    display: none;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.destination-card.active {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h4 {
    font-size: 1.5rem;
    margin: 20px 20px 10px;
    color: var(--text-dark);
}

.destination-card p {
    margin: 0 20px;
    color: var(--text-light);
}

.destination-price {
    margin: 20px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Day in Life Section */
.day-life-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

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

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 60%;
    animation-delay: 4s;
}

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

.timeline {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

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

.timeline-time {
    flex: 0 0 100px;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px;
    margin-right: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-content img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.timeline-content img:hover {
    transform: scale(1.05);
}

.timeline-content h4 {
    color: white;
    margin-bottom: 15px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Featured Service Section */
.featured-service-section {
    background: white;
    position: relative;
}

.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.service-image-container img {
    transition: var(--transition);
}

.service-image-container:hover img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
}

.service-content {
    padding: 40px 0;
}

.service-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 20px;
}

.service-pricing {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.price-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-note i {
    color: var(--primary-color);
}

.service-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Reviews Section */
.reviews-section {
    background: var(--bg-light);
    padding: 100px 0;
}

.reviewsSwiper {
    padding: 40px 0 60px;
}

.review-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}

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

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary-color);
}

.reviewer-info h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.reviewer-info p {
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-content p {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.review-date,
.review-trip {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-trip {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-strong);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Seasonal Events Section */
.seasonal-events-section {
    background: white;
    padding: 100px 0;
}

.seasonal-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.season-tab {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.season-tab:hover,
.season-tab.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.season-tab i {
    font-size: 1.2rem;
}

.seasonal-content {
    position: relative;
    min-height: 400px;
}

.season-events {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.season-events.active {
    display: block;
}

.event-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

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

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-info {
    padding: 25px;
}

.event-info h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.event-location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.event-date {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hidden Places Section */
.hidden-places-section {
    background: var(--bg-dark);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hidden-places-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="radial"><stop offset="0%" stop-color="%23d4af37" stop-opacity="0.1"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="50" cy="50" r="50" fill="url(%23radial)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.hidden-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.place-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.place-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 400px;
}

.place-item.medium {
    height: 250px;
}

.place-item.small {
    height: 180px;
}

.place-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.place-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(212, 175, 55, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.place-item:hover .place-overlay {
    opacity: 1;
}

.place-content h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.place-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.place-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveBackground 20s linear infinite;
    z-index: 0;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

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

.newsletter-form {
    max-width: 500px;
    margin: 0 auto 20px;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    border-radius: 0;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.newsletter-form .btn {
    border-radius: 0;
    padding: 15px 30px;
    background: var(--secondary-color);
    border: none;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: var(--text-dark);
    transform: none;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.newsletter-note a {
    color: white;
    text-decoration: underline;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-links h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact h5 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 15px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Booking Modal */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-strong);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border-bottom: none;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 40px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 16px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.budget-display {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    border: 2px solid #eee;
}

.budget-display strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.booking-terms {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.booking-terms a {
    color: var(--primary-color);
    text-decoration: none;
}

.booking-terms a:hover {
    text-decoration: underline;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 20px 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hidden-places-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .place-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-time {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .service-actions {
        justify-content: center;
    }
    
    .seasonal-tabs {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .service-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .service-content h3 {
        font-size: 2rem;
    }
    
    .service-pricing {
        text-align: center;
    }
    
    .price-container {
        justify-content: center;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        min-width: auto;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-content .row {
        flex-direction: column;
    }
    
    .timeline-content .col-md-6 {
        margin-bottom: 20px;
    }
    
    .service-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .seasonal-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .season-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hidden-places-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-form .form-control,
    .newsletter-form .btn {
        border-radius: 15px !important;
        margin-bottom: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.slide-up {
    animation: slideUp 1s ease-out;
}

.zoom-in {
    animation: zoomIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Cursor Effects */
.btn, .destination-point, .place-item, .season-tab {
    cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><circle cx="12" cy="12" r="5" fill="%23d4af37"/><circle cx="12" cy="12" r="3" fill="white"/></svg>'), pointer;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-section,
    .cookie-banner,
    .modal,
    .floating-shape {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
    }
    
    .section-title {
        font-size: 18pt;
        margin-bottom: 10pt;
    }
    
    .page-break {
        page-break-before: always;
    }
}



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

html{
    overflow-x: hidden;
}