/* ===== CSS Variables ===== */
:root {
    --primary: #1a472a;
    --primary-dark: #0d2818;
    --secondary: #e67e22;
    --accent: #27ae60;
    --white: #ffffff;
    --light: #f8f9fa;
    --gray: #6c757d;
    --dark: #212529;
    --whatsapp: #25D366;
    --upi: #5f259f;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    border: none;
}

.btn-instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #f09433);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-upi {
    background: var(--upi);
    color: var(--white);
}

.btn-upi:hover {
    background: #4a1d7a;
}

.btn-razorpay {
    background: #2b83ea;
    color: var(--white);
}

.btn-razorpay:hover {
    background: #1a6bc9;
}

.btn-nav {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-image: url('../images/wix/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Stats Section ===== */
.stats {
    background: var(--primary);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ===== Trips Section ===== */
.trips-section {
    padding: 80px 0;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.trip-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.trip-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.trip-card:hover .trip-image img {
    transform: scale(1.1);
}

.trip-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.trip-content {
    padding: 20px;
}

.trip-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.trip-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.trip-location i {
    color: var(--secondary);
    margin-right: 5px;
}

.trip-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.trip-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.trip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.trip-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.center-btn {
    text-align: center;
}

/* ===== Why Us Section ===== */
.why-us {
    padding: 80px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 0;
    background: var(--light);
}

.testimonials .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.rating-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray);
}

.testimonial-stars {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 0;
    color: var(--dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: #aaa;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
}

.upi-id-display {
    background: var(--primary);
    padding: 10px 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1rem;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--whatsapp);
    color: var(--white);
    width: auto;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #128C7E;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== Filter Section ===== */
.filter-section {
    padding: 30px 0;
    background: var(--light);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* ===== Trip Detail Page ===== */
.trip-hero {
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 100px 20px 60px;
}

.trip-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.trip-badge-large {
    display: inline-block;
    background: var(--secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.trip-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.trip-hero-location {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.trip-hero-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-person {
    font-size: 1rem;
    opacity: 0.8;
}

/* Trip Details Layout */
.trip-details {
    padding: 60px 0;
}

.trip-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.overview-card {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

.overview-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.overview-card .label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.overview-card .value {
    font-weight: 700;
    color: var(--dark);
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light);
}

.content-section p {
    margin-bottom: 15px;
    color: var(--gray);
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlights-list i {
    color: var(--accent);
}

/* Accordion */
.itinerary-accordion {
    border: 1px solid #eee;
    border-radius: var(--radius);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--light);
}

.day-badge {
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.accordion-header h3 {
    flex: 1;
    font-size: 1.1rem;
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 0 20px 20px 20px;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-content ul {
    padding-left: 50px;
}

.accordion-content li {
    margin-bottom: 10px;
    color: var(--gray);
}

/* Includes/Excludes */
.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.includes-box,
.excludes-box {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
}

.includes-box h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.excludes-box h3 {
    color: #e74c3c;
    margin-bottom: 15px;
}

.includes-box li,
.excludes-box li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.includes-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.excludes-box li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

/* Things to Carry */
.carry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.carry-item {
    background: var(--light);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
}

.carry-item i {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Booking Sidebar */
.booking-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
    margin-bottom: 20px;
}

.booking-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.original-price {
    text-decoration: line-through;
    color: var(--gray);
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.discount {
    background: #27ae60;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.total-price {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.quick-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.quick-contact p {
    margin-bottom: 10px;
    color: var(--gray);
}

/* UPI Card */
.upi-card {
    background: linear-gradient(135deg, #5f259f 0%, #3a1a5c 100%);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.upi-card h4 {
    margin-bottom: 15px;
}

.upi-card .upi-id {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.upi-card .btn {
    margin-top: 10px;
}

/* ===== Checkout Page ===== */
.checkout-header {
    padding-bottom: 40px;
}

.checkout-section {
    padding: 40px 0 80px;
    background: var(--light);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

.checkout-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.checkout-card h2 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Payment Options */
.payment-option {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.payment-option.primary-payment {
    border: 2px solid var(--upi);
    background: linear-gradient(to bottom, #f9f5ff, var(--white));
}

.payment-option h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.payment-desc {
    color: var(--gray);
    margin-bottom: 15px;
}

.upi-payment-box {
    text-align: center;
}

.upi-id-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--light);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.upi-id-large .label {
    color: var(--gray);
}

.upi-id-large .upi-value {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: monospace;
    color: var(--upi);
}

.copy-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.upi-buttons {
    margin-bottom: 20px;
}

.upi-apps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.upi-instructions {
    background: #fff8e1;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.upi-instructions p {
    margin-bottom: 10px;
}

.upi-instructions ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.upi-instructions li {
    margin-bottom: 5px;
    color: var(--gray);
}

.powered-by {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Summary Sidebar */
.summary-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.summary-card h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.summary-trip {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.summary-img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.summary-trip-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.summary-trip-info p {
    font-size: 0.85rem;
    color: var(--gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.summary-row.discount {
    color: var(--accent);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    padding-top: 15px;
    border-top: 2px solid var(--primary);
    margin-top: 15px;
}

.summary-note {
    display: flex;
    gap: 10px;
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.summary-note i {
    color: var(--secondary);
}

.support-card {
    background: var(--primary);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.support-card h4 {
    margin-bottom: 5px;
}

.support-card p {
    opacity: 0.9;
    margin-bottom: 15px;
}

.call-text {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Copy UPI Button */
.copy-upi {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.copy-upi:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== Form Validation & Payment Lock States ===== */
.details-required {
    border: 3px solid #e74c3c !important;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.3) !important;
    animation: pulse-red 2s infinite;
}

.details-required h2 {
    color: #e74c3c !important;
}

.details-required h2::after {
    content: ' (Required)';
    font-size: 0.7em;
    color: #e74c3c;
    font-weight: normal;
}

@keyframes pulse-red {
    0%, 100% { box-shadow: 0 0 20px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 0 30px rgba(231, 76, 60, 0.5); }
}

.details-completed {
    border: 3px solid #27ae60 !important;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.2) !important;
}

.details-completed h2 {
    color: #27ae60 !important;
}

.details-completed h2::after {
    content: ' ✓';
    color: #27ae60;
}

.payment-section-locked {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
    filter: grayscale(50%);
}

.payment-section-locked::before {
    content: '🔒 Fill your details above to unlock payment';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10;
    text-align: center;
    white-space: nowrap;
}

.payment-section-unlocked {
    opacity: 1;
    pointer-events: auto;
    filter: none;
    transition: all 0.3s ease;
}

.support-locked {
    opacity: 0.5;
    pointer-events: none;
}

.input-error {
    border-color: #e74c3c !important;
    background: #fdf2f2 !important;
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-error i {
    font-size: 0.8rem;
}

/* ===== Submit Details Button & Success Message ===== */
#submitDetailsBtn {
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

#submitDetailsBtn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.submit-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 10px;
}

.submit-note i {
    color: #27ae60;
}

.submit-success {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: var(--radius);
    margin-top: 20px;
}

.submit-success i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 15px;
}

.submit-success h3 {
    color: #155724;
    margin-bottom: 10px;
}

.submit-success p {
    color: #155724;
}

/* Payment Revealed Animation */
.payment-revealed {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
