/* =============================================
   ITINERARY PAGE STYLES
   ============================================= */

:root {
    --gold: #C9A962;
    --gold-light: #E8D5A3;
    --gold-dark: #8B7355;
    --dark: #1A1A1A;
    --dark-lighter: #2D2D2D;
    --light: #F8F6F2;
    --white: #FFFFFF;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    background: var(--light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

.gold-accent {
    color: var(--gold);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: var(--dark);
}

.btn-icon:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* =============================================
   HERO SECTION
   ============================================= */
.itinerary-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/sankofa-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    max-width: 900px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--gold);
}

.tour-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 40px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.hero-meta .meta-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-meta .meta-item.price {
    background: rgba(201, 169, 98, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    border: 1px solid var(--gold);
}

.hero-meta .meta-item.price strong {
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 5px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =============================================
   QUICK INFO BAR
   ============================================= */
.quick-info-bar {
    background: var(--dark);
    padding: 30px 0;
    margin-top: -1px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(201, 169, 98, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text .value {
    color: var(--white);
    font-weight: 600;
}

/* =============================================
   TOUR OVERVIEW
   ============================================= */
.tour-overview {
    padding: 100px 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.overview-content .divider {
    margin: 0 0 30px 0;
}

.overview-content p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 30px;
}

.overview-highlights h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.overview-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.overview-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.overview-highlights li i {
    color: var(--gold);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.gallery-item.view-all {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.view-all span {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* =============================================
   ITINERARY TIMELINE
   ============================================= */
.itinerary-section {
    padding: 100px 0;
    background: var(--light);
}

/* Day Navigation */
.itinerary-nav {
    margin-bottom: 50px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.nav-scroll {
    display: flex;
    gap: 10px;
    min-width: max-content;
    padding: 5px;
}

.day-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 100px;
}

.day-nav-item:hover {
    border-color: var(--gold);
}

.day-nav-item.active {
    background: var(--gold);
    color: var(--white);
}

.day-nav-item .day-num {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.day-nav-item .day-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Timeline */
.itinerary-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-light));
    border-radius: 3px;
}

.timeline-day {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.timeline-marker {
    position: absolute;
    left: 15px;
    top: 30px;
    width: 34px;
    height: 34px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--light);
}

.timeline-content {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-lg);
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--dark), var(--dark-lighter));
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.timeline-header:hover {
    background: var(--dark-lighter);
}

.timeline-header.active {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.day-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.day-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meal-icons {
    display: flex;
    gap: 8px;
}

.meal-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.meal-icon.active {
    background: var(--gold);
}

.toggle-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.timeline-header.active .toggle-icon {
    transform: rotate(180deg);
}

.timeline-body {
    display: none;
    padding: 30px;
    animation: slideDown 0.3s ease;
}

.timeline-body.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.day-description {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text);
}

.day-highlights {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.day-highlights h5 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.day-highlights h5 i {
    color: var(--gold);
}

.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.highlights-list li::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
}

.day-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.day-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: var(--light);
    border-radius: 10px;
}

.day-info-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.day-info-item .info-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.day-info-item .info-value {
    font-weight: 600;
    color: var(--dark);
}

.timeline-controls {
    text-align: center;
    margin-top: 40px;
}

.btn-expand-all {
    background: var(--white);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-expand-all:hover {
    background: var(--gold);
    color: var(--white);
}

/* =============================================
   ACCOMMODATION SECTION
   ============================================= */
.accommodation-section {
    padding: 100px 0;
    background: var(--white);
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.accommodation-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.accommodation-image {
    position: relative;
    height: 250px;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accommodation-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.accommodation-body {
    padding: 25px;
}

.accommodation-body h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.accommodation-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.accommodation-location i {
    color: var(--gold);
}

.accommodation-nights {
    display: inline-block;
    background: var(--light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

/* =============================================
   INCLUSIONS SECTION
   ============================================= */
.inclusions-section {
    padding: 100px 0;
    background: var(--light);
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.inclusion-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.inclusion-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.inclusion-card .card-header i {
    font-size: 2rem;
}

.inclusion-card.included .card-header i {
    color: var(--success);
}

.inclusion-card.excluded .card-header i {
    color: var(--danger);
}

.inclusion-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

.inclusion-card ul {
    list-style: none;
}

.inclusion-card li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.inclusion-card li:last-child {
    border-bottom: none;
}

.inclusion-card.included li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
}

.inclusion-card.excluded li::before {
    content: '✕';
    color: var(--danger);
    font-weight: 700;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    padding: 100px 0;
    background: var(--dark);
}

.pricing-section .section-header h2 {
    color: var(--white);
}

.pricing-section .section-header .subtitle {
    color: var(--gold);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--gold);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-type {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.pricing-amount {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.pricing-amount span {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--success);
}

.pricing-notes {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.pricing-notes i {
    color: var(--gold);
    margin-right: 8px;
}

/* =============================================
   INQUIRY SECTION
   ============================================= */
.inquiry-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.inquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.inquiry-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.inquiry-content p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inquiry-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

/* =============================================
   RELATED TOURS
   ============================================= */
.related-tours {
    padding: 100px 0;
    background: var(--white);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.related-card .card-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.related-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .card-image img {
    transform: scale(1.1);
}

.related-card .card-body {
    padding: 25px;
}

.related-card .location {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.related-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.related-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-card .duration {
    font-size: 0.85rem;
    color: var(--text-light);
}

.related-card .price {
    font-weight: 700;
    color: var(--gold);
}

/* =============================================
   STICKY CTA
   ============================================= */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
    transition: bottom 0.3s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-cta .cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-info .tour-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.cta-info .tour-price strong {
    font-size: 1.4rem;
    color: var(--gold);
}

.cta-actions {
    display: flex;
    gap: 10px;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .inclusions-grid {
        grid-template-columns: 1fr;
    }
    
    .inquiry-wrapper {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .itinerary-timeline::before {
        left: 15px;
    }
    
    .timeline-day {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 0;
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .timeline-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form-wrapper {
        padding: 30px 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item.main {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 250px;
    }
    
    .gallery-item:not(.main) {
        height: 120px;
    }
    
    .sticky-cta .cta-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-actions {
        width: 100%;
    }
    
    .cta-actions .btn-primary {
        flex: 1;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}
/* Couple's Choice Tag Styling */
.tour-tag.couple-tag {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-tag.couple-tag i {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Romantic Tour Card Accent */
.tour-card.romantic {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #ff6b6b, var(--gold)) border-box;
}

/* Special Moment Badges in Itinerary */
.special-moment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 15px;
}

.special-moment-badge i {
    font-size: 1rem;
}

/* Photography Indicator */
.photography-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--dark);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Drone Service Indicator */
.drone-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Romantic Dinner Highlight */
.romantic-dinner-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(201, 169, 98, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
}

.romantic-dinner-highlight h5 {
    color: #ee5a5a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.romantic-dinner-highlight h5 i {
    font-size: 1.2rem;
}

/* Overwater Villa Special Styling */
.accommodation-card.overwater {
    position: relative;
    overflow: hidden;
}

.accommodation-card.overwater::before {
    content: '✨ Overwater Experience';
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Flight Indicator */
.flight-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 20px;
    border-radius: 12px;
    margin: 15px 0;
    border-left: 4px solid var(--gold);
}

.flight-indicator i {
    color: var(--gold);
    font-size: 1.5rem;
}

.flight-indicator .flight-details {
    display: flex;
    flex-direction: column;
}

.flight-indicator .flight-route {
    font-weight: 600;
    color: var(--dark);
}

.flight-indicator .flight-time {
    font-size: 0.85rem;
    color: var(--text-light);
}
/* --- Responsive Adjustments --- */

/* Basic Container Padding */
.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
}

/* 1. Hero Section Scaling */
@media (max-width: 768px) {
    .itinerary-hero {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    #hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* 2. Quick Info Bar (4 columns to 2, then 1) */
@media (max-width: 992px) {
    .info-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* 3. Tour Overview & Inclusions */
@media (max-width: 768px) {
    .overview-grid, 
    .inclusions-grid, 
    .accommodation-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Remove the 20% margin if you didn't remove it from HTML */
    .tour-overview {
        margin-left: 0 !important;
    }
}

/* 4. Map Section */
@media (max-width: 768px) {
    .map-container {
        display: flex;
        flex-direction: column;
    }
    
    .map-wrapper img {
        width: 100%;
        height: auto;
    }
}

/* 5. Sticky CTA (Mobile bottom bar) */
@media (max-width: 768px) {
    .sticky-cta .cta-info {
        display: none; /* Hide text to save space on tiny screens */
    }
    
    .sticky-cta .cta-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .sticky-cta .btn-primary {
        flex-grow: 1;
        margin-right: 10px;
    }
}

/* 6. Itinerary Timeline */
@media (max-width: 768px) {
    .nav-scroll {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .itinerary-nav {
        border-bottom: 1px solid #ddd;
    }
}
/* --- Responsive Base Layout --- */
.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

/* --- Hero Section Mobile Refinement --- */
.itinerary-hero {
    min-height: 80vh;
    padding: 100px 0 60px;
    text-align: center;
}

#hero-title {
    font-size: 2.5rem; /* Smaller font for mobile */
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-meta {
    flex-direction: column; /* Stack icons vertically on small screens */
    gap: 15px;
    align-items: center;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.hero-actions .btn {
    width: 100%; /* Full width buttons for easier tapping */
}

/* --- Quick Info Bar (Grid to 2-columns or 1-column) --- */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

@media (max-width: 576px) {
    .info-grid {
        grid-template-columns: 1fr; /* Stack on very small phones */
    }
}

/* --- Overview Section --- */
.overview-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gold-accent {
    color: #f78f04; /* Using your brand color */
}

/* --- Inclusion Cards (Side-by-side to Stacked) --- */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 992px) {
    .inclusions-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* --- Inquiry Form Row Fix --- */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-group {
    flex: 1 1 100%; /* Default to full width */
}

@media (min-width: 768px) {
    .form-group {
        flex: 1; /* Side by side on tablets/desktop */
    }
}

/* --- Sticky CTA Mobile Optimization --- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 1000;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 480px) {
    .cta-info {
        display: none; /* Hide price/name on tiny screens to save space */
    }
    .cta-actions {
        width: 100%;
        justify-content: space-around;
    }
}

/* --- Utility Classes --- */
.btn-primary {
    background-color: #f78f04;
    border-color: #f78f04;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #d67b03;
}
html, body {
    overflow-x: hidden; /* Prevents horizontal scroll on the main container */
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}
img, video, canvas, svg {
    max-width: 100%;
    height: auto; /* Maintains aspect ratio */
    display: block;
}