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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

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

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

/* ============ HERO SECTION ============ */
.hero {
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('Images/WhatsApp Image 2025-12-30 at 12.18.42_4f6898fc.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-brand {
    display: inline-block;
    margin-bottom: 16px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #4f46e5, #312e81);
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #ffffff;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 28px rgba(49, 46, 129, 0.45);
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.6);
}

/* ============ INFO BAR ============ */
.info-bar {
    background: #f8f9fa;
    padding: 40px 0;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item .icon {
    font-size: 2.5em;
}

.info-item strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1em;
}

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

/* ============ SECTIONS ============ */
.tours-section,
.gallery-section,
.contact-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

/* ============ TOUR CARDS ============ */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tour-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.tour-card.featured {
    grid-column: span 2;
}

.tour-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.tour-card h3 {
    padding: 20px 25px 10px;
    font-size: 1.5em;
    color: #2c3e50;
}

.tour-card p {
    padding: 0 25px 10px;
    color: #666;
}

.tour-highlights {
    list-style: none;
    padding: 10px 25px;
}

.tour-highlights li {
    padding: 5px 0;
    color: #555;
}

.tour-highlights li:before {
    content: "✓ ";
    color: #3498db;
    font-weight: bold;
    margin-right: 10px;
}

.tour-duration {
    padding: 10px 25px 25px;
    font-weight: bold;
    color: #3498db !important;
}

/* ============ GALLERY ============ */
.gallery-section {
    background: #f8f9fa;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.contact-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-card p {
    color: #666;
    font-size: 1.1em;
}

/* ============ FOOTER ============ */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
}
/* ============ CUSTOMER CHATBOT ============ */
.chatbot-widget {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1100;
}

.chatbot-toggle {
    border: none;
    border-radius: 50%;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #3498db, #2c6fb4);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.35);
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 78px;
    width: min(360px, calc(100vw - 30px));
    background: white;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.chatbot-panel.open {
    display: flex;
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    color: white;
    padding: 14px 16px;
}

.chatbot-header p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 2px 0 0;
}

.chatbot-close {
    border: none;
    background: transparent;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
}

.chatbot-messages {
    padding: 14px;
    max-height: 280px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8fbff;
}

.message {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.message.bot {
    background: #eaf4ff;
    color: #234;
    align-self: flex-start;
}

.message.user {
    background: #3498db;
    color: white;
    align-self: flex-end;
}

.chatbot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px 0;
}

.chatbot-quick-actions button,
.chatbot-form button {
    border: none;
    border-radius: 999px;
    padding: 8px 12px;
    background: #eef6ff;
    color: #2c3e50;
    cursor: pointer;
    font-weight: 600;
}

.chatbot-form {
    display: flex;
    gap: 8px;
    padding: 12px 14px 14px;
}

.chatbot-form input {
    flex: 1;
    border: 1px solid #dce7f3;
    border-radius: 999px;
    padding: 10px 12px;
    outline: none;
}

.chatbot-form button {
    background: #3498db;
    color: white;
}

@media (max-width: 600px) {
    .chatbot-panel {
        right: -10px;
        bottom: 70px;
        width: calc(100vw - 20px);
    }
}
/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 0.9em;
    }
    
    .tour-card.featured {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 2em;
    }
}

/* ============ MODAL ============ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    position: relative;
    margin: 50px auto;
    padding: 40px;
    max-width: 1200px;
    background: white;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #333;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #e74c3c;
}

.modal-content h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5em;
}

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

.modal-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.modal-gallery img:hover {
    transform: scale(1.05);
}

#winelands-card {
    cursor: pointer;
    position: relative;
}

#winelands-card:hover {
    box-shadow: 0 10px 35px rgba(52, 152, 219, 0.3);
}

#city-card {
    cursor: pointer;
    position: relative;
}

#city-card:hover {
    box-shadow: 0 10px 35px rgba(52, 152, 219, 0.3);
}

#tablemountain-card {
    cursor: pointer;
    position: relative;
}

#tablemountain-card:hover {
    box-shadow: 0 10px 35px rgba(52, 152, 219, 0.3);
}

#peninsula-card {
    cursor: pointer;
    position: relative;
}

#peninsula-card:hover {
    box-shadow: 0 10px 35px rgba(52, 152, 219, 0.3);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 20px;
    }
    
    .modal-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============ REVIEWS SECTION ============ */
.reviews-section {
    background: #f8f9fa;
}

.review-form-container {
    max-width: 600px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2em;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffd700;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.review-success {
    text-align: center;
    padding: 40px;
}

.review-success h3 {
    color: #27ae60;
    font-size: 2em;
    margin-bottom: 10px;
}

.review-success p {
    color: #666;
    font-size: 1.1em;
}

.reviews-display {
    max-width: 900px;
    margin: 0 auto;
}

.reviews-display h3 {
    text-align: center;
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 30px;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-header strong {
    font-size: 1.2em;
    color: #2c3e50;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2em;
    margin-top: 5px;
}

.review-tour {
    background: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.review-text {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .review-form-container {
        padding: 25px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
}
