/* ================================================================
   style-3.css — Tamil Nadu Package Page Specific Styles
   Page: tamilnadu.php  (and reusable for other package pages)

   USES from main.css (do NOT duplicate):
   ✔ :root variables
   ✔ .arun_example-section-label / heading / sub
   ✔ .arun_example-btn, btn-fill, btn-teal-outline
   ✔ .arun_example-reveal + delay classes
   ✔ .arun_example-cta, .arun_example-cta-btn
   ✔ .arun_about-breadcrumb  (defined in style-2.css, reused here)

   NEW classes defined here (package pages only):
   – .arun_pkg-banner
   – .arun_pkg-intro-bar
   – .arun_pkg-destinations
   – .arun_pkg-card  (the destination card)
   – .arun_pkg-cta-phones
================================================================ */

/* ---------------------------------------------------------------
   PAGE BANNER  (reusable for all package pages via --banner-img)
--------------------------------------------------------------- */
.arun_pkg-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.arun_pkg-banner-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(40, 22, 108, 0.92) 0%, rgba(17, 24, 32, 0.55) 55%, rgba(0, 146, 221, 0.22) 100%),
        var(--banner-img, url('../img/tamil.jpg')) center / cover no-repeat;
    animation: pkgBannerZoom 20s ease-in-out infinite alternate;
}

@keyframes pkgBannerZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.arun_pkg-banner-inner {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px;
    color: var(--white);
}

.arun_pkg-banner-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin: 8px 0 16px;
}

.arun_pkg-banner-title em {
    font-style: italic;
    color: var(--saffron-lt);
}

.arun_pkg-banner-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    line-height: 1.72;
    font-weight: 300;
    margin-bottom: 28px;
}

/* Quick stats row inside banner */
.arun_pkg-banner-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.arun_pkg-banner-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.arun_pkg-banner-stat i {
    color: var(--saffron-lt);
    font-size: 0.9rem;
}

/* ---------------------------------------------------------------
   INTRO BAR  (description + call buttons row)
--------------------------------------------------------------- */
.arun_pkg-intro-bar {
    background: var(--white);
    border-bottom: 1px solid #EDF0F6;
    padding: 26px 0;
}

.arun_pkg-intro-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--mid);
    margin: 0;
}

/* ---------------------------------------------------------------
   DESTINATIONS SECTION
--------------------------------------------------------------- */
.arun_pkg-destinations {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

/* ---------------------------------------------------------------
   DESTINATION CARD
--------------------------------------------------------------- */
.arun_pkg-card {
    background: var(--white);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid #EDF2F7;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arun_pkg-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(40, 22, 108, 0.13);
}

/* Image wrapper */
.arun_pkg-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 195px;
    flex-shrink: 0;
}

.arun_pkg-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.arun_pkg-card:hover .arun_pkg-card-img-wrap img {
    transform: scale(1.08);
}

/* Gradient overlay on image */
.arun_pkg-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40, 22, 108, 0.45) 0%, transparent 60%);
    transition: opacity 0.3s;
}

/* Category tag badge */
.arun_pkg-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 50px;
    z-index: 2;
}

/* Card body */
.arun_pkg-card-body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.arun_pkg-card-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
    line-height: 1.2;
}

.arun_pkg-card-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: var(--mid);
    margin-bottom: 14px;
    flex: 1;
}

/* Book Now button */
.arun_pkg-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: transparent;
    color: var(--saffron);
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 0;
    border: none;
    border-bottom: 2px solid var(--saffron);
    border-radius: 0;
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.arun_pkg-card-btn:hover {
    color: var(--saffron-dk);
    border-color: var(--saffron-dk);
    gap: 10px;
}

.arun_pkg-card-btn i {
    font-size: 0.8rem;
}

/* ---------------------------------------------------------------
   CTA PHONE LINKS  (inside .arun_example-cta band)
--------------------------------------------------------------- */
.arun_pkg-cta-phones {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.arun_pkg-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s, border-color 0.2s;
}

.arun_pkg-cta-phone i {
    font-size: 0.85rem;
}

.arun_pkg-cta-phone:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--white);
}

/* ---------------------------------------------------------------
   RESPONSIVE TWEAKS
--------------------------------------------------------------- */
@media (max-width: 767px) {
    .arun_pkg-card-img-wrap {
        height: 160px;
    }

    .arun_pkg-card-name {
        font-size: 1rem;
    }

    .arun_pkg-card-desc {
        font-size: 0.79rem;
    }

    .arun_pkg-banner-stats {
        gap: 10px;
    }

    .arun_pkg-banner-stat {
        font-size: 0.78rem;
        padding: 7px 14px;
    }
}

@media (max-width: 400px) {
    .arun_pkg-card-img-wrap {
        height: 180px;
    }
}