/* ── HERO ── */
.hero-section {
    position: relative; width: 100%; height: 100vh;
    background-image: url('/assets/images/india-gate.avif');
    background-size: cover; background-position: center;
    overflow: hidden; color: white;
    transition: background-image 0.7s ease-in-out;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,25,47,0.95) 0%, rgba(10,25,47,0.6) 50%, rgba(10,25,47,0.18) 100%);
}
.hero-container {
    position: relative; z-index: 2; display: flex;
    height: 100%; align-items: center; padding: 0 5%; gap: 50px;
}
.hero-content { display: flex; flex: 1; gap: 40px; }
.slide-indicator { display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.dot {
    width: 6px; height: 6px; background: rgba(255,255,255,0.4);
    border-radius: 50%; cursor: pointer; transition: all 0.35s ease;
}
.dot.active { background: var(--gold); height: 26px; border-radius: 10px; }
.dot:hover { background: rgba(255,255,255,0.7); }

.text-box { max-width: 600px; }

/* ── HERO TITLE — letter animation ── */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5.2rem);
    font-weight: 700; line-height: 1.1; letter-spacing: 3px;
    margin-bottom: 20px;
    min-height: 1.1em; /* prevent layout jump */
}

/* Individual letter spans injected by carousel.js */
.title-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(90deg);
    animation: none;
}
.title-space { display: inline-block; width: .35em; }

/* Enter state — added by JS */
.hero-title.title-enter .title-char {
    animation: charIn 0.5s cubic-bezier(0.2, 0.8, 0.4, 1) both;
}

/* Exit state */
.hero-title.title-exit .title-char {
    animation: charOut 0.3s cubic-bezier(0.4, 0, 1, 1) both;
}

@keyframes charIn {
    from { opacity: 0; transform: translateY(40px) rotateX(90deg); }
    to   { opacity: 1; transform: translateY(0)    rotateX(0deg); }
}
@keyframes charOut {
    from { opacity: 1; transform: translateY(0)     rotateX(0deg); }
    to   { opacity: 0; transform: translateY(-25px) rotateX(-60deg); }
}

/* ── HERO DESC ── */
.hero-desc {
    font-size: clamp(0.88rem, 1.1vw, 1rem);
    line-height: 1.75; color: #cbd5e1; margin-bottom: 32px;
    opacity: 0; transform: translateY(18px);
    transition: none;
}
.hero-desc.desc-enter {
    animation: descIn 0.65s 0.05s cubic-bezier(0.2, 0.8, 0.4, 1) both;
}
.hero-desc.desc-exit {
    animation: descOut 0.28s cubic-bezier(0.4, 0, 1, 1) both;
}
@keyframes descIn  { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }
@keyframes descOut { from{opacity:1;transform:none} to{opacity:0;transform:translateY(-10px)} }

/* ── EXPLORE BUTTON ── */
.btn-explore {
    background: var(--gold); color: white; border: none;
    padding: 13px 32px; border-radius: 30px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    opacity: 0; transform: translateY(14px);
    transition: background 0.3s, box-shadow 0.3s;
}
.btn-explore.btn-enter {
    animation: descIn 0.6s 0.18s cubic-bezier(0.2, 0.8, 0.4, 1) both;
}
.btn-explore.btn-exit {
    animation: descOut 0.25s cubic-bezier(0.4, 0, 1, 1) both;
}
.btn-explore:hover { background: var(--gold-light); transform: translateX(5px); box-shadow: 0 6px 20px rgba(200,148,31,0.4); }
.btn-explore:active { transform: translateX(2px); }

/* Hero Cards */
.hero-cards { display: flex; gap: 16px; flex: 1.5; align-items: center; padding: 20px 0; overflow: hidden; }
.card {
    min-width: 185px; height: 270px; border-radius: 14px;
    background-size: cover; background-position: center;
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer; overflow: hidden; flex-shrink: 0;
}
.card::before {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 65%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); z-index: 1;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(0,0,0,0.45); }
.card.active {
    transform: translateY(-15px); height: 315px; min-width: 225px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    border: 2px solid var(--gold);
}
.card-icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 6px; display: block; }
.card-info { position: absolute; bottom: 14px; left: 14px; z-index: 2; color: white; }
.card-info h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.92rem; margin-bottom: 4px; font-weight: 700; }
.rating { color: var(--gold); font-size: 0.73rem; letter-spacing: 2px; }

/* Controls */
.hero-controls { position: absolute; bottom: 40px; right: 5%; display: flex; align-items: center; gap: 40px; z-index: 2; }
.slider-arrows { display: flex; gap: 10px; }
.arrow-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white; font-size: 1.1rem; cursor: pointer;
    backdrop-filter: blur(5px); transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.arrow-btn:hover { background: rgba(200,148,31,0.75); transform: scale(1.08); border-color: var(--gold); }
.arrow-btn:active { transform: scale(0.96); }
.slider-progress { display: flex; align-items: center; gap: 14px; font-family: 'Nunito Sans', sans-serif; font-size: 0.9rem; font-weight: 700; }
.progress-bar { width: 110px; height: 2.5px; background: rgba(255,255,255,0.2); border-radius: 5px; overflow: hidden; }
.progress-fill { width: 16.66%; height: 100%; background: var(--gold); transition: width 0.55s ease; }

