* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
}

.hero {
    background: linear-gradient(135deg, #ff9800, #4caf50);
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.section.light {
    background: #fff;
    border-radius: 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #222;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 25px;
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: transform .3s;
}

.price-card:hover {
    transform: translateY(-8px);
}

.price-card h4 {
    font-size: 1.8rem;
    margin: 15px 0;
}

.price-card span {
    font-size: 0.9rem;
    color: #777;
}

.price-card ul {
    list-style: none;
    margin-top: 15px;
}

.price-card ul li {
    margin: 10px 0;
}

.green { border-top: 6px solid #4caf50; }
.purple { border-top: 6px solid #9c27b0; }
.orange { border-top: 6px solid #ff5722; }
.blue { border-top: 6px solid #2196f3; }
.pink { border-top: 6px solid #e91e63; }

.included {
    color: #4caf50;
}

.timeline {
    display: grid;
    gap: 15px;
    max-width: 700px;
    margin: auto;
}

.step {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
    color: #fff;
    padding: 15px 20px;
    border-radius: 30px;
    text-align: center;
    font-weight: 500;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 15px;
    transition: transform .3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.video-box {
    max-width: 800px;
    margin: auto;
    aspect-ratio: 16 / 9;
}

.video-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.booking {
    background: linear-gradient(135deg, #2196f3, #03a9f4);
    color: #fff;
    border-radius: 25px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: center;
}

.contact-box, .upi-box {
    background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.contact-box {
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical center */
    align-items: center;       /* horizontal center */
    text-align: center;
}

.contact-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 17px;
    line-height: 1.7;
}

.contact-box {
    min-height: 100%;
}

.contact-box strong {
    font-weight: 600;
}

.upi-box img {
    max-width: 220px;
    margin: 15px auto;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #ccc;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .section h2 { font-size: 1.6rem; }
    .price-card h4 { font-size: 1.5rem; }
}

.booking-grid { align-items: stretch; }

.back-btn-wrap {
    text-align: center;
    margin: 20px 0;
}

.back-btn {
    display: inline-block;
    background: #0ea5e9;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #0284c7;
}
    
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}
    