/* ============================================
   MANIKANTA HOLIDAYS — MAIN STYLES
   Custom brand, distinct from Om Sai Travels
   ============================================ */

:root {
    --gold: #f59e0b;
    --gold-light: #fbbf24;
    --gold-dim: rgba(245,158,11,0.08);
    --black: #0f0f0f;
    --white: #ffffff;
    --cream: #fdfcf9;
    --warm-gray: #f5f3ef;
    --stone: #a8a29e;
    --charcoal: #1c1917;
    --font-display: 'Lora', Georgia, serif;
    --font-body: 'Manrope', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-md: 0 8px 28px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 56px rgba(0,0,0,0.08);
    --radius: 16px;
    --radius-lg: 24px;
}

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    font-family:var(--font-body);font-size:16px;line-height:1.65;
    color:var(--charcoal);background:var(--cream);overflow-x:hidden
}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.15;letter-spacing:-0.01em;color:var(--black)}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}
img{max-width:100%;height:auto;display:block}
ul{list-style:none}
.container{max-width:1200px;margin:0 auto;padding:0 24px}

.text-gradient{background:linear-gradient(135deg,var(--gold),var(--gold-light));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.section-label{
    display:inline-flex;align-items:center;gap:8px;
    font-size:13px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;
    color:var(--gold);margin-bottom:14px;
    padding:4px 0}
.section-label::before{content:'';width:24px;height:2px;background:var(--gold);display:inline-block}
.section-title{font-size:clamp(30px,4.5vw,48px);font-weight:700;margin-bottom:20px;line-height:1.2}
.section-subtitle{font-size:17px;color:var(--stone);max-width:560px;line-height:1.7}
.section-header{text-align:center;max-width:720px;margin:0 auto 56px}
.section-header .section-label{justify-content:center}
.section-header .section-subtitle{margin:0 auto}

.btn-primary{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:14px 28px;background:var(--gold);color:var(--black);
    font-size:14px;font-weight:600;border-radius:10px;
    transition:all 0.3s var(--ease-out);
    box-shadow:0 4px 16px rgba(245,158,11,0.2)
}
.btn-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(245,158,11,0.3)}
.btn-secondary{
    display:inline-flex;align-items:center;justify-content:center;gap:8px;
    padding:14px 28px;background:var(--charcoal);color:var(--white);
    font-size:14px;font-weight:600;border-radius:10px;transition:all 0.3s var(--ease-out)
}
.btn-secondary:hover{background:var(--black);transform:translateY(-2px)}
.btn-full{width:100%}

/* ===== HEADER ===== */
.header{position:fixed;top:0;left:0;right:0;z-index:100;height:72px;transition:all 0.35s var(--ease-out)}
.header.scrolled{background:rgba(253,252,249,0.95);backdrop-filter:blur(16px);box-shadow:0 1px 0 rgba(0,0,0,0.04)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:72px}
.logo{font-family:var(--font-display);font-size:20px;font-weight:700;letter-spacing:-0.02em;color:var(--black);display:flex;align-items:center;gap:8px}
.logo span{color:var(--gold)}
.logo-dot{width:8px;height:8px;border-radius:50%;background:var(--gold);display:inline-block;margin-right:2px}
.nav-desktop{display:none;align-items:center;gap:28px}
.nav-link{font-size:14px;font-weight:500;color:var(--stone);transition:color 0.2s;position:relative}
.nav-link:hover{color:var(--gold)}
.nav-cta{display:none}
.mobile-btn{width:40px;height:40px;display:flex;align-items:center;justify-content:center;color:var(--black)}
.mobile-menu{position:absolute;top:72px;left:0;right:0;background:var(--cream);padding:24px;opacity:0;visibility:hidden;transform:translateY(-8px);transition:all 0.3s var(--ease-out);border-bottom:1px solid rgba(0,0,0,0.04)}
.mobile-menu.active{opacity:1;visibility:visible;transform:translateY(0)}
.mobile-nav{display:flex;flex-direction:column;gap:6px}
.mobile-nav a{padding:12px 16px;font-size:16px;font-weight:500;border-radius:8px;color:var(--charcoal);transition:background 0.2s}
.mobile-nav a:hover{background:rgba(0,0,0,0.04)}
.mobile-cta{margin-top:8px}
@media(min-width:900px){.nav-desktop{display:flex}.nav-cta{display:inline-flex}.mobile-btn{display:none}}

