/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a9396;      /* Teal blue */
    --secondary: #ee9b00;    /* Orange */
    --accent: #9d4edd;       /* Purple for accent */
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --text: #333;
    --gray: #666;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #088a8c;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: #d88b00;
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #8a2be2;
    transform: translateY(-3px);
}

/* ===== FIXED NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(10, 147, 150, 0.1);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(10, 147, 150, 0.1);
}

.menu-btn {
    color: var(--secondary);
    font-weight: 600;
}

.book-btn {
    background: var(--primary);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 20px;
    font-weight: 600;
}

.book-btn:hover {
    background: #088a8c;
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    z-index: 1001;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1600') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

/* ===== SECTION STYLES ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== STAY SECTION ===== */
.stay-section {
    background: var(--light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.room-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.room-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.room-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px 0;
    font-size: 0.9rem;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.room-features i {
    color: var(--primary);
    width: 16px;
}

.room-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 15px 0;
    text-align: center;
}

.book-room-btn {
    width: 100%;
    margin-top: 10px;
}

/* ===== POOL CLUB SECTION ===== */
.pool-section {
    background: white;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pool-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pool-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.pool-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.pool-feature p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--text);
}

.feature-list li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pool-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ===== TOURS SECTION ===== */
.tours-section {
    background: var(--light);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.tour-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.tour-content {
    padding: 25px;
}

.tour-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.tour-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.tour-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 15px 0;
}

.tour-features {
    list-style: none;
    margin: 15px 0;
}

.tour-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.tour-features i {
    color: var(--primary);
    width: 16px;
}

.book-tour-btn {
    width: 100%;
    margin-top: 15px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-links {
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--primary);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(10, 147, 150, 0.1);
}

/* Booking Form */
.booking-form-container {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.booking-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--dark);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.footer-logo p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
}

.close-modal:hover {
    color: var(--dark);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.modal-content p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        height: 100vh;
        padding: 80px 20px 20px;
        box-shadow: none;
        transition: 0.3s;
        z-index: 1000;
        overflow-y: auto;
        align-items: stretch;
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 15px;
        border-radius: 0;
        border-bottom: 1px solid #eee;
        justify-content: center;
    }
    
    .nav-link:hover {
        background: rgba(10, 147, 150, 0.1);
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    .rooms-grid,
    .tours-grid,
    .pool-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
    
    .pool-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .pool-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .room-content,
    .tour-content,
    .pool-feature,
    .booking-form-container {
        padding: 20px;
    }
}
/* ===== SPECIAL BANNER ===== */
.special-banner {
    background: linear-gradient(135deg, var(--secondary), #ff9900);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.special-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.special-banner i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.special-banner span {
    font-weight: 500;
    font-size: 0.95rem;
}

.special-banner strong {
    font-weight: 700;
    font-size: 1.1rem;
}

.btn-banner {
    background: white;
    color: var(--secondary);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-banner:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* Adjust hero for banner */
.hero {
    padding-top: 130px !important;
}

/* ===== PRICE COMPARISON ===== */
.room-price, .tour-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1rem;
}

.new-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
}

.save-badge {
    background: #e74c3c;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== EMAIL LINKS ===== */
.email-link {
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin: 5px 0;
    transition: var(--transition);
    font-size: 0.95rem;
}

.email-link:hover {
    color: #088a8c;
    text-decoration: underline;
}

.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.whatsapp-contact:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* ===== FORM ENHANCEMENTS ===== */
.form-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1rem;
}

/* ===== DOWNLOADS SECTION ===== */
.footer-downloads {
    display: flex;
    flex-direction: column;
}

.footer-downloads h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.download-link:hover {
    color: white;
    padding-left: 5px;
}

.download-link i {
    color: var(--primary);
}

/* ===== TOURS PAGE STYLES ===== */
.tours-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('images/tours-banner.jpg') center/cover no-repeat;
    padding-top: 130px;
}

.all-tours-section {
    background: var(--light);
}

.catalog-header {
    text-align: center;
    margin-bottom: 50px;
}

.price-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
    align-items: center;
}

.price-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card.best {
    border: 2px solid var(--secondary);
}

.best-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 15px 0;
}

.price-card.best .price {
    color: var(--secondary);
}

.price-card .save {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 20px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.price-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.price-card .fa-check {
    color: #2ecc71;
}

.price-card .fa-times {
    color: #e74c3c;
}

.vs {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray);
}

/* Tours Categories */
.tours-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--dark);
    border-bottom: 2px solid var(--light);
    padding-bottom: 15px;
}

.category-tours {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-item {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.tour-item:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.tour-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.tour-item p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.tour-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--gray);
    font-size: 0.9rem;
}

.tour-info .price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
}

.tour-info small {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(135deg, var(--primary), #088a8c);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin: 50px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

/* PDF Download */
.pdf-download {
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.pdf-icon {
    font-size: 4rem;
    color: #e74c3c;
}

.pdf-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.pdf-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* Modal Icon */
.modal-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .special-banner .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .hero {
        padding-top: 150px !important;
    }
    
    .price-comparison {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 20px;
    }
    
    .vs {
        order: 2;
    }
    
    .pdf-download {
        flex-direction: column;
        text-align: center;
    }
    
    .tour-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}