
:root{
    --bg-1: #fffaf6;
    --bg-2: #fff5f0;
    --accent-1: #ffd08a;
    --accent-2: #ffd7c2;
    --muted: #6b6b6b;
    --card-bg: #ffffff;
    --glass: rgba(255,255,255,0.7);
    --radius: 14px;
    --shadow-soft: 0 8px 30px rgba(18,34,50,0.06);
}

html, body {
    height: 100%;
    font-family: 'Inter', sans-serif !important;
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 3rem;
}


/* NAVBAR */
/* Full navbar container */
.classy-nav {
    position: fixed !important;
    top: 12px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 1200px;

    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    padding: 12px 0;
    border-radius: 18px;
    box-shadow: 0 6px 26px rgba(0,0,0,0.08);

    transition:
            background 0.35s ease,
            box-shadow 0.35s ease,
            transform 0.35s ease;
    z-index: 9999;
}
/* Solid on scroll */
.classy-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 45px rgba(0,0,0,0.18);
    transform: translateX(-50%) translateY(-4px);
}
@media (max-width: 992px) {
    .classy-nav {
        top: 0 !important;
        left: 0 !important;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

    body {
        padding-top: 80px;
    }
}

.dropdown-menu{
    z-index: 99999 !important;
}
/* Brand */
.classy-brand {
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.classy-brand img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    /*box-shadow: 0 4px 16px rgba(0,0,0,0.15);*/
}

.brand-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #062428;
}