/* ── SECTION LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--text); margin-bottom: 14px; font-weight: 700;
}
.section-title span { color: var(--gold); }
.section-title p { color: var(--muted); font-size: 1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Buttons */
.btn-gold-local {
    background: var(--gold); color: white; padding: 12px 26px;
    border: none; border-radius: 6px; font-family: 'Nunito Sans', sans-serif;
    font-weight: 700; cursor: pointer; transition: background 0.3s, transform 0.2s, box-shadow 0.25s;
    font-size: 0.92rem; display: inline-block; text-decoration: none;
}
.btn-gold-local:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(200,148,31,0.35); color: white; }
.btn-outline-dark {
    text-decoration: none; border: 2px solid var(--gold);
    color: var(--gold); padding: 8px 18px; border-radius: 20px;
    font-family: 'Nunito Sans', sans-serif; font-weight: 700;
    transition: background 0.25s, color 0.25s, transform 0.2s; font-size: 0.82rem;
    cursor: pointer; display: inline-block;
}
.btn-outline-dark:hover { background: var(--gold); color: white; transform: translateY(-2px); }

/* ── PACKAGE CARDS ── */
.package-card {
    background: white; border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--border); cursor: pointer;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card img { width: 100%; height: 235px; object-fit: cover; transition: transform 0.55s ease; }
.package-card:hover img { transform: scale(1.06); }
.package-content { padding: 24px; }
.pack-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.pack-meta span:first-child { color: var(--gold); }
.package-content h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--text); margin-bottom: 8px; }
.package-content p { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.7; }
.pack-price { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 18px; }
.pack-price h4 { font-family: 'Nunito Sans', sans-serif; color: var(--blue); font-size: 1.2rem; font-weight: 800; }
.pack-price h4 span { font-size: 0.82rem; font-weight: 400; color: var(--muted); }

/* ── PACKAGE ACTIONS (BUTTONS) ── */
.pack-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-top: 18px;
}

.btn-outline-dark {
    flex: 1;
    text-align: center;
    text-decoration: none;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    padding: 10px;
    border-radius: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline-dark:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    flex: 1;
    text-align: center;
    text-decoration: none;
    background: #25D366;
    color: white;
    padding: 10px;
    border-radius: 6px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.25s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pack-actions {
        flex-direction: column;
    }
    .btn-outline-dark, .btn-whatsapp {
        width: 100%;
    }
}
/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testi-card {
    background: white; padding: 36px; border-radius: 12px;
    position: relative; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-icon { position: absolute; top: 24px; right: 24px; font-size: 1.8rem; color: rgba(200,148,31,0.15); }
.testi-card .rating { color: var(--gold); margin-bottom: 14px; gap: 3px; display: flex; }
.testi-card p { font-style: italic; color: var(--text); margin-bottom: 22px; font-size: 0.93rem; line-height: 1.8; }
.client-info { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 18px; }
.client-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.client-details h4 { font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.client-details span { font-size: 0.8rem; color: var(--muted); }

/* ── GALLERY ── */
.poster-gallery { display: grid; grid-template-columns: 1.4fr 1.4fr 1fr; gap: 16px; align-items: start; }
.gallery-col { display: flex; flex-direction: column; gap: 16px; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.poster-gallery img {
    width: 100%; object-fit: cover; border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.16);
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.3s ease;;
}
.poster-gallery img:hover { transform: scale(1.04); box-shadow: 0 12px 32px rgba(0,0,0,0.32); position: relative; z-index: 2; filter: brightness(1.05); }
.frame-3x4  { aspect-ratio: 3/4; }
.frame-7x5  { aspect-ratio: 7/5; }
.frame-5x7  { aspect-ratio: 5/7; }
.frame-7x10 { aspect-ratio: 7/10; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--blue); color: white; }
.contact-section .section-title h2 { color: white; }
.contact-section .section-title p { color: rgba(255,255,255,0.7); }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start; }
.enquiry-form-box {
    background: rgba(255,255,255,0.04); padding: 40px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.09); backdrop-filter: blur(8px);
}
.enquiry-form-box h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 28px; font-weight: 700; color: white; }
.enquiry-form-box span { color: var(--gold); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; color: #cbd5e1; margin-bottom: 7px; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 13px 14px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.22); color: white;
    font-family: 'Nunito Sans', sans-serif; font-size: 0.92rem; outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s; resize: vertical;
    cursor: text;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: rgba(0,0,0,0.35); box-shadow: 0 0 0 3px rgba(200,148,31,0.15); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--blue); color: white; }
.contact-info-box h3 { font-family: 'Playfair Display', serif; font-size: 1.7rem; margin-bottom: 14px; font-weight: 700; color: white; }
.contact-info-box h3 span { color: var(--gold); }
.contact-info-box > p { color: #94a3b8; margin-bottom: 28px; line-height: 1.75; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.info-item i { font-size: 1.1rem; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.info-item p { color: #e2e8f0; font-size: 0.9rem; line-height: 1.65; }
.info-item p strong { display: block; color: white; font-size: 0.95rem; margin-bottom: 3px; }
.info-item a { color: var(--gold-light); transition: color 0.25s; }
.info-item a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; justify-content: center; text-align: center; padding-top: 80px; }
    .hero-content { flex-direction: column; align-items: center; }
    .slide-indicator { flex-direction: row; margin-bottom: 18px; }
    .dot.active { width: 26px; height: 6px; }
    .hero-cards { display: none; }
    .hero-controls { left: 50%; transform: translateX(-50%); right: auto; bottom: 28px; width: 100%; justify-content: center; padding: 0 20px; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 992px) {
    .poster-gallery { grid-template-columns: 1fr 1fr; }
    .gallery-col:nth-child(3) { grid-column: span 2; flex-direction: row; }
}
@media (max-width: 768px) {
    .container { padding: 60px 5%; }
    .poster-gallery { grid-template-columns: 1fr; }
    .gallery-col:nth-child(3) { grid-column: span 1; flex-direction: column; }
    .grid-form { grid-template-columns: 1fr; }
    .enquiry-form-box { padding: 28px 20px; }
    .slider-progress { display: none; }
    .hero-controls { gap: 20px; }
}