/* ============================================
   INDEX.CSS — Shaurya Travel Landing Page
   ============================================ */

/* ---------- FLOATING CONTACT BUTTONS ---------- */
.floating-btn {
    position: fixed;
    bottom: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.floating-phone {
    left: 24px;
    background: #02245b;
}

.floating-whatsapp {
    right: 24px;
    background: #25d366;
}

@media (max-width: 480px) {
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        bottom: 16px;
    }
    .floating-phone { left: 16px; }
    .floating-whatsapp { right: 16px; }
}

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: #1a2639;
    background: #fafcfd;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 150px;
    height: auto;
    display: block;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- HEADER ---------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    transition: background 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #02245b;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.main-nav a {
    color: rgba(2, 36, 91, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #02245b;
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d44c4c;
    border-radius: 2px;
}

.nav-cta {
    background: #d44c4c;
    color: #fff !important;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
    background: #b33a3a;
    transform: translateY(-2px);
    color: #fff !important;
}

.nav-cta.active::after {
    display: none !important;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: #02245b;
    border-radius: 4px;
    transition: 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO - FULL WIDTH TEXT ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('img/chardham-yatra-by-Helicopter.webp') center/cover no-repeat;
    color: #fff;
    padding: 120px 24px 80px;
    margin-top: 0;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 36, 91, 0.85) 0%, rgba(2, 36, 91, 0.45) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.badge-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 100%;
}

.hero h1 .highlight {
    color: #f3a683;
}

.hero p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    opacity: 0.9;
    max-width: 100%;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-actions .btn {
    flex: 0 1 auto;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 28px;
}

.hero-stats div {
    font-size: 0.95rem;
    opacity: 0.85;
}

.hero-stats span {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    opacity: 1;
    color: #fff;
}

/* ---------- UTILITY ---------- */
.highlight {
    color: #d44c4c;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: #d44c4c;
    color: #fff;
    border-color: #d44c4c;
}

.btn-primary:hover {
    background: #b33a3a;
    border-color: #b33a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 76, 76, 0.25);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline.small {
    padding: 6px 18px;
    font-size: 0.85rem;
    color: #1a2639;
    border-color: #d44c4c;
}

.btn-outline.small:hover {
    background: #d44c4c;
    color: #fff;
}

/* ---------- ENQUIRY STRIP ---------- */
.enquiry-strip {
    background: #fff;
    padding: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid #eee;
}

.enquiry-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.enquiry-text h3 {
    font-size: 1.2rem;
    margin-bottom: 2px;
    color: #02245b;
}

.enquiry-text h3 i {
    color: #d44c4c;
    margin-right: 8px;
}

.enquiry-text p {
    color: #4a5568;
    font-size: 0.9rem;
}

.enquiry-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    flex: 1 1 560px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1 1 auto;
}

.enquiry-form input {
    flex: 1 1 130px;
    padding: 8px 14px;
    border: 1px solid #dce1e9;
    border-radius: 50px;
    font-size: 0.85rem;
    background: #f8fafc;
    transition: 0.2s;
    min-width: 120px;
    height: 40px;
}

.enquiry-form input:focus {
    outline: none;
    border-color: #d44c4c;
    box-shadow: 0 0 0 3px rgba(212, 76, 76, 0.15);
}

.enquiry-form button {
    flex: 0 0 auto;
    padding: 8px 24px;
    font-size: 0.85rem;
    height: 40px;
    white-space: nowrap;
}

/* ---------- PACKAGES ---------- */
.packages {
    padding: 80px 0 70px;
    background: #f9fbfd;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.section-header .subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d44c4c;
    font-weight: 600;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 8px 0 12px;
    font-weight: 700;
}

.section-header p {
    color: #4a5568;
    font-size: 1.05rem;
}

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

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}

.package-body {
    padding: 26px 22px 26px;
}

.package-tag {
    display: inline-block;
    background: #02245b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.package-body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.package-body p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.package-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #2d3748;
    margin-bottom: 18px;
}

.package-meta i {
    color: #d44c4c;
    width: 18px;
}