.brand-sub {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Nav links */
.classy-link {
    color: #21303a !important;
    font-weight: 600;
    padding: 8px 14px !important;
    border-radius: 10px;
    transition: all .25s ease;
}

.classy-link:hover {
    background: rgba(0,0,0,0.06);
    color: #062428 !important;
    transform: translateY(-2px);
}

/* CTA button */
.btn-ticket-nav {
    background: linear-gradient(90deg, #ffb88c, #ffc8a8);
    padding: 8px 16px;
    border-radius: 12px;
    color: #222;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255,170,80,0.25);
    transition: transform .2s ease;
}

.btn-ticket-nav:hover {
    transform: translateY(-3px);
}

/* Mobile toggle */
.classy-toggler {
    border: none;
    font-size: 1.7rem;
}

.classy-toggler i {
    color: #062428;
}

/* Cart badge */
.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff6b6b;
    color: white;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

/* Mobile */
@media (max-width: 992px){
    .classy-nav {
        border-radius: 0;
        margin: 0;
    }
    .navbar-nav {
        padding: 14px 0;
    }
    .btn-ticket-nav {
        margin-top: 10px;
    }
}

/* HERO */
/* ---------- HERO ROOT ---------- */
.hero {
    position: relative;
    margin: 24px;
    border-radius: 18px;
    overflow: hidden;
    color: #fff;
    background-image: url("https://www.docsdriveintheatre.com/public/custom/images/home-banner-new.png");
    background-size: cover;
    background-position: center;
    padding: 72px 18px;
}

@media (min-width: 768px) { .hero { padding: 100px 28px; } }
@media (min-width: 1200px) { .hero { padding: 120px 48px; } }

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (min-width: 992px) {
    .hero-inner {
        flex-direction: row;
        align-items: center;
    }
}

.hero-left { flex: 1 1 60%; }

/* ========================
   TYPING WIDTH STABILIZER
=========================== */
.typing-wrap {
    display: inline-block;
    position: relative;
    max-width: 100%; /* prevent overflow */
}

.typing-measure {
    visibility: hidden;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.typing {
    display: inline-block;
    padding-right: 8px;
    border-right: 3px solid rgba(255,255,255,0.95);
    box-sizing: content-box;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.8rem); /* responsive font */
    line-height: 1.2;
    word-break: break-word;
}

.hero h1 {
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}

.hero p.lead {
    margin: 14px 0 22px;
    color: rgba(255,255,255,0.92);
    max-width: 70ch;
}

/* CTAs */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-cta {
    padding: 10px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: transform .12s ease, box-shadow .12s ease;
}

.btn-primary {
    background: linear-gradient(90deg,#ffbe94,#ffcfae);
    color: #111;
    box-shadow: 0 10px 26px rgba(255,176,64,0.12);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.24);
    color: #fff;
}

.btn-cta:hover { transform: translateY(-3px); }

.hero .note {
    margin-top: 16px;
    color: rgba(255,255,255,0.85);
    font-size: .92rem;
}

/* FEATURED CAROUSEL (top of Upcoming Showings) */
.featured {
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom: 18px;
}
.featured-card{
    border-radius:16px;
    overflow:hidden;
    min-height: 420px;
    background: linear-gradient(180deg,#fff,#fff);
    box-shadow: var(--shadow-soft);
    display:flex;
    align-items:flex-end;
    padding:18px;
    position:relative;
    transition: transform .35s ease;
    width:100%;
}
.featured-card img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain !important; opacity:0.95; transform: scale(1.02); }
.featured-card .meta{
    position:relative;
    z-index:2;
    color:#000;
    text-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.carousel-controls{
    display:flex;
    gap:10px;
    align-items:center;
    margin-left:12px;
}
.carousel-controls button{
    background:#fff;
    border:none;
    width:44px;
    height:44px;
    border-radius:10px;
    box-shadow: var(--shadow-soft);
    display:flex;
    align-items:center;
    justify-content:center;
}

/* GRID of upcoming showings */
.showing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
    .showing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 column */
@media (max-width: 600px) {
    .showing-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.movie-card-1{
    background:var(--card-bg);
    border-radius:14px;
    padding:12px;
    box-shadow: var(--shadow-soft);
    transition: transform .28s ease, box-shadow .28s ease;
    overflow:hidden;
    position:relative;
}
.movie-card {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: var(--card-bg, #fff);
    border-radius: 14px;
    box-shadow: var(--shadow-soft, 0 4px 12px rgba(0,0,0,0.08));
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.movie-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27,48,60,0.09);
}
.movie-card img{ width:100%; border-radius:10px;
    height: 100%;
    object-fit:cover;
    display:block;
    margin-bottom:12px;
}
.movie-card h5{ margin:0;
    font-size:1.05rem;
    font-weight:700;
    color:#0f2529;
}
.movie-meta{ color:var(--muted);
    font-weight:600;
    margin-top:6px;
}
.movie-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.btn-ticket{
    border-radius:10px !important;
    padding:8px 12px !important;
    font-weight:700 !important;
    background: linear-gradient(90deg,var(--accent-1), #ffd5a8);
    border:none !important;
    color:#062428 !important;
    box-shadow: 0 8px 20px rgba(255,176,64,0.12);
}
.btn-info {
    border-radius:10px !important;
    padding:8px 10px !important;
    border:1px solid rgba(6,36,36,0.06) !important;
    background:transparent;
    color:#12303a !important;
}
/* about */
.about-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

/* tinyhome / private event card */


.private-card.cinematic {
    padding: 40px;
    border-radius: 20px;
    background: rgba(15, 15, 20, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45), 0 0 50px rgba(255,90,0,0.14);
    color: #fff;
    transition: transform .35s ease, box-shadow .35s ease;
}

.private-card.cinematic:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.55), 0 0 70px rgba(255,120,30,0.17);
}

/* Title */
.pc-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 14px;
    text-shadow: 0 0 16px rgba(255,140,70,0.35);
}

/* Text */
.pc-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #d1cfcf;
    margin-bottom: 22px;
}

/* List */
.pc-list {
    padding-left: 20px;
    margin-bottom: 28px;
    color: #f0ede9;
    font-size: .97rem;
}

.pc-list li {
    margin-bottom: 10px;
}

/* Button */
.pc-btn {
    padding: 12px 32px;
    background: linear-gradient(90deg,#ffbe94,#ffcfae);
    color: #000;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(255,90,0,0.25);
    border: none;
}

/* ---------------------------- */
/* Image Frame with Glow        */
/* ---------------------------- */


.zostel-hero {
    height: 65vh;
    min-height: 420px;

    overflow: hidden;
    position: relative;
}


.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to right,
            rgba(0,0,0,0.7),
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.15)
    );
}


.hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
}



.destination-card {
    border: 2px solid #fff;
}

.destination-card.active {
    border-color: #fff;
    opacity: 1;
}

