/* ========================================
   SHRI VINAYAK TRAVELS - PACKAGE CSS
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-icon {
    color: #ea580c;
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.brand-tagline {
    font-size: 0.875rem;
    color: #6b7280;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.header-phone:hover {
    color: #ea580c;
}

.btn-whatsapp-header {
    background: #22c55e;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    transition: background 0.3s;
}

.btn-whatsapp-header:hover {
    background: #16a34a;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    background-image: url("andamanIslandPack.webp"); /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero-content {
    max-width: 48rem;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.badge-duration {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star-icon {
    color: #fde047;
    fill: #fde047;
}

.rating-score {
    font-weight: 500;
}

.rating-count {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-destinations {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-pricing {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
}

.price-note {
    font-size: 0.875rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn-primary {
    background: white;
    color: #ea580c;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #f3f4f6;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: #ea580c;
}

/* ========================================
   HIGHLIGHTS STRIP
   ======================================== */
.highlights {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #374151;
}

.highlight-item svg {
    color: #ea580c;
}

.highlight-item span {
    font-weight: 500;
}

/* ========================================
   MAIN CONTENT
   ======================================== */
.main-content {
    padding: 3rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ========================================
   CARD COMPONENT
   ======================================== */
.card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .card {
        padding: 2rem;
    }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.overview-text {
    color: #374151;
    line-height: 1.75;
}

/* ========================================
   ITINERARY
   ======================================== */
.itinerary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.itinerary-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.itinerary-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f9fafb;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-align: left;
}

.itinerary-header:hover {
    background: #f3f4f6;
}

.itinerary-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.day-number {
    background: #ea580c;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.day-info h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.day-info p {
    font-size: 0.875rem;
    color: #6b7280;
}

.chevron {
    color: #6b7280;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.itinerary-item.active .chevron {
    transform: rotate(180deg);
}

.itinerary-content {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    display: none;
}

.itinerary-item.active .itinerary-content {
    display: block;
}

.itinerary-content p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.itinerary-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .itinerary-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.detail-item svg {
    color: #ea580c;
    flex-shrink: 0;
}

.detail-item strong {
    color: #111827;
    margin-left: 0.25rem;
}

/* ========================================
   INCLUSIONS & EXCLUSIONS
   ======================================== */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.inclusions-title,
.exclusions-title {
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inclusions-title {
    color: #059669;
}

.exclusions-title {
    color: #dc2626;
}

.inclusions-list,
.exclusions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.inclusions-list li,
.exclusions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
}

.inclusions-list li svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.exclusions-list li svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ========================================
   WHY CHOOSE
   ======================================== */
.why-choose-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 100%);
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-choose-number {
    background: #ea580c;
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.why-choose-item p {
    color: #374151;
    padding-top: 0.25rem;
}

/* ========================================
   BOOKING FORM
   ======================================== */
.sidebar {
    position: sticky;
    top: 6rem;
}

.booking-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.booking-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.booking-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.package-info {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.package-info-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.package-info-name {
    font-weight: 600;
    color: #111827;
}

.btn-submit {
    width: 100%;
    background: #ea580c;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c2410c;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0.75rem;
}

/* ========================================
   CONTACT CARD
   ======================================== */
.contact-card {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-link:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #111827;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand svg {
    color: #ea580c;
}

.footer-brand span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 1rem;
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: #22c55e;
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 999;
}

.floating-whatsapp:hover {
    background: #16a34a;
    transform: scale(1.1);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.hidden {
    display: none !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}