/* ============================================
   Ayodhya Tour Guide - Main Stylesheet
   Colors: Saffron #FF9933, Dark Blue #1E3A5F, White
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --saffron: #FF9933;
    --saffron-dark: #e6851a;
    --dark-blue: #1E3A5F;
    --dark-blue-light: #2c4f7c;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --gray: #666;
    --light-gray: #e5e5e5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
}

.btn-primary:hover {
    background: var(--saffron-dark);
    border-color: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.3);
}

.btn-secondary {
    background: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

.btn-secondary:hover {
    background: var(--dark-blue-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--dark-blue);
    border-color: var(--dark-blue);
}

.btn-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1faa50;
    transform: translateY(-2px);
}

.btn-block { width: 100%; display: block; }

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.top-bar-info { display: flex; flex-wrap: wrap; gap: 20px; }

.top-bar-info a { color: var(--white); }

.top-bar-info i { color: var(--saffron); margin-right: 6px; }

.top-bar-social a { margin-left: 12px; color: var(--white); }

.top-bar-social a:hover { color: var(--saffron); }

/* ---------- Header / Nav ---------- */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a {
    display: block;
    padding: 10px 14px;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 15px;
    border-radius: 6px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--saffron);
}

.call-now-btn {
    background: var(--saffron);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    margin-left: 10px;
}

.call-now-btn:hover {
    background: var(--saffron-dark) !important;
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--dark-blue);
    cursor: pointer;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    background: linear-gradient(rgba(30, 58, 95, 0.7), rgba(30, 58, 95, 0.6)), url('../images/ram-mandir.jpg') center/cover no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    color: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-text .highlight {
    color: var(--saffron);
}

.hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.hero-form {
    background: var(--white);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    color: var(--dark-blue);
}

.hero-form h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    color: var(--dark-blue);
}

.hero-form .form-subtitle {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 18px;
}

/* ---------- Forms ---------- */
.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-blue);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255,153,51,0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ---------- Sections ---------- */
.section {
    padding: 70px 0;
}

.section-sm { padding: 50px 0; }

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--saffron);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light { background: var(--light-bg); }

.bg-blue {
    background: var(--dark-blue);
    color: var(--white);
}

.bg-blue h2, .bg-blue h3 { color: var(--white); }

/* ---------- Trust Section ---------- */
.trust-section {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
    padding: 40px 0;
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.trust-item i {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.trust-item h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.trust-item p {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
}

/* ---------- Services Grid ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.service-card-img {
    height: 180px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 22px 20px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-card .btn {
    padding: 8px 22px;
    font-size: 13px;
}

/* ---------- Packages ---------- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.package-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-gray);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.package-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.package-duration {
    color: var(--saffron);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
}

.package-duration i { margin-right: 6px; }

.package-features {
    margin: 12px 0 18px;
    flex: 1;
}

.package-features li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--gray);
}

.package-features i {
    color: #28a745;
    margin-right: 8px;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.package-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.package-price span {
    font-size: 12px;
    color: var(--gray);
    font-weight: 400;
}

/* ---------- Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.why-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--saffron);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,58,95,0.7), transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

/* ---------- Reviews ---------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 28px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.review-stars {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 18px;
    font-size: 14.5px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--dark-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.review-author h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.review-author small {
    color: var(--gray);
    font-size: 12.5px;
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: linear-gradient(rgba(30,58,95,0.85), rgba(30,58,95,0.9)), url('../images/ram-mandir-opening.jpg') center/cover no-repeat;
    padding: 70px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- SEO Content ---------- */
.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h3 {
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: var(--saffron);
}

.seo-content p {
    color: #555;
    margin-bottom: 14px;
    font-size: 15px;
}

/* ---------- Bottom Contact Section ---------- */
.bottom-contact {
    background: var(--light-bg);
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--saffron);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-detail-item p, .contact-detail-item a {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
    word-break: break-word;
}

.contact-form-box {
    background: var(--white);
    padding: 32px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark-blue);
    color: #cfd8e3;
    padding: 55px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 35px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #b9c4d1;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul li a {
    color: #b9c4d1;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--saffron);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--saffron);
    margin-right: 8px;
    font-size: 12px;
}

.footer-logo img {
    height: 60px;
    background: var(--white);
    padding: 6px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--saffron);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13.5px;
    color: #a9b5c3;
}

.footer-bottom a {
    color: var(--saffron);
}

/* ---------- Page Header ---------- */
.page-header {
    background: linear-gradient(rgba(30,58,95,0.85), rgba(30,58,95,0.85)), url('../images/ram-mandir.jpg') center/cover no-repeat;
    padding: 70px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 10px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.05rem;
}

.breadcrumb {
    margin-top: 15px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--saffron);
}

/* ---------- Tables (responsive) ---------- */
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: var(--white);
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

table.data-table thead {
    background: var(--dark-blue);
    color: var(--white);
}

table.data-table th,
table.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}