.destination-slider::-webkit-scrollbar {
    display: none;
}

.destination-slider {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: right;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}


.destination-card {
    min-width: 130px;
    height: 170px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    opacity: 0.9;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    z-index: 2;
}
.destination-card.active {
    border: 2px solid #fff;
    opacity: 1;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
}

.destination-card span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .destination-slider {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .destination-slider {
        justify-content: flex-start;
    }

    .zostel-hero {
        border-radius: 16px;
    }
}



/* Newsletter */
/* Section base */

.newsletter-wrap {
    background: linear-gradient(120deg, #9ad9e6 0%, #fdd3c1 100%);
    position: relative;
    overflow: hidden;
}


.newsletter-wrap::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}


.newsletter-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    overflow: visible;
}



.newsletter-image-wrap {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    z-index: 2;
}


@keyframes floatImage {
    0%   { transform: translateY(-10px); }
    50%  { transform: translateY(10px); }
    100% { transform: translateY(-10px); }
}

.newsletter-image-wrap img {
    width: 80%;
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
    animation: floatImage 5s ease-in-out infinite;
}



.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}


.section-desc {
    font-size: 0.95rem;
    color: #555;
}


.floating-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-group input {
    width: 100%;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid #ddd;
    background: transparent;
    font-size: 0.95rem;
}

.floating-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    pointer-events: none;
    transition: 0.3s ease;
    background: #fff;
    padding: 0 6px;
}

.floating-group input:focus + label,
.floating-group input:valid + label {
    top: -6px;
    font-size: 0.75rem;
    color: #ff7a00;
}

.floating-group input:focus {
    outline: none;
    border-color: #ffb27a;
    box-shadow: 0 6px 18px rgba(255, 178, 122, 0.35);
}


.interest-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.interest-title {
    width: 100%;
    font-size: 0.8rem;
    color: #666;
}

.pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #ffc9a5;
    cursor: pointer;
    font-size: 0.8rem;
}

.pill input {
    display: none;
}

.pill:has(input:checked) {
    background: #ffb27a;
    font-weight: 600;
}


.btn-submit {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff9f5a, #ffd2a8);
    box-shadow: 0 12px 30px rgba(255, 159, 90, 0.45);
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .newsletter-image-wrap {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 25px;
    }
}


/* Footer */
.footer {
    background: linear-gradient(180deg, #0f2027, #2c5364);
    color: #fff;
    padding: 60px 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.footer a {
    color: #ffd796;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffbe94;
}

.footer-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
}

.footer-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
}

/* Responsive tweaks */
@media (max-width: 768px){
    .footer {
        text-align: center;
    }
    .footer .row > div {
        margin-bottom: 24px;
    }
    .d-flex.gap-2 {
        justify-content: center !important;
    }
}


/**********santa-details************************/
/* MOVIE CARD CONTAINER */
.movie-card {
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    padding: 24px;
    transition: 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* POSTER FIX — FULLY VISIBLE, NOT CROPPED */
.poster {
    height: auto !important;
    overflow: visible !important;
}

.poster img {
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 18px;
    display: block;
}

/* TEXT STYLING */
.movie-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #d32f2f;
    margin-bottom: 5px;
}

.movie-time {
    color: #666;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;

    padding-left: 12px;
    margin-top: 25px;
    color: #333;
}

.cast-list {
    columns: 2;
    column-gap: 25px;
    color: #444;
    line-height: 1.5;
}

.info-label {
    font-weight: 700;
    color: #d32f2f;
}

.divider-line {
    border-bottom: 1px dashed #aaa;
    margin: 15px 0 25px;
}