/* ---------- FEATURES ---------- */
.features {
    padding: 70px 0 60px;
    background: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2.8rem;
    color: #d44c4c;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #02245b;
}

.feature-item p {
    color: #4a5568;
    font-size: 0.95rem;
    max-width: 260px;
    margin: 0 auto;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
    padding: 70px 0;
    background: #f0f4f9;
}

.testimonial-box {
    max-width: 780px;
    margin: 0 auto;
    background: #fff;
    padding: 44px 50px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2.2rem;
    color: #d44c4c;
    opacity: 0.25;
    margin-bottom: 10px;
}

.testimonial-box blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    color: #1a2639;
    margin: 10px 0 16px;
}

.testimonial-box cite {
    font-style: normal;
    font-weight: 600;
    color: #02245b;
}

.testimonial-box cite span {
    font-weight: 400;
    color: #4a5568;
    font-size: 0.9rem;
}

.stars {
    margin-top: 12px;
    color: #f6b83e;
    letter-spacing: 4px;
    font-size: 1.1rem;
}

/* ---------- FORM ALERTS ---------- */
.form-alert {
    max-width: 780px;
    margin: 0 auto 30px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert i {
    font-size: 1.1rem;
}

.form-alert-success {
    background: rgba(37, 211, 102, 0.12);
    color: #1a7d43;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-alert-error {
    background: rgba(212, 76, 76, 0.10);
    color: #b33a3a;
    border: 1px solid rgba(212, 76, 76, 0.3);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: 80px 0 70px;
    background: #f9fbfd;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #d44c4c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-size: 1rem;
    color: #02245b;
    margin-bottom: 4px;
}

.contact-details p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .full-width {
    grid-column: 1 / -1;
}

.contact-form .form-group {
    margin-bottom: 0;
    position: relative;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dce1e9;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #f8fafc;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #d44c4c;
    box-shadow: 0 0 0 3px rgba(212, 76, 76, 0.10);
}

/* ---------- CUSTOM SELECT (Package dropdown) ---------- */
.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #1a2639;
    padding-right: 42px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M1 1L7 7L13 1' stroke='%2302245b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 13px 8px;
}

.contact-form select:hover {
    border-color: #d44c4c;
}