/* ===== HERO ===== */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;background:var(--charcoal)}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-overlay{
    position:absolute;inset:0;
    background:linear-gradient(135deg,rgba(28,25,23,0.92) 0%,rgba(28,25,23,0.6) 50%,rgba(28,25,23,0.3) 100%)
}
.hero-content{position:relative;z-index:2;display:grid;grid-template-columns:1fr;gap:40px;padding-top:100px;padding-bottom:60px;align-items:center}
.hero h1{font-size:clamp(36px,5.5vw,64px);color:var(--white);margin-bottom:20px;line-height:1.1}
.hero h1 em{font-style:normal;color:var(--gold)}
.hero p{font-size:17px;color:rgba(255,255,255,0.6);max-width:480px;line-height:1.8;margin-bottom:32px}
.hero-stats{display:flex;gap:24px;margin-bottom:32px}
.hero-stats div{text-align:left}
.hero-stats strong{display:block;font-family:var(--font-display);font-size:28px;color:var(--gold);line-height:1.2}
.hero-stats span{font-size:13px;color:rgba(255,255,255,0.45)}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}

/* Hero form */
.hero-form{background:rgba(255,255,255,0.06);backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,0.08);border-radius:var(--radius-lg);padding:28px}
.hero-form h3{font-family:var(--font-body);font-size:18px;font-weight:600;color:var(--white);margin-bottom:20px}
.hf-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.hf-field{position:relative}
.hf-field svg{position:absolute;left:14px;top:50%;transform:translateY(-50%);width:18px;height:18px;color:rgba(255,255,255,0.25);pointer-events:none}
.hf-field input,.hf-field select{
    width:100%;padding:13px 14px 13px 44px;
    background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);
    border-radius:10px;color:var(--white);font-size:14px;font-family:var(--font-body);
    outline:none;transition:all 0.25s;-webkit-appearance:none;appearance:none
}
.hf-field select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center}
.hf-field select option{background:var(--charcoal);color:var(--white)}
.hf-field input::placeholder{color:rgba(255,255,255,0.25)}
.hf-field input:focus,.hf-field select:focus{border-color:var(--gold);background:rgba(255,255,255,0.1)}
.hf-note{font-size:12px;color:rgba(255,255,255,0.2);text-align:center;margin-top:10px}

@media(min-width:900px){.hero-content{grid-template-columns:1.1fr 1fr;padding-top:140px;padding-bottom:80px}}
@media(max-width:768px){.hero{min-height:auto;padding-bottom:40px}.hero-stats{gap:16px}.hero-stats strong{font-size:22px}.hf-row{grid-template-columns:1fr}}

/* ===== SECTION BASE ===== */
.section{padding:100px 0}
.section-dark{background:var(--charcoal);color:var(--white)}
.section-dark .section-title{color:var(--white)}
.section-light{background:var(--white)}

/* ===== ABOUT ===== */
.about-section{background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr;gap:56px;align-items:center}
.about-text p{font-size:17px;color:var(--stone);line-height:1.8;margin-bottom:24px}
.about-features--list{display:flex;flex-direction:column;margin-bottom:36px;border-top:1px solid rgba(0,0,0,0.08)}
.about-features--list div{display:flex;align-items:center;gap:12px;font-size:14px;font-weight:500;color:var(--charcoal);padding:14px 2px;border-bottom:1px solid rgba(0,0,0,0.08)}
.about-features--list div svg{width:18px;height:18px;color:var(--gold);flex-shrink:0}
.about-stats-row{display:flex;gap:32px}
.about-stats-row div{}
.about-stats-row strong{display:block;font-family:var(--font-display);font-size:32px;color:var(--gold);line-height:1.2}
.about-stats-row span{font-size:13px;color:var(--stone)}
.about-images{position:relative}
.about-img-stack{position:relative;aspect-ratio:1/1;max-width:440px}
.about-img-stack img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius-lg);position:absolute}
.about-img-stack .img-back{top:-16px;left:-16px;opacity:0.5;border:2px solid var(--gold);border-radius:var(--radius-lg)}
.about-img-stack .img-front{position:relative;z-index:2;box-shadow:0 20px 60px rgba(0,0,0,0.12)}
.about-badge{position:absolute;bottom:-16px;right:-16px;z-index:3;background:var(--gold);color:var(--black);padding:14px 20px;border-radius:12px;display:flex;align-items:center;gap:10px;font-weight:600;font-size:14px;box-shadow:0 8px 24px rgba(245,158,11,0.25)}
.about-badge svg{width:20px;height:20px}
@media(min-width:900px){.about-grid{grid-template-columns:1fr 1fr;gap:72px}.about-text{order:2}.about-images{order:1}}