.movie-card, .poster img {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/***************checkout page****************/

.cart-wrapper {
    max-width: 900px;
    margin: 2rem auto;
}

.cart-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cart-item {
    border-radius: 12px;
    background: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.cart-item:hover {
    transform: translateY(-2px);
}

.qty-box {
    display: inline-flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #e4e4e4;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 600;
    pointer-events: none;
}

.summary-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.summary-box h5 {
    font-weight: 700;
}

.grand-total {
    font-size: 1.5rem;
    color: #dc3545;
    font-weight: 700;
}

.btn-update, .btn-checkout {
    border-radius: 50px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
}

.btn-update {
    border: 1px solid #343a40;
}

.btn-checkout {
    background: #dc3545;
    color: #fff;
}

@media(max-width: 768px) {
    .cart-item .col-md-7 {
        margin-top: 1rem;
    }
}

/************ Tiny Home ************/

.tiny-hero-section {
    height: 100vh;
    background-image: url('assets/images/tinyhome-banner.jpg'); /* Make sure path is correct */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiny-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.tiny-hero-section .container {
    position: relative;
    z-index: 2;
}
.book-home{
    background-color: #ffd08a;
    color:black;
}
/***section themed home *****/

/* Heading */
.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main Card */
.neo-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 55px rgba(0,0,0,0.2);
    transition: transform .4s ease, box-shadow .4s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.neo-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 40px 90px rgba(0,0,0,0.35);
}

/* Image Area */
.neo-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.neo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .6s ease;
    transform: scale(1.1);
}

.neo-card:hover img {
    transform: scale(1.25) rotate(1deg);
    filter: brightness(1.2);
}

/* Ribbon Label */
.neo-ribbon {
    position: absolute;
    top: 15px;
    left: -10px;
    background: #ffd08a;
    color: #000;
    padding: 6px 18px;
    font-weight: 700;
    font-size: 0.9rem;
    transform: rotate(-4deg);
    box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

/* Content Section */
.neo-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.neo-content h5 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.neo-content p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Button */
.neo-btn {
    margin-top: auto;
    display: block;
    padding: 0.75rem;
    background: #000;
    color: #ffd08a;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s ease;
}

.neo-btn:hover {
    background: #ffd08a;
    color: #000;
    transform: scale(1.05);
}

/********** weewok village ********/

.weewok-features {
    background: #faf7f2;
    border-top: 6px solid #ffd47b;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: uppercase;
}

.intro-text {
    max-width: 700px;
    margin: auto;
    color: #555;
    font-size: 1.15rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .3s ease;
    height:100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: #f5ad2d;
}

.feature-card p {
    color: #666;
}


/**** faq section ***/
.faq-section {
    background: #faf8f3;
    padding: 80px 0;
}

/* CONTAINER */
.faq-container {
    max-width: 850px;
    margin: auto;
}

/* TITLE */
.faq-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* INTRO TEXT */
.faq-intro {
    color: #555;
    font-size: 1.05rem;
    max-width: 680px;
    margin: auto;
    line-height: 1.7;
}

/* ACCORDION ITEM */
.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: 0.25s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* FAQ BUTTON */
.faq-toggle {
    background: #fff;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 18px 20px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* When opened */
.faq-toggle:not(.collapsed) {
    border-left: 4px solid #e9b74c;
    background: #fff9e8;
    color: #111;
}

/* FAQ BODY */
.faq-body {
    background: #ffffff;
    padding: 18px 22px;
    font-size: 0.95rem;
    color: #444;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

/* BUTTONS */
.faq-btn-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.faq-btn {
    padding: 12px 32px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: 0.3s ease;
    border: none;
}

.faq-btn-dark {
    background: #222;
    color: #fff;
}

.faq-btn-dark:hover {
    background: #000;
}

.faq-btn-gold {
    background: #e9b74c;
    color: #000;
}

.faq-btn-gold:hover {
    background: #d7a63a;
}

/**************first-time-guide*************/

.guide {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.first-guide {
    font-family: 'Fredoka One', cursive;
    font-size: 3em;
    color: #b34e2e;
    margin-bottom: 10px;
    text-shadow: 2px 2px #fcd9b8;
}

.spot {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5em;
    color: #8b3a1c;
    margin-bottom: 5px;
}

p {
    font-size: 1em;
    color: #4b2e1f;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: center;
    background: #fbe7d2;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step:hover {
    transform: scale(1.03);
}

.step-number {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5em;
    background: #b34e2e;
    color: #fff8f0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.step-content {
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff8f0;
    background: #b34e2e;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.cta-button:hover {
    background: #8b3a1c;
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    .step-content {
        text-align: center;
        margin-top: 15px;
    }
}

     
 

   