:root {
    --primary: #2dbe69;
    --primary-dark: #239956;
    --secondary: #D35400;
    --light-bg: #E8F8F5;
    --card-bg: #FDF2E9;
    --dark-text: #2C3E50;
    --white: #ffffff;
    --gray-fill: #1A252F;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-text);
    background-color: #cde0cd;
    line-height: 1.6;
}

/* Header Navigation Styles */
header {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

nav a:hover, nav a.active {
    background-color: rgba(255,255,255,0.2);
    color: #F1C40F;
}

/* Page Architecture */
.page-section {
    padding: 40px 10%;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.page-intro-header {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border-bottom: 3px solid var(--primary);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, h4 { color: var(--primary); }
.text-center { text-align: center; }

/* Cover Showcase Section */
.hero {
    background: linear-gradient(rgba(30, 132, 73, 0.85), rgba(39, 174, 96, 0.85));
    color: white;
    text-align: center;
    padding: 65px 20px;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
}
.hero h1 { font-size: 3rem; margin: 0 0 10px 0; color: rgb(253, 253, 252); }
.hero h3 {margin: 0 0 10px 0; color: rgb(238, 254, 19);}
.hero h4 {margin: 0 0 10px 0; color:rgb(123, 252, 125);}
.hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 20px; }
.hero .btn-group { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.hero .btn { background: var(--secondary); color: white; padding: 12px 24px; text-decoration: none; border-radius: 5px; font-weight: bold; cursor: pointer; border: none; font-size: 1rem; }
.hero .btn:hover { background: #ff6600; }

.info-block {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-left: 5px solid var(--primary);
}

.slogan-banner {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid #fadbd8;
}
.slogan-text { font-size: 1.3rem; font-weight: bold; color: var(--secondary); margin: 5px 0; }

/* Alignment-Safe Image Sliders */
.carousel-container {
    max-width: 850px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    background-color: var(--gray-fill);
}
.carousel-slide { display: none; width: 100%; height: 440px; position: relative; }
.carousel-slide.active { display: block; animation: fade 0.8s; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; }

.carousel-caption {
    position: absolute;
    bottom: 0; width: 100%;
    background: rgba(0,0,0,0.75);
    color: white; padding: 12px; text-align: center;
    box-sizing: border-box;
    font-size: 1.1rem; font-weight: bold;
}
.prev, .next {
    cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%);
    padding: 16px; color: white; font-weight: bold; font-size: 20px;
    background: rgba(0,0,0,0.5); border: none; border-radius: 4px; z-index: 10;
}
.next { right: 0; }
@keyframes fade { from {opacity: .5} to {opacity: 1} }

/* Grid Matrices & Item Adjustments */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 25px; }
.card { background: var(--white); border-radius: 10px; padding: 20px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border-top: 4px solid var(--secondary); display: flex; flex-direction: column; }
.card img { 
    width: 100%; 
    height: 240px; 
    object-fit: contain; 
    object-position: center; 
    background-color: #f7f9f7; 
    border-radius: 6px; 
    margin-bottom: 15px; 
}
.card-btn { margin-top: auto; background: var(--primary); color: white; padding: 11px; text-align: center; border-radius: 5px; cursor: pointer; border: none; font-weight: bold; font-size: 0.95rem; }
.card-btn:hover { background: var(--primary-dark); }

/* Modal Overlay Interfaces */
.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.85); }
.modal-content { background-color: #fefefe; margin: 4% auto; padding: 25px; width: 85%; max-width: 750px; border-radius: 10px; position: relative; }
.close-btn { color: #aaa; float: right; font-size: 30px; font-weight: bold; cursor: pointer; }
.close-btn:hover { color: #000; }

.modal-carousel { position: relative; width: 100%; height: 380px; margin-bottom: 20px; background: var(--gray-fill); border-radius: 8px; overflow: hidden; }
.modal-slide { display: none; width: 100%; height: 100%; }
.modal-slide.active { display: block; }
.modal-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.mc-prev, .mc-next { cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); padding: 12px; color: white; background: rgba(0,0,0,0.6); border: none; font-size: 18px; z-index: 10; }
.mc-next { right: 0; }

/* Standardized Containers Configuration */
.booking-container { background: var(--light-bg); padding: 30px; border-radius: 10px; max-width: 580px; margin: 0 auto; border: 2px solid var(--primary); }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 5px; }
.form-group input, .form-group select { width: 100%; padding: 11px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; font-size: 1rem; }
.submit-btn { background-color: var(--secondary); color: var(--white); border: none; padding: 12px; font-size: 1.1rem; border-radius: 5px; cursor: pointer; font-weight: bold; width: 100%; }
.submit-btn:hover { background-color: #b34200; }

.status-box { display: none; margin-top: 20px; padding: 20px; background-color: var(--white); border-left: 5px solid var(--primary); border-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.loader-text { display:none; text-align:center; color: var(--primary); font-weight: bold; margin-top: 10px;}

/* Smooth Payment Gateway / UPI Overlay Engine UI */
.pg-modal { display: none; position: fixed; z-index: 3000; left:0; top:0; width:100%; height:100%; background: rgba(26,37,47,0.95); align-items:center; justify-content:center; }
.pg-box { background: var(--white); padding:35px; border-radius:12px; max-width:440px; width:90%; text-align:center; box-shadow:0 10px 30px rgba(0,0,0,0.3); border-top: 6px solid var(--primary); }
.pg-spinner { border: 4px solid #f3f3f3; border-top: 4px solid var(--primary); border-radius: 50%; width: 45px; height: 45px; animation: spin 1s linear infinite; margin: 20px auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.upi-apps-container { display: flex; justify-content: center; gap: 20px; margin: 20px 0; flex-wrap: wrap; }
.upi-app-btn { background: #f8f9fa; border: 1px solid #ddd; padding: 10px 15px; border-radius: 8px; font-weight: bold; display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--dark-text); cursor: pointer; transition: background 0.2s; }
.upi-app-btn:hover { background: #e9ecef; }
.qr-code-img { max-width: 200px; width: 100%; height: auto; margin: 15px auto; display: block; border: 4px solid var(--white); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

/* Rich Footer Architecture Styles */
footer {
    background-color: var(--gray-fill);
    color: var(--white);
    padding: 40px 10% 20px 10%;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 {
    color: #F1C40F;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
    display: inline-block;
}
.footer-col p {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #bdc3c7;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
}
.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--primary);
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s, color 0.3s;
    text-decoration: none;
}
.social-links a:hover {
    transform: scale(1.2);
}
.social-links a.insta-icon:hover { color: #E1306C; }
.social-links a.youtube-icon:hover { color: #FF0000; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #2C3E50;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* MOBILE RESPONSIVENESS MEDIA QUERY ENGINE */
@media screen and (max-width: 768px) {
    .page-section { padding: 20px 5%; }
    header { flex-direction: column; padding: 10px 5%; gap: 10px; }
    nav ul { flex-wrap: wrap; justify-content: center; gap: 8px; }
    nav a { padding: 6px 10px; font-size: 0.9rem; }
    .hero { padding: 40px 15px; }
    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .carousel-container { max-width: 100%; margin: 15px auto; }
    .carousel-slide { height: 250px; }
    .carousel-caption { font-size: 0.9rem; padding: 8px; }
    .prev, .next { padding: 10px; font-size: 16px; }
    .grid { grid-template-columns: 1fr; gap: 20px; }
    .card img { height: 180px; }
    .booking-container { padding: 20px; width: 100%; box-sizing: border-box; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .footer-col h4 { display: block; width: max-content; margin: 0 auto 15px auto; }
}
/* ========================================================
   REVIEWS FEEDBACK SYSTEM & COMMENT STYLING CONFIGURATIONS
   ======================================================== */
.play-reviews-wrapper {
    max-width: 100%;
    margin: 40px auto;
    font-family: inherit;
}

.reviews-toggle-accordion {
    width: 100%;
    background-color: #f1f3f4;
    color: #202124;
    border: 1px solid #dadce0;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.reviews-toggle-accordion:hover {
    background-color: #e8eaed;
}

.reviews-collapsible-tray {
    display: none;
    border: 1px solid #dadce0;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 24px;
    background-color: #ffffff;
}

.reviews-collapsible-tray.visible-expanded {
    display: block;
}

.google-play-dashboard-summary {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dadce0;
}

.numeric-summary-hero {
    font-size: 3.6rem;
    font-weight: 700;
    color: #202124;
    line-height: 1;
}

.text-star-gold {
    color: #f39c12;
}

.user-review-input-card {
    background-color: #f8f9fa;
    border: 1px solid #dadce0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.interactive-star-selector-row {
    display: flex;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.interactive-star-selector-row .star-node {
    cursor: pointer;
    color: #dadce0;
    transition: color 0.1s ease;
}

.interactive-star-selector-row .star-node:hover,
.interactive-star-selector-row .star-node.selected-active {
    color: #f39c12;
}

.user-review-input-card input[type="text"],
.user-review-input-card textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.95rem;
}

.interactive-action-btn-primary {
    background-color: #2e7d32;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.interactive-action-btn-primary:hover {
    background-color: #1b5e20;
}

.root-comment-node-card {
    border-bottom: 1px solid #dadce0;
    padding: 20px 0;
}

.root-comment-node-card:last-child {
    border-bottom: none;
}

.interactive-like-anchor {
    color: #5f6368;
    cursor: pointer;
    user-select: none;
    transition: color 0.15s ease;
}

.interactive-like-anchor:hover {
    color: #2e7d32;
}

.local-reply-input-drawer-box {
    display: none;
    gap: 10px;
    margin: 12px 0 8px 0;
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    align-items: center;
}

.nested-reply-node-card {
    background-color: #f8f9fa;
    border-left: 3px solid #2e7d32;
    padding: 12px 16px;
    margin-top: 12px;
    margin-left: 25px;
    border-radius: 4px;
}