.contact-form select:focus {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M1 1L7 7L13 1' stroke='%23d44c4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.contact-form select:invalid,
.contact-form select option[value=""] {
    color: #6b7280;
}

.contact-form select option {
    color: #1a2639;
    background: #fff;
    padding: 10px;
}

.contact-form textarea {
    resize: vertical;
}

/* ---------- INLINE FIELD ERRORS ---------- */
.field-error {
    display: none;
    align-items: center;
    gap: 6px;
    color: #d44c4c;
    font-size: 0.78rem;
    margin-top: 6px;
    line-height: 1.3;
}

.field-error.show {
    display: flex;
}

.field-error i {
    font-size: 0.85rem;
}

.contact-form .form-group.has-error input {
    border-color: #d44c4c;
    background: rgba(212, 76, 76, 0.05);
}

.contact-form .form-group.has-error input:focus {
    box-shadow: 0 0 0 3px rgba(212, 76, 76, 0.15);
}

.contact-form .btn {
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

/* ---------- FOOTER ---------- */
.footer {
    background: #02245b;
    color: #d0dcec;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 8px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 1.1rem;
}

.footer p {
    font-size: 0.95rem;
    margin-bottom: 6px;
    opacity: 0.85;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul a {
    opacity: 0.8;
    transition: 0.2s;
}

.footer ul a:hover {
    opacity: 1;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    transition: 0.2s;
    color: #d0dcec;
}

.social-icons a:hover {
    background: #d44c4c;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 992px) {
    .main-nav ul {
        gap: 20px;
    }

    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #02245b;
        padding: 80px 32px 32px;
        transition: right 0.3s ease;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .main-nav a {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: #fff;
    }

    .main-nav a.active::after {
        background: #fff;
    }

    .nav-cta {
        padding: 10px 32px;
        background: #d44c4c;
        color: #fff !important;
    }

    .nav-cta:hover {
        background: #b33a3a;
        color: #fff !important;
    }

    .hero {
        min-height: 80vh;
        padding: 100px 16px 40px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        gap: 20px;
        padding-top: 20px;
    }

    .hero-stats span {
        font-size: 1.3rem;
    }

    .enquiry-grid {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .enquiry-form {
        flex-direction: column;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        width: 100%;
    }

    .enquiry-form input {
        flex: 1 1 auto;
        width: 100%;
        min-width: unset;
        height: 44px;
    }

    .enquiry-form button {
        width: 100%;
        justify-content: center;
        height: 44px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-box {
        padding: 28px 20px;
    }

    .testimonial-box blockquote {
        font-size: 1rem;
    }

    .testimonial-box {
        margin: 0 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-icons {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .feature-item i {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .feature-item h4 {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .feature-item p {
        font-size: 0.75rem;
        max-width: 100%;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form .full-width {
        grid-column: 1;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-info {
        gap: 16px;
    }

    .contact-item {
        padding: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-img {
        width: 150px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 70vh;
        padding: 80px 16px 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
        border-top: none;
        padding-top: 0;
    }

    .hero-stats div {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
    }

    .hero-stats span {
        display: inline;
        font-size: 1.2rem;
    }

    .badge-tag {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .package-body h3 {
        font-size: 1.1rem;
    }

    .package-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .container {
        padding: 0 16px;
    }

    .footer h3 {
        font-size: 1.2rem;
    }

    .footer p {
        font-size: 0.85rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo-img {
        width: 70px;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .enquiry-form input {
        font-size: 0.85rem;
        padding: 8px 12px;
        height: 38px;
    }

    .enquiry-form button {
        height: 38px;
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}


/* ============================================
   ADDITIONS — append to card.css
   Covers: horizontal package carousel, captcha UI,
   honeypot field, and form alert banners.
   ============================================ */

/* ---------- FORM ALERTS ---------- */
.form-alert {
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-alert i {
    font-size: 1.1rem;
}

.form-alert-success {
    background: rgba(37, 211, 102, 0.12);
    color: #1a7d43;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-alert-error {
    background: rgba(212, 76, 76, 0.10);
    color: #b33a3a;
    border: 1px solid rgba(212, 76, 76, 0.3);
}

/* ---------- PACKAGE CAROUSEL ---------- */
.package-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.package-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.package-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.package-card-h {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    min-height: 280px;
}

.package-card-h-img {
    flex: 0 0 42%;
    background-size: cover;
    background-position: center;
    min-height: 260px;
}

.package-card-h-body {
    flex: 1 1 auto;
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.package-card-h-body h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-card-h-body p {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 18px;
}

.package-card-h-body .package-meta {
    margin-bottom: 22px;
}

.carousel-arrow {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #02245b;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2;
}

.carousel-arrow:hover {
    background: #d44c4c;
    color: #fff;
    transform: scale(1.06);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #dce1e9;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
    background: #d44c4c;
    transform: scale(1.2);
}

/* ---------- CAPTCHA ---------- */
.captcha-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-img {
    border-radius: 8px;
    border: 1px solid #dce1e9;
    display: block;
    background: #f8fafc;
}

.captcha-refresh {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid #dce1e9;
    background: #f8fafc;
    color: #02245b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.captcha-refresh:hover {
    background: #d44c4c;
    color: #fff;
    transform: rotate(90deg);
}

.captcha-group input[type="text"] {
    flex: 1 1 180px;
    height: 48px;
    box-sizing: border-box;
    align-self: center;
}

/* ---------- HONEYPOT (hidden from real users, visible to bots) ---------- */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .package-card-h {
        flex-direction: column;
        min-height: 0;
    }

    .package-card-h-img {
        flex: 0 0 200px;
        min-height: 200px;
    }

    .package-card-h-body {
        padding: 24px 22px 28px;
    }

    .package-card-h-body h3 {
        font-size: 1.2rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .captcha-group input[type="text"] {
        width: 100%;
        height: 48px;
        box-sizing: border-box;
        align-self: stretch;
    }
}