/* ===== SERVICES ===== */
.services-section{background:var(--warm-gray)}
.sv-grid--list{display:flex;flex-direction:column;background:var(--white);border-radius:var(--radius);overflow:hidden}
.sv-card{display:flex;align-items:flex-start;gap:20px;padding:28px;border-bottom:1px solid rgba(0,0,0,0.06);transition:background 0.25s}
.sv-card:last-child{border-bottom:none}
.sv-card:hover{background:var(--cream)}
.sv-num{font-family:var(--font-display);font-size:14px;font-weight:600;color:var(--stone);padding-top:15px;width:24px;flex-shrink:0}
.sv-icon{width:52px;height:52px;background:var(--gold-dim);border-radius:12px;display:flex;align-items:center;justify-content:center;color:var(--gold);flex-shrink:0}
.sv-icon svg{width:26px;height:26px}
.sv-copy h3{font-size:18px;margin-bottom:6px}
.sv-copy p{font-size:14px;color:var(--stone);line-height:1.7;max-width:520px}
@media(max-width:600px){.sv-num{display:none}.sv-card{gap:14px;padding:22px 20px}}

/* ===== FLEET ===== */
.fleet-section{padding:100px 0}
.fleet-grid{display:grid;grid-template-columns:1fr;gap:20px}
.fleet-card{background:var(--white);border-radius:var(--radius);overflow:hidden;border:1px solid rgba(0,0,0,0.04);transition:all 0.35s var(--ease-out)}
.fleet-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg)}
.fleet-img{background:var(--cream);display:flex;align-items:center;justify-content:center;aspect-ratio:4/3;overflow:hidden}
.fleet-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s var(--ease-out)}
.fleet-card:hover .fleet-img img{transform:scale(1.06)}
.fleet-body{padding:20px 22px 24px}
.fleet-body h3{font-size:18px;margin-bottom:2px}
.fleet-body .fleet-sub{font-size:13px;color:var(--stone);margin-bottom:16px}
.fleet-specs{display:grid;grid-template-columns:repeat(2,1fr);gap:6px;margin-bottom:16px}
.fleet-specs span{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--stone);padding:6px 10px;background:var(--cream);border-radius:6px}
.fleet-specs span svg{width:12px;height:12px;color:var(--gold);flex-shrink:0}
.fleet-book{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;padding:12px;background:var(--gold);color:var(--black);font-weight:600;font-size:13px;border-radius:8px;transition:all 0.3s var(--ease-out)}
.fleet-book:hover{background:var(--gold-light)}
@media(min-width:640px){.fleet-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.fleet-grid{grid-template-columns:repeat(3,1fr)}}
.fleet-card--featured{order:-1;grid-column:1/-1}
.fleet-badge{display:inline-block;background:var(--gold);color:var(--black);font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:0.04em;padding:4px 10px;border-radius:6px;margin-bottom:10px}
@media(min-width:640px){.fleet-card--featured{display:grid;grid-template-columns:320px 1fr}.fleet-card--featured .fleet-img{aspect-ratio:auto}.fleet-card--featured .fleet-body{display:flex;flex-direction:column;justify-content:center;padding:24px 32px}.fleet-card--featured h3{font-size:26px}.fleet-card--featured .fleet-sub{font-size:14px}}

/* ===== DESTINATIONS ===== */
.gallery-section{background:var(--warm-gray)}
.dest-grid{display:grid;grid-template-columns:1fr;gap:16px}
.dest-card{background:var(--white);border:1px solid rgba(0,0,0,0.04);border-radius:var(--radius);padding:26px 24px;transition:all 0.3s var(--ease-out)}
.dest-card:hover{border-color:var(--gold);box-shadow:var(--shadow-md)}
.dest-num{font-family:var(--font-display);font-size:13px;font-weight:600;color:var(--gold);letter-spacing:0.06em}
.dest-card h3{font-size:20px;margin:6px 0 6px}
.dest-card p{font-size:14px;color:var(--stone);line-height:1.6;margin-bottom:14px}
.dest-km{display:inline-block;font-size:12px;font-weight:600;color:var(--gold);background:var(--gold-dim);padding:4px 10px;border-radius:6px}
@media(min-width:640px){.dest-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.dest-grid{grid-template-columns:repeat(3,1fr)}}

