/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Travel Agency Colors */
    --primary-travel: #1e3a8a;      /* Deep travel blue */
    --secondary-luxury: #92400e;     /* Luxury gold-brown */
    --accent-adventure: #059669;     /* Adventure green */
    --accent-magic: #7c3aed;        /* Disney magic purple */
    --neutral-elegant: #64748b;     /* Sophisticated gray */
    
    /* Legacy colors for compatibility */
    --primary-color: #1e3a8a;
    --secondary-color: #1e40af;
    --accent-color: #93c5fd;
    
    /* Text and backgrounds */
    --text-primary: #1e293b;        /* Rich text */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --cream: #f8fafc;
    --background-light: #f8fafc;    /* Clean background */
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #059669 100%);
    --gradient-luxury: linear-gradient(135deg, #92400e 0%, #d97706 100%);
    --gradient-magic: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --gradient-adventure: linear-gradient(135deg, #059669 0%, #10b981 100%);
    
    /* Effects */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-luxury: 0 20px 50px rgba(146, 64, 14, 0.15);
    --shadow-magic: 0 15px 40px rgba(124, 58, 237, 0.2);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    font-weight: 500;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(1rem, 2.2vw, 3rem);
    align-items: center;
    flex-wrap: nowrap;
}

/* Improve spacing and prevent overlap for nav links */
.nav-link {
    padding: 0.25rem 0.5rem;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .nav-link {
        white-space: normal; /* allow wrapping on tablet if needed */
    }
}

/* Mid-range adjustment to prevent crowding */
@media (min-width: 901px) and (max-width: 1200px) {
    .nav-menu { gap: clamp(0.75rem, 1.5vw, 2rem); }
    .nav-link { font-size: 0.95rem; padding: 0.2rem 0.4rem; }
}

/* High-res laptop tweak */
@media (min-width: 1201px) and (max-width: 1366px) {
    .nav-menu { gap: clamp(1rem, 1.8vw, 2.5rem); }
    .nav-link { font-size: 1rem; }
}

/* WQHD screens tweak */
@media (min-width: 1367px) and (max-width: 1536px) {
    .nav-menu { gap: clamp(1.25rem, 2vw, 3rem); }
    .nav-link { font-size: 1.05rem; }
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Navigation */
.dropdown {
    position: relative;
}

/* Dropdown extras */
.dropdown-separator {
    height: 1px;
    margin: 0.5rem 1rem;
    background: rgba(0,0,0,0.08);
    list-style: none;
}
 .dropdown-heading {
    padding: 0.5rem 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.dropdown-heading i {
    margin-right: 0.5rem;
    color: var(--neutral-elegant);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 1rem 0;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-link:hover {
    background: var(--cream);
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--cream) 0%, #f5f3f0 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23c9a876" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    position: relative;
}

.hero-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-button.primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-photo {
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: fadeInRight 1s ease 0.6s both;
    transition: var(--transition);
    border: 3px solid var(--white);
}

.hero-photo:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.hero-placeholder {
    width: 400px;
    height: 500px;
    background: var(--gradient);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
    animation: fadeInRight 1s ease 0.6s both;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--cream);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.breadcrumbs .container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--text-light);
}
.breadcrumbs a {
    color: var(--text-dark);
    text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs .sep { color: var(--neutral-elegant); }

/* Corporate Travel Section */
.corporate-travel {
    background: var(--white);
    position: relative;
}

.corporate-travel .section-header .section-title {
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-travel .service-card.featured {
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(146, 64, 14, 0.2);
}

.corporate-travel .destination-placeholder {
    background: var(--gradient-adventure);
}

.corporate-travel .cta-buttons .cta-button.primary {
    background: var(--gradient-luxury);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--cream);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Destinations Section */
.destinations {
    background: var(--cream);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    height: 250px;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.destination-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-photo:hover {
    transform: scale(1.05);
}

.destination-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 3rem;
}

.destination-placeholder span {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 500;
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.credentials {
    background: var(--cream);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.credentials h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.credentials li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.social-links h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-photo {
    width: 350px;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-placeholder {
    width: 300px;
    height: 400px;
    background: var(--cream);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact {
    background: var(--cream);
}

/* RFP Fields */
.rfp-fields {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
}
.rfp-fields.visible { display: block; }
.rfp-fields h4 {
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.rfp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 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);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 4rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-photo {
        width: 320px;
        height: 400px;
    }

    .hero-placeholder {
        width: 300px;
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .hero-photo {
        width: 380px;
        height: 480px;
    }

    .about-photo {
        width: 320px;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero-photo {
        width: 280px;
        height: 350px;
    }

    .hero-placeholder {
        width: 250px;
        height: 300px;
    }

    .about-photo {
        width: 280px;
        max-height: 350px;
    }

    .about-placeholder {
        width: 250px;
        height: 300px;
    }

    .service-card {
        padding: 2rem 1rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Destination Tabs */
.destination-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-button.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Destinations Layout */
.destinations-by-region {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.region-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.region-card h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.destination-info {
    margin-bottom: 1.5rem;
}

.destination-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.destination-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.destination-highlights {
    background: var(--cream);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.destination-highlights h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.destination-highlights p {
    font-size: 0.9rem;
    margin: 0;
}

/* Hyatt Inclusive Collection */
.inclusive-collection {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.inclusive-collection .section-header {
    margin-bottom: 5rem;
}

.inclusive-collection .section-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Resort Brands */
.resort-brands {
    margin-bottom: 4rem;
}

.brand-category {
    margin-bottom: 4rem;
}

.brand-category h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.brand-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.brand-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.brand-card .brand-tagline {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.brand-features {
    list-style: none;
    margin-top: 1.5rem;
}

.brand-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.brand-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Wedding Packages */
.wedding-packages {
    margin-top: 4rem;
}

.package-category {
    margin-bottom: 4rem;
}

.package-category h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
}

.package-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.package-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.package-card .package-guest-count {
    background: var(--cream);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.package-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Specialty Sections */
.specialty-romance {
    background: linear-gradient(135deg, #fef7f7 0%, #f1f5f9 100%);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.specialty-romance h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.romance-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.romance-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.romance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.romance-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.romance-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .destination-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .destinations-by-region {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .romance-packages {
        grid-template-columns: 1fr;
    }

    .brand-card,
    .package-card {
        padding: 1.5rem;
    }

    .region-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .specialty-romance {
        padding: 2rem 1rem;
    }

    .brand-category h3,
    .package-category h3 {
        font-size: 1.5rem;
    }

    .inclusive-collection .section-title {
        font-size: 2rem;
    }
}

/* Destination Tabs */
.destination-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-button {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tab-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-button.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Destinations Layout */
.destinations-by-region {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.region-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.region-card h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.destination-info {
    margin-bottom: 1.5rem;
}

.destination-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.destination-info p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.destination-highlights {
    background: var(--cream);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.destination-highlights h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.destination-highlights p {
    font-size: 0.9rem;
    margin: 0;
}

/* Hyatt Inclusive Collection */
.inclusive-collection {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.inclusive-collection .section-header {
    margin-bottom: 5rem;
}

.inclusive-collection .section-title {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Resort Brands */
.resort-brands {
    margin-bottom: 4rem;
}

.brand-category {
    margin-bottom: 4rem;
}

.brand-category h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.brand-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.brand-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.brand-card .brand-tagline {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.brand-features {
    list-style: none;
    margin-top: 1.5rem;
}

.brand-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.brand-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Wedding Packages */
.wedding-packages {
    margin-top: 4rem;
}

.package-category {
    margin-bottom: 4rem;
}

.package-category h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
}

.package-category h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.package-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.package-card .package-guest-count {
    background: var(--cream);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.package-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Specialty Sections */
.specialty-romance {
    background: linear-gradient(135deg, #fef7f7 0%, #f1f5f9 100%);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.specialty-romance h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.romance-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.romance-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.romance-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.romance-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.romance-card p {
    font-size: 0.9rem;
    margin: 0;
}

/* Destination Comparison Tool */
.destination-comparison-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
}

.destination-comparison-section h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.destination-comparison-section p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.comparison-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.comparison-selector label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.comparison-selector label:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.comparison-selector label:has(input:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.destination-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.comparison-results {
    margin-top: 2rem;
}

.comparison-results.hidden {
    display: none;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.comparison-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.comparison-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.comparison-feature {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.comparison-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comparison-feature h5 {
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.comparison-feature p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.comparison-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Resort Brand Quiz */
.resort-quiz-section {
    background: var(--white);
    padding: 6rem 0;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.quiz-questions {
    margin-bottom: 2rem;
}

.quiz-question {
    margin-bottom: 2rem;
}

.quiz-question h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.quiz-option {
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.quiz-option.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
}

.quiz-option h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.quiz-option p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.quiz-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.quiz-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.quiz-btn.primary {
    background: var(--gradient);
    color: var(--white);
}

.quiz-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.quiz-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.quiz-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.progress-bar {
    background: #e5e7eb;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    background: var(--gradient);
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 20%;
}

.progress-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.quiz-results {
    text-align: center;
}

.quiz-results.hidden {
    display: none;
}

.quiz-results h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.results-content {
    margin-bottom: 3rem;
}

.result-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.result-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.result-card .match-score {
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.result-card p {
    margin-bottom: 1rem;
    text-align: left;
}

.result-features {
    list-style: none;
    text-align: left;
}

.result-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

.result-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.quiz-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Expert Consultation */
.expert-consultation {
    background: var(--white);
    padding: 6rem 0;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.expert-highlights h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.expert-features {
    list-style: none;
}

.expert-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.expert-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.consultation-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.consultation-form h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .destination-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .destinations-by-region {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .romance-packages {
        grid-template-columns: 1fr;
    }

    .consultation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-card,
    .package-card {
        padding: 1.5rem;
    }

    .region-card {
        padding: 1.5rem;
    }

    .consultation-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .specialty-romance {
        padding: 2rem 1rem;
    }

    .brand-category h3,
    .package-category h3 {
        font-size: 1.5rem;
    }

    .inclusive-collection .section-title {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================================
   NEW TRAVEL AGENCY SECTIONS STYLES
   =============================================== */

/* Featured Service Cards Enhancement */
.service-card.featured {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid var(--accent-adventure);
    transform: scale(1.02);
}

.service-card.featured .service-icon {
    background: var(--gradient-adventure);
}

/* Disney Experiences Section */
.disney-experiences {
    background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
    padding: 6rem 0;
}

.disney-experiences .section-title {
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disney-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.disney-tabs .tab-button {
    background: transparent;
    border: 2px solid var(--accent-magic);
    color: var(--accent-magic);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disney-tabs .tab-button:hover,
.disney-tabs .tab-button.active {
    background: var(--gradient-magic);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-magic);
}

.disney-tab-content {
    display: none;
}

.disney-tab-content.active {
    display: block;
}

.disney-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.disney-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.disney-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-magic);
}

.disney-card.featured {
    border: 2px solid var(--accent-magic);
}

.disney-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.disney-placeholder {
    height: 100%;
    background: var(--gradient-magic);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 3rem;
}

.disney-placeholder span {
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.disney-content {
    padding: 2rem;
}

.disney-location {
    color: var(--accent-magic);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.disney-features h4,
.disney-highlights h5 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.disney-features ul {
    list-style: none;
    padding: 0;
}

.disney-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.disney-features li::before {
    content: '🏰';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.disney-highlights {
    background: #fdf4ff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.disney-book-now {
    margin-top: 1.5rem;
    text-align: center;
}

.book-link {
    display: inline-block;
    text-decoration: none;
}

.book-button {
    background: var(--gradient-magic);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.disney-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #fdf4ff 0%, #f3e8ff 100%);
    border-radius: var(--border-radius);
}

.disney-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.disney-partner {
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.disney-partner .partner-info {
    color: var(--accent-magic);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

/* Premium Rail Section */
.premium-rail {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 6rem 0;
}

.rail-featured {
    margin-bottom: 4rem;
}

.rail-hero-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
}

.rail-image {
    background: var(--gradient);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rail-placeholder {
    color: var(--white);
    text-align: center;
    font-size: 3rem;
}

.rail-placeholder span {
    display: block;
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

.rail-content {
    padding: 3rem;
}

.rail-benefits h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.routes-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.route-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.route-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.route-header h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.route-path {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.route-highlights ul {
    list-style: none;
    padding: 0;
}

.route-highlights li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.route-highlights li::before {
    content: '🚂';
    position: absolute;
    left: 0;
}

.route-info {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.packages-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-adventure);
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-adventure);
    font-weight: bold;
}

.rail-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--border-radius);
}

/* Luxury Villas Section */
.luxury-villas {
    background: linear-gradient(135deg, #fef7f0 0%, #fed7aa 100%);
    padding: 6rem 0;
}

.villa-featured {
    margin-bottom: 4rem;
}

.partner-showcase {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-luxury);
    border: 2px solid var(--secondary-luxury);
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fef7f0;
    padding: 1rem;
    border-radius: 8px;
}

.benefit i {
    color: var(--secondary-luxury);
    font-size: 1.5rem;
    width: 30px;
}

.partner-link {
    display: inline-block;
    text-decoration: none;
}

.destinations-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.destination-highlight {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-luxury);
}

.location-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.location {
    background: var(--gradient-luxury);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.villa-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

.service-item i {
    color: var(--secondary-luxury);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Viking Cruises Section */
.viking-cruises {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    padding: 6rem 0;
}

.viking-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
}

.highlight i {
    color: var(--primary-color);
    font-size: 1.5rem;
    width: 30px;
}

.types-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.expeditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.expedition-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.expedition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.expedition-card.featured {
    border-color: var(--accent-adventure);
    transform: scale(1.02);
}

.expedition-header h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.season {
    background: var(--gradient);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.expedition-highlights {
    list-style: none;
    padding: 0;
}

.expedition-highlights li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.expedition-highlights li::before {
    content: '⚓';
    position: absolute;
    left: 0;
}

.duration {
    background: #f0f9ff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.amenity-item i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Classic Vacations Section */
.classic-vacations {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 6rem 0;
}

.classic-featured {
    margin-bottom: 4rem;
}

.classic-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.categories-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--accent-adventure);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-card.luxury {
    border-top-color: var(--secondary-luxury);
}

.category-card.adventure {
    border-top-color: var(--accent-adventure);
}

.category-card.romance {
    border-top-color: var(--accent-magic);
}

.category-card.destinations {
    border-top-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-adventure);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.category-card.luxury .category-icon {
    background: var(--gradient-luxury);
}

.category-card.romance .category-icon {
    background: var(--gradient-magic);
}

.category-card.destinations .category-icon {
    background: var(--gradient);
}

.category-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 1.5rem;
}

.category-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.category-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-adventure);
    font-weight: bold;
}

.destinations-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.destination-feature {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-adventure);
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    background: var(--gradient-adventure);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.services-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-detail {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-detail i {
    color: var(--accent-adventure);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Travel Insurance Section */
.travel-insurance {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    padding: 6rem 0;
}

.insurance-hero {
    margin-bottom: 4rem;
}

.insurance-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.insurance-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.protection-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #f59e0b;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f59e0b;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.3;
}

.insurance-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.insurance-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.insurance-placeholder span {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.coverage-title,
.plans-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.coverage-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid #f59e0b;
}

.coverage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.coverage-card.primary {
    border-top-color: #dc2626;
    transform: scale(1.02);
}

.coverage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.coverage-card.primary .coverage-icon {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.coverage-card h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.coverage-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.coverage-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.coverage-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.coverage-benefit {
    background: #fef3c7;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    color: #92400e;
    font-size: 0.9rem;
    margin: 0;
}

.plans-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plan-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid #e5e7eb;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.plan-card.premium {
    border-color: #f59e0b;
    transform: scale(1.05);
}

.plan-card.luxury {
    border-color: #7c3aed;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.plan-header h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    color: #f59e0b;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.popular-badge {
    background: #f59e0b;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.plan-features li:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.plan-best-for {
    background: #f3f4f6;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.insurance-cta {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.insurance-cta .cta-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.insurance-cta .cta-content p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.insurance-cta .cta-button.primary {
    background: var(--white);
    color: #f59e0b;
    border: none;
}

.insurance-cta .cta-button.primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.insurance-cta .cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.insurance-cta .cta-button.secondary:hover {
    background: var(--white);
    color: #f59e0b;
}

.insurance-partner {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
}

.partner-info {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

.insurance-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.insurance-benefits .benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.insurance-benefits .benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.insurance-benefits .benefit-item i {
    color: #f59e0b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.insurance-benefits .benefit-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Island Routes Styles */
.island-routes-section {
    background: linear-gradient(135deg, #e8f8f5 0%, #fef9e7 50%, #fdebf7 100%);
    padding: 80px 0;
}

.island-routes-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.island-routes-categories .category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.island-routes-categories .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--accent-color);
}

.island-routes-categories .card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.island-routes-categories .card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.island-routes-categories .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.island-routes-categories .category-card:hover .card-image img {
    transform: scale(1.05);
}

.island-routes-categories .card-content {
    padding: 25px;
}

.island-routes-categories .card-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: 600;
}

.island-routes-categories .card-content p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tour-highlights .highlight {
    background: linear-gradient(135deg, var(--accent-color), #06d6a0);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
}

.island-routes-destinations {
    margin: 60px 0;
    text-align: center;
}

.island-routes-destinations h3 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2em;
    font-weight: 600;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.destination-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.destination-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.destination-flag {
    font-size: 3em;
    margin-bottom: 15px;
}

.destination-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4em;
    font-weight: 600;
}

.destination-item p {
    color: #6b7280;
    font-size: 0.95em;
    line-height: 1.6;
}

.island-routes-cta {
    background: linear-gradient(135deg, var(--primary-color), #1e40af);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.island-routes-cta h3 {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.island-routes-cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.island-routes-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.island-routes-cta .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    min-width: 200px;
}

.island-routes-cta .btn-primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.island-routes-cta .btn-primary:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
}

.island-routes-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.island-routes-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .island-routes-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .island-routes-cta {
        padding: 30px 20px;
    }
    
    .island-routes-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .island-routes-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
}

/* Sandals Resorts Styles */
.sandals-resorts {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    padding: 6rem 0;
}

.sandals-hero {
    margin-bottom: 4rem;
}

.sandals-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sandals-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.sandals-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #d97706;
}

.benefit-highlight i {
    color: #d97706;
    font-size: 1.5rem;
    width: 30px;
}

.benefit-highlight span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.sandals-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sandals-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.3);
}

.sandals-placeholder span {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
    text-align: center;
}

.sandals-destinations {
    margin-bottom: 4rem;
}

.sandals-destinations .destinations-title,
.experiences-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

.sandals-destinations .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sandals-destinations .destination-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid #d97706;
}

.sandals-destinations .destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.sandals-destinations .destination-card.featured {
    border-top-color: #dc2626;
    transform: scale(1.02);
}

.destination-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fef3c7;
}

.destination-header h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.resort-count {
    color: #d97706;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.resort-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.resort-list li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.resort-list li::before {
    content: '🏨';
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

.destination-cta {
    text-align: center;
}

.sandals-button {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.sandals-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.experience-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid #d97706;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.experience-card.romance {
    border-top-color: #ec4899;
}

.experience-card.wedding {
    border-top-color: #8b5cf6;
}

.experience-card.golf {
    border-top-color: #10b981;
}

.experience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
}

.experience-card.romance .experience-icon {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.experience-card.wedding .experience-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.experience-card.golf .experience-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.experience-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.experience-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
}

.feature-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.experience-cta {
    margin-top: 1.5rem;
}

.experience-button {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.experience-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.sandals-cta {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    border-radius: var(--border-radius);
    padding: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.2);
}

.sandals-cta .cta-content h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.sandals-cta .cta-content p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

.sandals-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.sandals-cta .cta-button.primary {
    background: var(--white);
    color: #d97706;
    border: none;
}

.sandals-cta .cta-button.primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.sandals-cta .cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.sandals-cta .cta-button.secondary:hover {
    background: var(--white);
    color: #d97706;
}

.sandals-partner {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.5rem;
}

.sandals-partner .partner-info {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

.sandals-included .included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sandals-included .included-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.sandals-included .included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.sandals-included .included-item i {
    color: #d97706;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.sandals-included .included-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Enhanced Hyatt Collection */
.hyatt-collection {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hyatt-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-button {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.filter-button:hover,
.filter-button.active {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* CTA Sections */
.disney-cta,
.rail-cta,
.viking-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    border-radius: var(--border-radius);
}

.disney-cta h3,
.rail-cta h3,
.viking-cta h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.disney-cta p,
.rail-cta p,
.viking-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Travel Insurance Responsive Design */
@media (max-width: 768px) {
    .insurance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .insurance-visual {
        order: -1;
    }

    .insurance-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

    .protection-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .coverage-grid,
    .plans-comparison,
    .insurance-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .insurance-cta {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }

    .plan-card {
        padding: 2rem;
    }

    .plan-card.premium {
        transform: none;
    }
}

@media (max-width: 480px) {
    .insurance-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }

    .insurance-placeholder span {
        font-size: 1rem;
    }

    .coverage-card,
    .plan-card,
    .insurance-benefits .benefit-item {
        padding: 1.5rem;
    }

    .insurance-cta {
        padding: 2rem 1rem;
    }

    .insurance-cta .cta-content h3 {
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .disney-tabs,
    .hyatt-filters {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .disney-tabs .tab-button,
    .filter-button {
        width: 100%;
        max-width: 300px;
    }

    .rail-hero-card {
        grid-template-columns: 1fr;
    }

    .rail-image {
        min-height: 200px;
    }

    .rail-content {
        padding: 2rem;
    }

    .benefits-grid,
    .partner-benefits,
    .viking-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .location-list {
        justify-content: center;
    }

    .disney-grid,
    .routes-grid,
    .packages-grid,
    .destinations-grid,
    .expeditions-grid,
    .amenities-grid,
    .villa-services .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .partner-showcase {
        padding: 2rem;
    }

    .disney-cta,
    .rail-cta,
    .viking-cta {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .disney-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .disney-cta .cta-button,
    .book-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .disney-placeholder,
    .rail-placeholder {
        font-size: 2rem;
    }

    .disney-placeholder span,
    .rail-placeholder span {
        font-size: 0.9rem;
    }

    .disney-content,
    .rail-content {
        padding: 1.5rem;
    }

    .route-card,
    .package-card,
    .expedition-card,
    .disney-card {
        padding: 1.5rem;
    }

    .partner-showcase {
        padding: 1.5rem;
    }
}

/* Destination Tab Content (for main page destinations section) */
.destination-tab-content {
    display: none;
}

.destination-tab-content.active {
    display: block;
}

/* Wedding Package Comparison Tool */
.package-comparison-section {
    background: linear-gradient(135deg, #fef3e2 0%, #fde8ca 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.package-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-selector-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: var(--transition);
}

.package-selector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.package-selector-header {
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 1rem;
}

.package-selector-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.package-selector-header p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.package-option {
    display: flex;
    flex-direction: column;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.package-option:hover {
    border-color: var(--accent-color);
    background: #fef3e2;
}

.package-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.package-option input[type="checkbox"]:checked + .package-name {
    color: var(--primary-color);
    font-weight: 600;
}

.package-option input[type="checkbox"]:checked {
    & ~ * {
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    }
}

.package-option:has(input[type="checkbox"]:checked) {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.15);
}

.package-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.package-details {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.comparison-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-instructions {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.clear-button {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.clear-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.package-comparison-results {
    margin-top: 3rem;
}

.package-comparison-results h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.package-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-comparison-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    position: relative;
}

.package-comparison-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.package-category {
    text-align: center;
    background: var(--gradient);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-feature {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.package-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.package-feature h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-feature p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.package-feature .pricing {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.included-services,
.venue-options,
.key-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-services li,
.venue-options li,
.key-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.included-services li::before,
.venue-options li::before,
.key-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Package Comparison Responsive Design */
@media (max-width: 768px) {
    .package-selector-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-selector-card,
    .package-comparison-card {
        padding: 1.5rem;
    }

    .package-comparison-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .package-option {
        padding: 0.75rem;
    }

    .package-name {
        font-size: 0.9rem;
    }

    .package-details {
        font-size: 0.8rem;
    }

    .package-comparison-card h4 {
        font-size: 1.1rem;
    }
}

/* Budget Calculator */
.budget-calculator-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.budget-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.input-group input,
.input-group select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.input-helper {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.3rem;
    font-style: italic;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.checkbox-option:hover {
    background: #f9fafb;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.checkbox-option span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.budget-results {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.budget-summary {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.budget-summary h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.total-budget {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.budget-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.budget-range {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.budget-breakdown {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f3f4f6;
}

.budget-breakdown h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-label {
    color: var(--text-dark);
    font-weight: 500;
}

.breakdown-amount {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.budget-recommendations {
    margin-bottom: 2rem;
}

.budget-recommendations h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-recommendations {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.recommendation-item {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    color: var(--primary-color);
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
    font-size: 0.9rem;
}

.budget-tips {
    margin-bottom: 2rem;
}

.budget-tips h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.budget-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.budget-tips li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.budget-tips li::before {
    content: "💡";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.budget-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.budget-actions .cta-button {
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    text-decoration: none;
}

.budget-actions .cta-button.primary {
    background: var(--gradient);
    color: var(--white);
}

.budget-actions .cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.budget-actions .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.budget-actions .cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Budget Calculator Responsive Design */
@media (max-width: 968px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .budget-results {
        position: static;
    }

    .budget-amount {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .budget-calculator-section {
        padding: 2rem 0;
    }

    .calculator-form,
    .budget-results {
        padding: 1.5rem;
    }

    .budget-inputs {
        gap: 1.5rem;
    }

    .budget-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .calculator-form,
    .budget-results {
        padding: 1rem;
    }

    .budget-amount {
        font-size: 1.8rem;
    }

    .checkbox-group {
        gap: 0.5rem;
    }

    .checkbox-option {
        padding: 0.4rem;
    }

    .checkbox-option span {
        font-size: 0.85rem;
    }
}

/* Disney Travel Section */
.disney-travel-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.disney-travel-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    pointer-events: none;
}

.disney-travel-card h3 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.disney-travel-card h4 {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.disney-travel-card p {
    color: rgba(255, 255, 255, 0.9);
}

.disney-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.disney-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.disney-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.disney-feature h5 {
    color: #fbbf24;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.disney-feature p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.disney-cta {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.disney-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.disney-button {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disney-button:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.6);
    color: #1e3a8a;
    text-decoration: none;
}

.disney-note {
    color: #fbbf24;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
    font-weight: 500;
}

.future-destinations {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
}

.future-destinations p {
    color: var(--primary-color);
    margin: 0;
    font-style: italic;
}

/* Disney Section Responsive Design */
@media (max-width: 768px) {
    .disney-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .disney-feature {
        padding: 1rem;
    }

    .disney-cta {
        padding: 1.5rem;
    }

    .disney-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .disney-travel-card {
        padding: 1.5rem;
    }

    .disney-feature {
        padding: 0.875rem;
    }

    .disney-cta {
        padding: 1rem;
    }

    .disney-description {
        font-size: 1rem;
    }
}

/* Tab Highlight for Disney */
.tab-highlight {
    display: block;
    font-size: 0.75rem;
    color: #fbbf24;
    font-weight: 500;
    margin-top: 0.25rem;
    text-transform: none;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.tab-button:hover .tab-highlight {
    color: #f59e0b;
    opacity: 1;
}

.tab-button.active .tab-highlight {
    color: #fbbf24;
    opacity: 1;
}

@media (max-width: 768px) {
    .tab-highlight {
        font-size: 0.7rem;
    }
}

/* Section Note for Disney Discovery */
.section-note {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.section-note em {
    font-style: italic;
}

/* Travel Protection Section */
.travel-protection-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.protection-container {
    max-width: 1200px;
    margin: 0 auto;
}

.protection-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.protection-benefits h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.protection-cta {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.travelguard-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.protection-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.protection-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.highlight-item::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.protection-actions {
    text-align: center;
}

.protection-button {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    border: none;
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.protection-button:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.6);
    color: var(--white);
    text-decoration: none;
}

.protection-note {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
    font-weight: 500;
}

.protection-testimonial {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.protection-testimonial blockquote {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
    position: relative;
}

.protection-testimonial blockquote::before {
    content: """;
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
    top: -0.5rem;
    font-family: serif;
}

.protection-testimonial cite {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    font-style: normal;
}

/* Budget Calculator Insurance Option */
.optional-item {
    background: rgba(30, 64, 175, 0.05);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    border: 1px dashed rgba(30, 64, 175, 0.3);
}

.optional-item .breakdown-label {
    color: var(--primary-color);
    font-weight: 600;
}

.optional-item .breakdown-amount {
    color: var(--primary-color);
    font-weight: 700;
}

/* Travel Protection Responsive Design */
@media (max-width: 968px) {
    .protection-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .protection-cta {
        position: static;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .travel-protection-section {
        padding: 2rem 0;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .protection-cta {
        padding: 1.5rem;
    }

    .protection-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .protection-testimonial {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 1rem;
    }

    .protection-cta {
        padding: 1rem;
    }

    .protection-description {
        font-size: 0.95rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }
}

/* Virtual Tours Section */
.virtual-tours-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.tours-container {
    max-width: 1400px;
    margin: 0 auto;
}

.tour-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.tour-tab-button {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-tab-button:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.tour-tab-button.active {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.tour-category-content {
    display: none;
}

.tour-category-content.active {
    display: block;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tour-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tour-preview {
    position: relative;
}

.tour-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image {
    transform: scale(1.05);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-play-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-play-btn:hover {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.play-icon {
    font-size: 1.2rem;
}

.tour-info {
    padding: 2rem;
}

.tour-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.tour-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.tour-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.feature-list h3,
.tour-cta h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: "🎥";
    position: absolute;
    left: 0;
    top: 0.75rem;
}

.tour-cta p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Virtual Tour Modal */
.tour-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.tour-modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.modal-header h3 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.tour-viewer {
    background: #f8fafc;
    border-radius: var(--border-radius);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.tour-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.tour-loading {
    text-align: center;
    color: var(--text-light);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tour-content {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
}

.tour-360-view {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.view-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.view-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.view-instruction {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

.tour-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hotspot {
    position: absolute;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

.hotspot:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.hotspot-icon {
    font-size: 1.2rem;
}

.tour-description {
    background: rgba(248, 250, 252, 0.8);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    border: 1px solid #e5e7eb;
}

.tour-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tour-control-btn {
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.tour-control-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-info-bar {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.tour-info-bar span {
    font-weight: 500;
}

/* Virtual Tours Responsive Design */
@media (max-width: 968px) {
    .tour-category-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tour-tab-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .tours-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .tour-features {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }

    .tour-360-view {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .virtual-tours-section {
        padding: 2rem 0;
    }

    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tour-info {
        padding: 1.5rem;
    }

    .tour-features {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .tour-controls {
        gap: 0.5rem;
    }

    .tour-control-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }

    .modal-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .tour-info-bar {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .tour-category-tabs {
        margin: 0 -1rem 2rem;
        border-radius: 0;
    }

    .tour-play-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .tour-360-view {
        height: 250px;
    }

    .hotspot {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }

    .view-icon {
        font-size: 2rem;
    }

    .modal-content {
        margin: 0.5rem;
        border-radius: 0;
    }
}

/* Planning Guides Section */
.planning-guides-section {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    padding: 4rem 0;
    margin-top: 3rem;
}

.guides-container {
    max-width: 1400px;
    margin: 0 auto;
}

.guide-category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.guide-tab-button {
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guide-tab-button:hover {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.guide-tab-button.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
}

.guide-category-content {
    display: none;
}

.guide-category-content.active {
    display: block;
}

/* Timeline Styles */
.timeline-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.timeline-header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-header h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.timeline-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #f59e0b, #d97706);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.timeline-content h5 {
    color: #d97706;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.timeline-tasks {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-tasks li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid #f3f4f6;
}

.timeline-tasks li:last-child {
    border-bottom: none;
}

.timeline-tasks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Checklists Styles */
.checklists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.checklist-progress {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.progress-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}

.progress-percentage {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    height: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    height: 100%;
    width: 0%;
    transition: width 0.6s ease;
    border-radius: 50px;
}

.progress-message {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.checklist-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.checklist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.checklist-header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.checklist-header h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.checklist-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.checklist-content {
    padding: 2rem;
}

.checklist-category {
    margin-bottom: 2rem;
}

.checklist-category:last-child {
    margin-bottom: 0;
}

.checklist-category h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 0.5rem;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.checklist-item:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.checklist-item.completed {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--text-dark);
}

.checklist-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.checklist-checkbox:checked + .checkmark {
    background: #10b981;
    border-color: #10b981;
}

.checklist-checkbox:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: bold;
    font-size: 12px;
}

/* Resources Styles */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.resource-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.resource-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.resource-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.resource-btn:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Tips Styles */
.tips-container {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tips-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-header h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.tips-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tip-card {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tip-details {
    display: flex;
    justify-content: flex-end;
}

.tip-category {
    background: #f59e0b;
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-consultation-cta {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
}

.consultation-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.consultation-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Planning Guides Responsive Design */
@media (max-width: 968px) {
    .guide-category-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .guide-tab-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .checklists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .planning-guides-section {
        padding: 2rem 0;
    }

    .timeline-container,
    .tips-container {
        padding: 2rem;
    }

    .checklist-content,
    .resource-card {
        padding: 1.5rem;
    }

    .timeline-marker {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 70px;
    }

    .timeline::before {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .guide-category-tabs {
        flex-direction: column;
        margin: 0 -1rem 2rem;
        border-radius: 0;
    }

    .timeline-container,
    .tips-container {
        padding: 1.5rem;
    }

    .checklist-header {
        padding: 1.5rem;
    }

    .checklist-content {
        padding: 1rem;
    }

    .resource-card {
        padding: 1.5rem;
    }

    .timeline-header h3 {
        font-size: 1.5rem;
    }

    .tips-header h3 {
        font-size: 1.5rem;
    }
}

/* Guest Experience Portal Styles */
.guest-portal-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.portal-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.portal-navigation {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.portal-nav-tabs {
    display: flex;
    padding: 0;
}

.portal-tab-button {
    flex: 1;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.portal-tab-button:hover {
    background: #e2e8f0;
    color: var(--text-dark);
}

.portal-tab-button.active {
    background: white;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.portal-content {
    padding: 2rem;
}

.portal-tab-section {
    display: none;
}

.portal-tab-section.active {
    display: block;
}

/* Guest Coordination Section */
.coordination-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.rsvp-tracking-card,
.accommodation-overview-card,
.travel-coordination-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.rsvp-progress {
    background: #f1f5f9;
    border-radius: 8px;
    height: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.rsvp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 8px;
    transition: width 0.3s ease;
    width: 68%;
}

.rsvp-stats {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.guest-list {
    max-height: 300px;
    overflow-y: auto;
}

.guest-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.guest-row:last-child {
    border-bottom: none;
}

.guest-info {
    display: flex;
    flex-direction: column;
}

.guest-name {
    font-weight: 500;
    color: var(--text-dark);
}

.guest-email {
    font-size: 0.875rem;
    color: var(--text-light);
}

.rsvp-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.rsvp-status.confirmed {
    background: #dcfce7;
    color: #166534;
}

.rsvp-status.pending {
    background: #fef3c7;
    color: #92400e;
}

.rsvp-status.declined {
    background: #fee2e2;
    color: #991b1b;
}

.guest-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
}

.action-btn.primary:hover {
    background: var(--secondary-color);
}

.action-btn.secondary {
    background: #f1f5f9;
    color: var(--text-dark);
}

.action-btn.secondary:hover {
    background: #e2e8f0;
}

.action-btn.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* Accommodation Overview */
.accommodation-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.room-breakdown {
    space-y: 1rem;
}

.room-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.room-name {
    font-weight: 500;
}

.room-count {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Shared Itinerary Section */
.itinerary-container {
    max-width: 800px;
}

.itinerary-day {
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.day-header {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.day-date {
    font-size: 0.875rem;
    opacity: 0.9;
}

.day-events {
    padding: 1.5rem;
}

.event-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.event-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-time {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary-color);
    width: 80px;
}

.event-details {
    flex: 1;
}

.event-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-location {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.event-description {
    font-size: 0.875rem;
    line-height: 1.5;
}

.event-notes {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Group Activities Section */
.activities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    background: white;
    transition: var(--transition);
}

.activity-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.activity-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.activity-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.activity-time {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.activity-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.activity-participants {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.participant-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

.join-activity-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.join-activity-btn:hover {
    background: var(--secondary-color);
}

.activity-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Communication Hub Section */
.communication-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.announcements-card,
.contact-info-card,
.group-chat-card,
.photo-sharing-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    background: white;
}

.announcements-list {
    max-height: 300px;
    overflow-y: auto;
}

.announcement-item {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 1rem;
}

.announcement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.announcement-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.announcement-header h5 {
    margin: 0;
    font-weight: 600;
}

.announcement-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.contact-list {
    space-y: 1rem;
}

.contact-item {
    padding: 1rem;
    background: #f8fafc;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.contact-item h5 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-details span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.online-count {
    font-size: 0.75rem;
    color: var(--text-light);
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.chat-preview {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}

.message-author {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.875rem;
}

.message-text {
    font-size: 0.875rem;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-light);
}

.chat-actions {
    display: flex;
    gap: 0.5rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 6px;
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 0.5rem;
    font-size: 0.75rem;
}

.photo-author {
    font-weight: 500;
}

.photo-time {
    opacity: 0.8;
}

.upload-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    cursor: pointer;
}

/* Portal Access Info */
.portal-access-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.access-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
}

.access-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.access-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 6px;
}

.access-label {
    font-weight: 500;
    color: var(--text-dark);
}

.access-value {
    font-family: 'Monaco', 'Courier New', monospace;
    color: var(--primary-color);
    font-weight: 500;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: 1rem;
}

.access-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design for Portal */
@media (max-width: 768px) {
    .portal-nav-tabs {
        flex-direction: column;
    }

    .portal-tab-button {
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
    }

    .portal-tab-button.active {
        border-bottom-color: transparent;
        border-left: 3px solid var(--primary-color);
    }

    .coordination-grid {
        grid-template-columns: 1fr;
    }

    .communication-grid {
        grid-template-columns: 1fr;
    }

    .activities-container {
        grid-template-columns: 1fr;
    }

    .guest-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .access-item {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .copy-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        align-self: flex-start;
    }

    .access-actions {
        flex-direction: column;
    }
}

/* Cultural Wedding Showcases Styles */
.cultural-weddings-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.cultural-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cultural-navigation {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.cultural-nav-tabs {
    display: flex;
    padding: 0;
}

.cultural-tab-button {
    flex: 1;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.cultural-tab-button:hover {
    background: #e2e8f0;
    color: var(--text-dark);
}

.cultural-tab-button.active {
    background: white;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.cultural-content {
    padding: 2rem;
}

.cultural-tab-section {
    display: none;
}

.cultural-tab-section.active {
    display: block;
}

/* Wedding Traditions Section */
.traditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.tradition-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.tradition-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.tradition-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tradition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tradition-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tradition-content {
    padding: 1.5rem;
}

.tradition-content h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.tradition-customs {
    margin-bottom: 1.5rem;
}

.custom-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.custom-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.custom-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.custom-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.tradition-destinations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.destination-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Ceremony Styles Section */
.ceremony-styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.ceremony-style {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.style-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.style-header h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.style-header p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

.style-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8fafc;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-item h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.style-destinations {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.style-destinations strong {
    color: var(--text-dark);
}

/* Cultural Customs Section */
.customs-container {
    space-y: 3rem;
}

.customs-category {
    margin-bottom: 3rem;
}

.customs-category h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.customs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.custom-detail {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.custom-detail h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.custom-detail p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.custom-detail p:last-child {
    margin-bottom: 0;
}

.custom-detail strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Cultural Planning Section */
.planning-container {
    space-y: 3rem;
}

.planning-section {
    margin-bottom: 3rem;
}

.planning-section h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.timeline-period {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.integration-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.integration-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.integration-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.integration-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.package-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border-color: var(--primary-color);
    border-width: 2px;
    transform: scale(1.02);
}

.package-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.package-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.package-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.package-btn:hover {
    background: var(--primary-color);
    color: white;
}

.package-btn.primary {
    background: var(--primary-color);
    color: white;
}

.package-btn.primary:hover {
    background: var(--secondary-color);
}

/* Cultural CTA Section */
.cultural-cta {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn.primary {
    background: var(--primary-color);
    color: white;
}

.cta-btn.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Cultural Section */
@media (max-width: 768px) {
    .cultural-nav-tabs {
        flex-direction: column;
    }

    .cultural-tab-button {
        border-bottom: 1px solid #e2e8f0;
        border-right: none;
    }

    .cultural-tab-button.active {
        border-bottom-color: transparent;
        border-left: 3px solid var(--primary-color);
    }

    .traditions-grid {
        grid-template-columns: 1fr;
    }

    .ceremony-styles-grid {
        grid-template-columns: 1fr;
    }

    .customs-grid {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-period {
        width: 100%;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}