@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Colors */
    --brand-orange: #FF7F50;
    --brand-light-orange: #ff9a78; /* Your requested color */
    --brand-dark: #2C3E50;
    --brand-cream: #FDF5E6;
    --white: #ffffff;
    
    /* UI Variables */
    --shadow-card: 0 15px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
    --radius-lg: 20px;
    --radius-sm: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--brand-dark);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 { font-weight: 700; letter-spacing: -0.5px; }
a { text-decoration: none; transition: 0.3s ease; }
.btn-call-us {
    background-image: linear-gradient(45deg, var(--primary) 0%, #ff9a78 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 14px 35px;
    border-radius: 50rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 127, 80, 0.4);
}
/* --- 1. PREMIUM NAVBAR --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.navbar-brand span { font-weight: 800; font-size: 1.5rem; color: var(--brand-dark); }
.logo-tagline { font-size: 12px; color: var(--brand-orange); text-align: right; font-weight: 400; display: block; line-height: 1; }
.nav-link { font-weight: 600; color: var(--brand-dark) !important; margin: 0 8px; font-size: 0.95rem; }
.nav-link:hover { color: var(--brand-orange) !important; }

/* The Requested #ff9a78 Button */
.btn-premium {
    background: linear-gradient(135deg, var(--brand-light-orange), #ff7f50);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.3);
    transition: all 0.3s ease;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 127, 80, 0.5);
}

/* --- 2. HERO SECTION WITH FORM --- */
.hero-wrapper {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover; background-position: center;
    min-height: 90vh;
    display: flex; align-items: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(44, 62, 80, 0.4) 0%, rgba(44, 62, 80, 0.4) 100%);
}
.hero-content { position: relative; z-index: 2; color: white; }
.hero-heading { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Floating Booking Card */
.booking-card {
    background: white;
    padding: 30px;
     color: #2c3e50;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border-top: 5px solid var(--brand-orange);
}
.form-floating label { font-size: 0.85rem; font-weight: 500; color: #888; }
.form-control { border: 2px solid #eee; border-radius: 10px; padding: 10px; font-weight: 600; }
.form-control:focus { border-color: var(--brand-light-orange); box-shadow: none; }

/* Day Calculator Badge */
.days-badge {
    background: #e8f5e9; color: #2e7d32; font-weight: 700;
    padding: 8px 15px; border-radius: 50px; display: inline-block; margin-top: 10px;
    font-size: 0.9rem; border: 1px solid #c8e6c9;
}

/* --- 3. USP CARDS --- */
.section-padding { padding: 90px 0; }
.bg-cream { background-color: var(--brand-cream); }

.usp-card {
    background: white; padding: 40px 30px; border-radius: var(--radius-lg);
    text-align: center; border: 1px solid rgba(0,0,0,0.02);
    box-shadow: var(--shadow-card); transition: 0.4s; height: 100%;
}
.usp-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--brand-orange); }
.usp-icon-wrapper {
    width: 80px; height: 80px; margin: 0 auto 20px;
    background: #FFF0EB; color: var(--brand-orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
    transition: 0.5s;
}
.usp-card:hover .usp-icon-wrapper { background: var(--brand-orange); color: white; transform: rotateY(180deg); }

/* --- 4. GALLERY & VIDEO --- */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 15px;
}
.gallery-item img {
    width: 100%; height: 250px; object-fit: cover; border-radius: 15px;
    transition: 0.4s; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gallery-item:hover img { transform: scale(1.03); }

/* --- 5. TESTIMONIALS (Postcards) --- */
.testimonial-card {
    background: white; padding: 30px; border-radius: 0;
    border: 8px solid white; outline: 1px dashed #ccc; /* Stamp look */
    box-shadow: var(--shadow-card); margin: 15px; position: relative;
}
.stamp {
    position: absolute; top: 15px; right: 15px; width: 40px; height: 50px;
    border: 2px dotted #ddd; display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; color: #ccc; transform: rotate(10deg);
}
.testi-img {
    margin-right: 1rem !important;
    width: 50px;
    height: 52px;
    border-radius: 50%;
}

/* --- 6. PICK & DROP STRIP (Attractive) --- */
.pick-drop-strip {
    background: linear-gradient(45deg, #2C3E50, #1a252f);
    padding: 60px 0; color: white; position: relative; overflow: hidden;
}
.pick-drop-strip::before {
    content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%;
    background: rgba(255,255,255,0.05); transform: rotate(20deg);
}

/* --- 7. FAQ ACCORDION --- */
.accordion-item { border: none; margin-bottom: 10px; border-radius: 12px !important; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.accordion-button { font-weight: 600; padding: 18px; }
.accordion-button:not(.collapsed) { background: #fff3e0; color: var(--brand-dark); box-shadow: none; }
.accordion-button:focus { box-shadow: none; }

/* --- 8. FOOTER --- */
/* --- 8. FOOTER (Matches Reference Design) --- */
footer {
    background-color: #2C3E50; /* Dark Navy Blue */
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    text-align: center;
}

footer h2 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

footer .lead {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

footer .btn-footer {
    background: linear-gradient(135deg, #ff9a78, #ff7f50);
    color: white !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 127, 80, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

footer .btn-footer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 127, 80, 0.5);
}

footer .footer-social-links {
    margin-top: 30px;
}

footer .footer-social-links a {
    color: rgba(255,255,255,0.6);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: 0.3s;
}

footer .footer-social-links a:hover {
    color: #ff9a78;
    transform: scale(1.2);
}

footer .border-top {
    border-color: rgba(255,255,255,0.1) !important;
    margin-top: 50px;
    padding-top: 20px;
}

/* --- 9. MOBILE STICKY BAR --- */
.mobile-sticky {
    display: none; position: fixed; bottom: 0; left: 0; width: 100%;
    background: white; padding: 10px; z-index: 9999; box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
@media(max-width: 768px) {
    .hero-wrapper {
    padding: 120px 0 100px;
    }
    .mobile-sticky { display: flex; gap: 10px; }
    body { padding-bottom: 70px; } /* Space for sticky bar */
    .hero-heading { font-size: 1.8rem; }
    .booking-card { padding: 20px; margin-top: 30px; }
}