/* ===== BLOG ===== */
.blog-section{background:var(--cream)}
.blog-head{display:flex;flex-direction:column;gap:16px;margin-bottom:48px}
.blog-grid{display:grid;grid-template-columns:1fr;gap:24px}
.blog-card{border-radius:var(--radius);overflow:hidden;background:var(--white);transition:all 0.35s var(--ease-out);box-shadow:0 2px 12px rgba(0,0,0,0.04)}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.blog-img{position:relative;aspect-ratio:16/9;overflow:hidden}
.blog-img img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s var(--ease-out)}
.blog-card:hover .blog-img img{transform:scale(1.06)}
.blog-cat{position:absolute;top:12px;left:12px;padding:4px 12px;background:var(--gold);color:var(--black);font-size:11px;font-weight:600;border-radius:6px}
.blog-body{padding:20px}
.blog-body .b-meta{display:flex;gap:12px;font-size:12px;color:var(--stone);margin-bottom:8px}
.blog-body h3{font-size:17px;margin-bottom:8px;line-height:1.3}
.blog-body p{font-size:14px;color:var(--stone);line-height:1.6;margin-bottom:12px}
.blog-link{font-size:13px;font-weight:600;color:var(--gold);display:inline-flex;align-items:center;gap:6px}
.blog-link svg{width:14px;height:14px;transition:transform 0.3s}
.blog-link:hover svg{transform:translateX(4px)}
@media(min-width:640px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:900px){.blog-head{flex-direction:row;justify-content:space-between;align-items:flex-end}.blog-grid{grid-template-columns:repeat(3,1fr)}}

/* ===== WHY US ===== */
.why-section{padding:100px 0}
.why-grid{display:grid;grid-template-columns:1fr;gap:20px}
.why-card{text-align:center;padding:32px 24px;border-radius:var(--radius);background:var(--white);border:1px solid rgba(0,0,0,0.04);transition:all 0.3s var(--ease-out)}
.why-card:hover{border-color:var(--gold-dim);box-shadow:var(--shadow-md)}
.why-card .w-num{font-family:var(--font-display);font-size:44px;font-weight:800;color:var(--gold-dim);line-height:1;margin-bottom:12px}
.why-card h4{font-family:var(--font-body);font-size:16px;font-weight:600;margin-bottom:8px}
.why-card p{font-size:14px;color:var(--stone);line-height:1.7}
@media(min-width:640px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.why-grid{grid-template-columns:repeat(3,1fr)}}

/* ===== FAQ ===== */
.faq-section{background:var(--white)}
.faq-grid{display:grid;grid-template-columns:1fr;gap:48px}
.faq-left h2{margin-bottom:12px}
.faq-left p{font-size:16px;color:var(--stone);margin-bottom:24px;line-height:1.7;max-width:400px}
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{border:1px solid rgba(0,0,0,0.04);border-radius:var(--radius);overflow:hidden;transition:all 0.3s var(--ease-out)}
.faq-item.active{border-color:var(--gold)}
.faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;padding:18px 22px;text-align:left;font-size:15px;font-weight:600;color:var(--charcoal);transition:background 0.2s;gap:16px}
.faq-q:hover{background:var(--cream)}
.faq-num{font-family:var(--font-display);color:var(--gold);margin-right:12px;font-weight:700}
.faq-q svg{width:18px;height:18px;color:var(--stone);flex-shrink:0;transition:transform 0.3s}
.faq-item.active .faq-q svg{transform:rotate(180deg);color:var(--gold)}
.faq-a{max-height:0;overflow:hidden;transition:max-height 0.4s var(--ease-out)}
.faq-item.active .faq-a{max-height:200px}
.faq-a p{padding:0 22px 18px;font-size:14px;color:var(--stone);line-height:1.7}
@media(min-width:900px){.faq-grid{grid-template-columns:1fr 1.3fr;gap:64px}.faq-left{position:sticky;top:100px;align-self:flex-start}}