table.data-table th {
    font-weight: 600;
    font-size: 14.5px;
    white-space: nowrap;
}

table.data-table tbody tr:hover {
    background: #fafafa;
}

table.data-table tbody tr:last-child td {
    border-bottom: none;
}

.price-cell {
    color: var(--saffron);
    font-weight: 700;
    white-space: nowrap;
}

/* ---------- Floating Buttons ---------- */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
    z-index: 998;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #1faa50;
    color: var(--white);
    transform: scale(1.08);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.call-float {
    position: fixed;
    right: 20px;
    bottom: 85px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--saffron);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 6px 20px rgba(255,153,51,0.5);
    z-index: 998;
}

.call-float:hover {
    background: var(--saffron-dark);
    color: var(--white);
}

/* ---------- Popup Modal ---------- */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 15px;
}

.popup-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-box {
    background: var(--white);
    border-radius: 14px;
    max-width: 430px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.popup-header {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    padding: 22px 25px;
    border-radius: 14px 14px 0 0;
    text-align: center;
}

.popup-header h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.popup-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.95;
}

.popup-body { padding: 25px; }

.popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.25);
    border: none;
    color: var(--white);
    font-size: 18px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    background: rgba(255,255,255,0.4);
}

/* ---------- Alerts ---------- */
.alert {
    padding: 13px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    display: none;
}

.alert.show { display: block; }

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ---------- Taxi Cards ---------- */
.taxi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.taxi-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 25px 20px;
    border: 1px solid var(--light-gray);
}

.taxi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--saffron);
}

.taxi-icon {
    font-size: 3.5rem;
    color: var(--saffron);
    margin-bottom: 12px;
}

.taxi-card h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.taxi-card .seats {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 15px;
}

.taxi-card .price {
    font-size: 1.3rem;
    color: var(--saffron);
    font-weight: 700;
    margin-bottom: 15px;
}

.taxi-card .price span {
    font-size: 13px;
    color: var(--gray);
    font-weight: 400;
}

/* ---------- Hotel Cards ---------- */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.hotel-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hotel-img {
    height: 200px;
    overflow: hidden;
}

.hotel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hotel-body { padding: 20px; }

.hotel-body h3 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.hotel-location {
    color: var(--gray);
    font-size: 13.5px;
    margin-bottom: 10px;
}

.hotel-location i { color: var(--saffron); margin-right: 5px; }

.hotel-rating {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 14px;
}

.hotel-rating span {
    color: var(--gray);
    margin-left: 6px;
    font-size: 13px;
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.hotel-amenities span {
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--dark-blue);
}

.hotel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* ---------- About / content blocks ---------- */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15.5px;
    line-height: 1.75;
}

.content-block h3 {
    font-size: 1.3rem;
    margin: 25px 0 12px;
    color: var(--dark-blue);
}

.content-block ul {
    margin: 15px 0 15px 20px;
}

.content-block ul li {
    list-style: disc;
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Large Desktop */
@media (max-width: 1200px) {
    .container { padding: 0 20px; }
}

/* Tablet Landscape */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero { min-height: auto; padding: 50px 0; }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .section { padding: 55px 0; }
}

/* Tablet Portrait & Mobile Nav */
@media (max-width: 820px) {
    .mobile-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 70px 20px 20px;
        gap: 0;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active { right: 0; }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-menu li a {
        padding: 14px 10px;
        font-size: 16px;
    }
    
    .call-now-btn {
        margin: 15px 0 0 0 !important;
        text-align: center;
    }
    
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        display: none;
        z-index: 999;
    }
    
    .nav-overlay.active { display: block; }
    
    .mobile-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--dark-blue);
        cursor: pointer;
    }
}

/* Mobile */
@media (max-width: 640px) {
    body { font-size: 15px; }
    
    .top-bar { font-size: 12px; }
    .top-bar .container { justify-content: center; }
    .top-bar-info { gap: 12px; justify-content: center; }
    .top-bar-social { display: none; }
    
    .section { padding: 45px 0; }
    .section-header { margin-bottom: 30px; }
    
    .hero { padding: 40px 0; }
    .hero-form { padding: 22px; }
    
    .form-row { grid-template-columns: 1fr; }
    
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .trust-item h4 { font-size: 1.15rem; }
    .trust-item i { font-size: 1.8rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    
    .hero-cta .btn { flex: 1; min-width: 140px; }
    
    .call-float { display: flex; }
    
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    
    .call-float {
        right: 15px;
        bottom: 75px;
        width: 52px;
        height: 52px;
    }
    
    .logo img { height: 45px; }
    
    .page-header { padding: 50px 0 45px; }
    
    .contact-form-box { padding: 22px; }
}

/* Small Mobile */
@media (max-width: 420px) {
    .container { padding: 0 14px; }
    .btn { padding: 11px 22px; font-size: 14px; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .hero-text h1 { font-size: 1.6rem; }
}

/* Accessibility & print helpers */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
