/* --- Root Variables (Aapke Theme ke Hisaab se) --- */
:root {
    --gold: #c5a358;
    --navy: #0f172a;
    --light-navy: #1e293b;
    --white: #ffffff;
    --bg-light: #f1f5f9;
    --glass: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* --- Sections --- */
section {
    padding: 80px 8%;
    position: relative;
}

.section-white { background: var(--white); }
.section-light { background: var(--bg-light); }

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(rgba(15,23,42,.72),rgba(15,23,42,.50)),
    url("https://images.unsplash.com/photo-1530521954074-e64f6810b32d?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.5));;
    z-index: 1;
}

.hero div {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--navy);
}

.section-header .line {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 0;
}

/* --- Card Grid (Services.php) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .card-img img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-info {
    padding: 30px;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.price {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    margin: 15px 0;
}

/* --- Service Details Page Layout --- */
.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.why-left {
    width: 100%;
    height: 550px;          /* Sab pages par same height */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.why-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* Image crop hogi, stretch nahi */
    display: block;
    transition: transform .5s ease;
}

.why-left:hover img {
    transform: scale(1.05);
}

.why-right h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid var(--gold);
}

/* --- Buttons --- */
.btn-book, .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-book:hover, .btn-primary:hover {
    background: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Holiday CTA Box --- */
.holiday-cta {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 30px;
}

.holiday-cta h3 { color: var(--gold); margin-bottom: 10px; font-family: 'Poppins'; }
.holiday-cta p { margin-bottom: 25px; opacity: 0.9; }

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .why-wrapper {
        grid-template-columns: 1fr;
    }
    section { padding: 60px 5%; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}