/* ===== CONTACT ===== */
.contact-section{background:var(--charcoal);color:var(--white)}
.contact-section .section-title{color:var(--white)}
.contact-grid{display:grid;grid-template-columns:1fr;gap:40px}
.contact-info h3{font-family:var(--font-body);font-size:18px;font-weight:600;margin-bottom:8px}
.contact-info p{color:rgba(255,255,255,0.5);margin-bottom:28px;line-height:1.7;max-width:420px}
.ci-details{display:flex;flex-direction:column;gap:12px}
.ci-row{display:flex;align-items:center;gap:12px;font-size:15px;color:rgba(255,255,255,0.6)}
.ci-row svg{width:18px;height:18px;color:var(--gold);flex-shrink:0}
.ci-row a{color:rgba(255,255,255,0.6);transition:color 0.2s}
.ci-row a:hover{color:var(--gold)}
.ci-row address{font-style:normal}
.contact-form{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.06);border-radius:var(--radius-lg);padding:28px}
.contact-form h3{font-family:var(--font-body);font-size:18px;font-weight:600;margin-bottom:18px}
.cf-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.contact-form input,.contact-form select,.contact-form textarea{
    width:100%;padding:12px 16px;margin-bottom:12px;
    background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);
    border-radius:10px;font-family:var(--font-body);font-size:14px;color:var(--white);
    outline:none;transition:all 0.25s
}
.contact-form select{-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center}
.contact-form select option{background:var(--charcoal);color:var(--white)}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(255,255,255,0.2)}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:var(--gold);background:rgba(255,255,255,0.08)}
.cf-note{font-size:12px;color:rgba(255,255,255,0.2);text-align:center;margin-top:8px}
@media(min-width:900px){.contact-grid{grid-template-columns:1.2fr 1fr;gap:56px}.contact-form{order:1}.contact-info{order:2}}

/* ===== FOOTER ===== */
.footer{background:var(--black);color:rgba(255,255,255,0.5);padding:60px 0 32px;border-top:2px solid var(--gold)}
.footer-inner{display:grid;grid-template-columns:1fr;gap:32px}
.footer-brand .logo{color:var(--white);margin-bottom:8px}
.footer-brand p{font-size:14px;line-height:1.7;max-width:320px}
.footer-cols{display:grid;grid-template-columns:repeat(2,1fr);gap:32px}
.footer-cols h5{font-family:var(--font-body);font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:0.06em;color:rgba(255,255,255,0.3);margin-bottom:14px}
.footer-cols a{display:block;font-size:14px;color:rgba(255,255,255,0.4);margin-bottom:10px;transition:color 0.2s}
.footer-cols a:hover{color:var(--gold)}
.footer-bar{display:flex;flex-wrap:wrap;gap:16px;padding-top:24px;border-top:1px solid rgba(255,255,255,0.04);font-size:13px;color:rgba(255,255,255,0.2);margin-top:32px}
@media(min-width:600px){.footer-cols{grid-template-columns:repeat(3,1fr)}}
@media(min-width:900px){.footer-inner{grid-template-columns:1fr 2fr;gap:64px}}

/* ===== WHATSAPP FLOAT ===== */
.wa-float{position:fixed;bottom:24px;right:24px;z-index:99;width:52px;height:52px;border-radius:50%;background:#25D366;color:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,0.25);transition:all 0.3s}
.wa-float:hover{transform:translateY(-3px);box-shadow:0 8px 30px rgba(37,211,102,0.35)}
.wa-float svg{width:24px;height:24px}

/* ===== SCROLL TOP ===== */
.scroll-top{position:fixed;bottom:84px;right:24px;z-index:99;width:44px;height:44px;border-radius:50%;background:var(--gold);color:var(--black);display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(245,158,11,0.3);opacity:0;visibility:hidden;transform:translateY(12px);transition:all 0.3s;cursor:pointer}
.scroll-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.scroll-top:hover{background:var(--gold-light)}
.scroll-top svg{width:20px;height:20px}

/* ===== RESPONSIVE ===== */
@media(max-width:640px){
    .about-stats-row{flex-direction:column;gap:16px}
    .cf-row{grid-template-columns:1fr}
    .section{padding:64px 0}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:0.01ms!important;transition-duration:0.01ms!important}}
