/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

.logo-section {
    background: white;
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo img {
    height: 90px;
    width: auto;
}

.navbar {
    background-color: rgb(244, 201, 0);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: nowrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 30px 0;
    min-height: 70vh;
    position: relative;
}

.hero-content.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-arrow {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.carousel-arrow.prev {
    margin-left: 20px;
}

.carousel-arrow.next {
    margin-right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Features Section */
.features {
    padding: 40px 0;
    background-color: #fff;
}

.features-title {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 60px;
    font-style: italic;
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-item h3 {
    color: #c12a57;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 20px 0;
    background-color: #ffffff;
}

.testimonials-title {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 60px;
    font-style: italic;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
    width: fit-content;
}

.testimonials-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.nav-arrow {
    background: rgba(244, 201, 0, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-arrow:hover {
    background: rgb(244, 201, 0);
    transform: scale(1.1);
}

.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-arrow:disabled:hover {
    background: rgba(244, 201, 0, 0.9);
    transform: none;
}

.testimonial-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    flex-shrink: 0;
    width: 350px; /* Fixed width for consistent sliding */
    box-sizing: border-box;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6c5ce7;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-rating {
    color: rgb(244, 201, 0);
    margin-bottom: 10px;
}

.testimonial-content h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonial-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer */
.footer {
    background-color: rgb(244, 201, 0);
    padding: 60px 0 20px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

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

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    color: inherit;
    text-decoration: none;
}

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

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

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}


.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgb(244, 201, 0);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Conocenos Page Styles */
.conocenos-section-1,
.conocenos-section-2,
.conocenos-section-3 {
    padding: 20px 0;
}

.conocenos-section-2 {
    background-color: #ffffff;
}

.conocenos-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.conocenos-content.reverse {
    flex-direction: row-reverse;
}

.conocenos-text {
    flex: 1;
    text-align: justify;
}

.conocenos-text h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.conocenos-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.conocenos-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.conocenos-image {
    flex: 1;
}

.conocenos-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.conocenos-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.conocenos-cta-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    font-weight: 600;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.2;
}

/* Booking Page Styles */
.booking-hero {
    padding: 40px 0 20px;
    text-align: center;
}

.booking-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.booking-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner {
    text-align: center;
    margin-top: 40px;
}

.hero-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.booking-options {
    padding: 20px 0;
}

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

.booking-option {
    text-align: center;
    padding: 40px 30px 60px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.booking-option:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* CTA Section Styles */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Dancing Script', cursive;
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.feature {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-text {
    color: #2c3e50;
    font-weight: 500;
}

/* Enhanced Booking Options */
.booking-options h2 {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.booking-options > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.click-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(244, 201, 0, 0.9);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-option:hover .click-indicator {
    opacity: 1;
}

/* Bottom CTA Section */
.bottom-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(244, 201, 0) 0%, #e6b03d 100%);
    color: white;
}

.bottom-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-cta-content h2 {
    font-family: 'Dancing Script', cursive;
    color: white;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.cta-button {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 160px;
    text-align: center;
}

.cta-button.primary {
    background: white;
    color: rgb(244, 201, 0);
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: invert(65%) sepia(70%) saturate(700%) hue-rotate(4deg) brightness(115%);
}

.booking-option h3 {
    color: black;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.booking-option p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Honeymoon Page Styles */
.honeymoon-hero {
    padding: 40px 0 40px;
    text-align: center;
}

.honeymoon-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.honeymoon-hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: rgb(244, 201, 0);
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e6b03d;
    transform: translateY(-2px);
}

.honeymoon-banner {
    text-align: center;
    margin-top: 40px;
}

.honeymoon-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.process-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    background: white;
}

.step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-number img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.step h3 {
    color: rgb(244, 201, 0);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

.honeymoon-testimonial {
    padding: 80px 0;
}

.testimonial-subtitle {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.heart-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-card h4 {
    color: rgb(244, 201, 0);
    font-style: italic;
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-text {
    flex: 1;
    text-align: justify;
}

.contact-text h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    justify-content: space-between;
}

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

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgb(244, 201, 0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-link:hover {
    color: inherit;
    text-decoration: none;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Grandes Viajes Page Styles */
.grandes-viajes-hero {
    padding: 40px 0 40px;
    text-align: center;
}

.grandes-viajes-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.grandes-viajes-hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.grandes-viajes-banner {
    text-align: center;
    margin-top: 40px;
}

.grandes-viajes-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.destinations-section {
    padding: 10px 0;
}

.destinations-section h2 {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
}

.destination-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    background-color: rgb(244, 201, 0);
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

/* Viajes Organizados Page Styles */
.viajes-organizados-hero {
    padding: 40px 0;
    text-align: center;
}

.viajes-organizados-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.viajes-organizados-hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.available-trips {
    padding: 40px 0;
    background-color: #f8f9fa;
}

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

.trip-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.trip-card:hover {
    transform: translateY(-5px);
}

.trip-image-container {
    position: relative;
}

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

.trip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.trip-overlay .hover-text {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    background: rgba(244, 201, 0, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    align-self: center;
    transition: all 0.4s ease;
}

.trip-card:hover .hover-text {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.trip-dates-overlay {
    color: white;
    font-size: 0.9rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.trip-dates-overlay .date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.trip-dates-overlay .date-item:last-child {
    margin-bottom: 0;
}

.trip-dates-overlay strong {
    color: rgb(244, 201, 0);
    font-weight: 600;
}

.trip-title-overlay {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 10px 0;
}


/* Excursiones Page Styles */
.excursiones-hero {
    padding: 40px 0 40px;
    text-align: center;
}

.excursiones-hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.excursiones-hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto 40px;
    gap: 15px;
}

.search-input {
    padding: 15px 20px;
    border: 2px solid rgb(244, 201, 0);
    border-radius: 25px;
    outline: none;
    font-size: 1rem;
    background: white;
}

.search-button {
    background-color: rgb(244, 201, 0);
    color: #333;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: #e6b03d;
    transform: translateY(-2px);
}

.excursiones-banner {
    text-align: center;
    margin-top: 40px;
}

.excursiones-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: rgb(244, 201, 0);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 15px;
    }
    
    .nav-menu .nav-link {
        color: white;
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .conocenos-content,
    .contact-content {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .conocenos-text h1 {
        font-size: 2.2rem;
    }
    
    .conocenos-text h2 {
        font-size: 1.8rem;
    }
    
    .conocenos-text p {
        font-size: 1.1rem;
    }
    
    .conocenos-cta-title {
        font-size: 2.2rem;
    }

    .testimonial-item {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .testimonials-grid {
        gap: 30px;
    }

    .testimonials-navigation {
        display: none;
    }

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .features-grid,
    .booking-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .destinations-grid,
    .trips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }

    .hero-banner img,
    .honeymoon-banner img,
    .grandes-viajes-banner img,
    .excursiones-banner img {
        width: 100%;
        height: 300px;
        border-radius: 10px;
    }

  .trip-detail-layout {
    flex-direction: column;
  }

  .trip-carousel-sidebar {
    flex: none;
    width: 100%;
  }

  .image-carousel.small {
    height: 300px;
    width: 200px;
  }

  .trip-content-main .trip-detail-header {
    text-align: center;
  }

  .trip-content-main .trip-meta {
    justify-content: center;
  }

  .meta-item {
    align-items: center;
  }

  .image-carousel {
    height: 40vh;
  }

    .trip-detail-header h1 {
      font-size: 2rem;
    }

    .trip-meta {
      gap: 15px;
    }

    .meta-item {
      min-width: 100px;
      padding: 10px 15px;
    }
}

/* Trip Detail Styles */
.image-carousel {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: white;
}

.trip-detail-content {
  padding: 60px 0;
  background: white;
}

.trip-detail-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.trip-carousel-sidebar {
  flex: 0 0 350px;
}

.image-carousel.small {
  height: 400px;
  width: 600px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trip-content-main {
  flex: 1;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.trip-content-main .trip-detail-header {
  text-align: left;
  margin-bottom: 40px;
}

.trip-content-main .trip-detail-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.trip-content-main .trip-meta {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}


.meta-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  min-width: 120px;
}

.meta-item strong {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.meta-item span {
  color: #2c3e50;
  font-weight: 600;
}

.trip-description {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.description-content {
  font-size: 1.1rem;
}

.description-content h1,
.description-content h2,
.description-content h3 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 15px;
}

.description-content ul {
  padding-left: 20px;
}

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

.trip-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.cta-button.big {
  padding: 15px 40px;
  font-size: 1.2rem;
}

.back-link {
  color: #7f8c8d;
  text-decoration: none;
  font-weight: 500;
}

.back-link:hover {
  color: #e74c3c;
}

/* Reservation Pages Styles */
.reservation-section {
    padding: 80px 0;
}

.reservation-section h1 {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.reservation-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Social Media Sidebar */
.social-media-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:nth-child(1) {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon:nth-child(2) {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:nth-child(3) {
  background: linear-gradient(135deg, #4267B2 0%, #365899 100%);
}

.social-icon i {
  transition: transform 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.2);
}

/* Responsive adjustments for social media sidebar */
@media (max-width: 768px) {
  .social-media-sidebar {
    left: 10px;
    gap: 10px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
    font-size: 22px;
  }
}

/* Policy Pages Styles */
.policy-content {
  padding: 20px 0;
  background: #f8f9fa;
  min-height: 70vh;
}

.policy-header {
  text-align: center;
  margin-bottom: 40px;
}

.policy-header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.policy-body {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6 {
  color: #333;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.policy-content h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  margin-top: 0;
}

.policy-content h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  border-bottom: 2px solid #f4c900;
  padding-bottom: 10px;
}

.policy-content h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
}

.policy-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

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

.policy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #555;
}

.policy-content strong {
  font-weight: 600;
  color: #333;
}

.policy-content a {
  color: #f4c900;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-content a:hover {
  color: #e6b800;
  text-decoration: underline;
}

/* Responsive for policy pages */
@media (max-width: 768px) {
  .policy-content {
    padding: 60px 0;
  }

  .policy-body {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .policy-header h1 {
    font-size: 2rem;
  }

  .policy-content h2 {
    font-size: 1.3rem;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 480px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  z-index: 9999;
  transform: translateX(120%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

@keyframes slideIn {
  0% {
    transform: translateX(120%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner-text h4 {
  color: rgb(244, 201, 0);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: -0.025em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner-text p {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  min-width: 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.cookie-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;
}

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

.cookie-accept {
  background: linear-gradient(135deg, rgb(244, 201, 0) 0%, rgb(214, 171, 0) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(244, 201, 0, 0.3);
}

.cookie-accept:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(244, 201, 0, 0.4);
}

.cookie-configure {
  background: linear-gradient(135deg, rgba(244, 201, 0, 0.1) 0%, rgba(214, 171, 0, 0.1) 100%);
  color: rgb(244, 201, 0);
  border: 1px solid rgba(244, 201, 0, 0.3);
  backdrop-filter: blur(10px);
}

.cookie-configure:hover {
  background: linear-gradient(135deg, rgba(244, 201, 0, 0.15) 0%, rgba(214, 171, 0, 0.15) 100%);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(244, 201, 0, 0.5);
}

.cookie-reject {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(73, 80, 87, 0.1) 100%);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.2);
  backdrop-filter: blur(10px);
}

.cookie-reject:hover {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.15) 0%, rgba(73, 80, 87, 0.15) 100%);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(108, 117, 125, 0.3);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    transform: translateY(120%);
  }

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

  @keyframes slideIn {
    0% {
      transform: translateY(120%);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideOut {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(120%);
      opacity: 0;
    }
  }

  .cookie-banner-content {
    gap: 16px;
  }

  .cookie-banner-buttons {
    justify-content: center;
    gap: 8px;
  }

  .cookie-btn {
    min-width: 100px;
    padding: 10px 20px;
    font-size: 0.7rem;
  }

  .cookie-banner-text h4 {
    font-size: 1rem;
  }

  .cookie-banner-text p {
    font-size: 0.8rem;
  }
}

/* Cookie Configuration Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 10px 25px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: modalSlideIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

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

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-modal-header h3 {
  color: rgb(244, 201, 0);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.025em;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  line-height: 1;
}

.cookie-modal-close:hover {
  background: rgba(108, 117, 125, 0.1);
  color: #495057;
  transform: scale(1.1);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-modal-body > p {
  color: #374151;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

.cookie-option {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(248, 250, 252, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-option:last-child {
  margin-bottom: 0;
}

.cookie-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.3) 0%, rgba(73, 80, 87, 0.3) 100%);
  border-radius: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-toggle label:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + label {
  background: linear-gradient(135deg, rgb(244, 201, 0) 0%, rgb(214, 171, 0) 100%);
}

.cookie-toggle input:checked + label:before {
  transform: translateX(26px);
  box-shadow: 0 2px 8px rgba(244, 201, 0, 0.3);
}

.cookie-toggle input:disabled + label {
  background: linear-gradient(135deg, rgba(244, 201, 0, 0.3) 0%, rgba(214, 171, 0, 0.3) 100%);
  cursor: not-allowed;
}

.cookie-option h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.cookie-option p {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
  margin-left: 62px;
}

.cookie-modal-footer {
  padding: 16px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-modal-btn {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  min-width: 140px;
  text-align: center;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.cookie-modal-save {
  background: linear-gradient(135deg, rgb(244, 201, 0) 0%, rgb(214, 171, 0) 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(244, 201, 0, 0.3);
}

.cookie-modal-save:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(244, 201, 0, 0.4);
}

.cookie-modal-cancel {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.1) 0%, rgba(73, 80, 87, 0.1) 100%);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.2);
  backdrop-filter: blur(10px);
}

.cookie-modal-cancel:hover {
  background: linear-gradient(135deg, rgba(108, 117, 125, 0.15) 0%, rgba(73, 80, 87, 0.15) 100%);
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(108, 117, 125, 0.3);
}

/* Modal Mobile Responsive */
@media (max-width: 640px) {
  .cookie-modal-content {
    width: 95%;
    margin: 20px;
    max-height: 90vh;
  }

  .cookie-modal-header {
    padding: 20px 20px 12px;
  }

  .cookie-modal-body {
    padding: 20px;
  }

  .cookie-modal-footer {
    padding: 12px 20px 20px;
    flex-direction: column;
  }

  .cookie-modal-btn {
    width: 100%;
    min-width: auto;
  }

  .cookie-option p {
    margin-left: 0;
    margin-top: 8px;
  }
}
