/* =====================================================
   Koraput Hotel Directory - Main Stylesheet
   Domain: deomalihomestays.in
   Colors: Deep Green, Warm Orange, Cream, Dark
   ===================================================== */

/* ── CSS Variables ── */
:root {
    --primary: #1a7a4f;
    --primary-dark: #145a3a;
    --primary-light: #2ecc71;
    --secondary: #e74c3c;
    --secondary-dark: #c0392b;
    --secondary-light: #ff6b6b;
    --accent: #f39c12;
    --accent-light: #f1c40f;
    --purple: #8e44ad;
    --teal: #00b894;
    --sky: #0984e3;
    --coral: #e17055;
    --cream: #fef9ef;
    --dark: #1a2a3a;
    --dark-light: #2c3e50;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(135deg, #1a7a4f 0%, #2ecc71 100%);
    --gradient-secondary: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    --gradient-accent: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    --gradient-hero: linear-gradient(135deg, #1a2a3a 0%, #1a7a4f 50%, #2ecc71 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --shadow-color: 0 8px 25px rgba(26,122,79,0.25);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* ── Reset & Base ── */
* { box-sizing: border-box; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--gray-900);
    background: var(--gray-50);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--secondary); }

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

/* ── Navbar ── */
.navbar-main {
    background: #fff;
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar-main.scrolled {
    box-shadow: var(--shadow);
    padding: 0.3rem 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary) !important;
}

.navbar-brand span {
    color: var(--secondary);
}

.navbar-main .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.8rem 1rem !important;
    position: relative;
    font-size: 0.95rem;
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    width: 60%;
}

.navbar-main .nav-link:hover {
    color: var(--primary) !important;
}

.nav-cta {
    background: var(--gradient-secondary) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(231,76,60,0.3) !important;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(231,76,60,0.4) !important;
}

.nav-cta:hover {
    background: var(--secondary-dark) !important;
    transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* ── Hero Section ── */
.hero-section {
    background: url('../images/koraput/hero-bg.jpg') center center / cover no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,42,58,0.82) 0%, rgba(26,122,79,0.65) 50%, rgba(46,204,113,0.45) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 80"><path fill="%23f8f9fa" d="M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z"/></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: #fff;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(231,76,60,0.35);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* ── Search Box ── */
.search-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    margin-top: 2rem;
}

.search-box .form-control,
.search-box .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-box .form-control:focus,
.search-box .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.search-box .btn-search {
    background: var(--gradient-secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.search-box .btn-search:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
    filter: brightness(1.1);
}

/* ── Section Styles ── */
.section {
    padding: 5rem 0;
}

.section-light {
    background: #fff;
}

.section-cream {
    background: var(--cream);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    margin: 1rem auto 0.5rem;
}

/* ── Hotel Cards ── */
.hotel-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.hotel-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.hotel-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-secondary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(231,76,60,0.3);
}

.hotel-card-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.hotel-card-price small {
    font-weight: 400;
    opacity: 0.8;
}

.hotel-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hotel-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hotel-card-title a {
    color: var(--dark);
}
.hotel-card-title a:hover {
    color: var(--primary);
}

.hotel-card-location {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

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

.hotel-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hotel-card-amenities .amenity-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hotel-card-amenities .amenity-tag i {
    color: var(--primary);
    font-size: 0.7rem;
}

.hotel-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.hotel-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
}

.hotel-card .btn-book {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(26,122,79,0.25);
}

.hotel-card .btn-book:hover {
    background: var(--gradient-primary);
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(26,122,79,0.35);
}

/* ── Page Header / Banner ── */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 40%, var(--primary) 100%);
    padding: 4rem 0 3rem;
    color: #fff;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    height: 50px;
    background: var(--gray-50);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
}

.page-header .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.page-header .breadcrumb-item a { color: var(--accent); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ── Buttons ── */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(26,122,79,0.3);
}

.btn-primary-custom:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,122,79,0.4);
    filter: brightness(1.1);
}

.btn-secondary-custom {
    background: var(--gradient-secondary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 0.75rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.btn-secondary-custom:hover {
    background: var(--gradient-secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
    filter: brightness(1.1);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 0.65rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,122,79,0.3);
}

/* ── Hotel Detail Page ── */
.hotel-gallery {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hotel-gallery-main {
    height: 450px;
    overflow: hidden;
}

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

.hotel-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hotel-gallery-thumbs img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.hotel-gallery-thumbs img:hover,
.hotel-gallery-thumbs img.active {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--primary);
}

.hotel-info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.hotel-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.hotel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 1rem 0;
    color: var(--gray-700);
}

.hotel-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-meta-item i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.amenity-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* ── Room Cards ── */
.room-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.room-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.room-card-body {
    padding: 1.25rem;
}

.room-card .room-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.room-card .room-price small {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-500);
}

/* ── Booking Page ── */
.booking-summary {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    border-top: 4px solid;
    border-image: var(--gradient-primary) 1;
}

.booking-summary h4 {
    font-size: 1.2rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.booking-summary .price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.booking-summary .price-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    border-top: 2px solid var(--gray-200);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

/* ── Payment Options ── */
.payment-option {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    background: #fff;
}
.payment-option:hover {
    border-color: var(--primary);
    background: rgba(45,106,79,0.02);
}
.payment-option.selected {
    border-color: var(--primary);
    background: rgba(45,106,79,0.05);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}
.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.payment-option label {
    cursor: pointer;
    margin: 0;
    display: block;
}
.payment-option label strong {
    font-size: 1rem;
    margin-bottom: 2px;
}
.payment-option label small {
    font-size: 0.8rem;
}

/* ── Blog Cards ── */
.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    display: inline-block;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.blog-card-title a { color: var(--dark); }
.blog-card-title a:hover { color: var(--primary); }

.blog-card-excerpt {
    color: var(--gray-700);
    font-size: 0.9rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

/* ── Blog Detail ── */
.blog-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    line-height: 1.9;
}

.blog-content h2 { font-size: 1.6rem; margin: 2rem 0 1rem; }
.blog-content h3 { font-size: 1.3rem; margin: 1.5rem 0 0.75rem; }
.blog-content p { margin-bottom: 1.25rem; }
.blog-content img { border-radius: var(--radius); margin: 1rem 0; }

/* ── Attraction Cards ── */
.attraction-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

.attraction-card-body {
    padding: 1.25rem;
}

.attraction-distance {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Attraction Detail Hero ── */
.attraction-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.attraction-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 2.5rem;
}
.attraction-hero h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.75rem 0 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.attraction-hero .breadcrumb a,
.attraction-hero .breadcrumb-item.active {
    color: rgba(255,255,255,0.85);
}
.attraction-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}
.attraction-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}
.attraction-hero-meta span {
    background: rgba(255,255,255,0.15);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}
.attraction-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #444;
    margin-bottom: 1.25rem;
}
.nearby-attraction-link {
    display: block;
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    padding: 0.25rem 0;
    transition: var(--transition);
}
.nearby-attraction-link:last-child {
    border-bottom: none;
}
.nearby-attraction-link:hover {
    background: var(--gray-50);
    border-radius: var(--radius);
}
.nearby-attraction-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(45,106,79,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Homepage Visual Sections ── */
.koraput-showcase {
    padding: 5rem 0;
    overflow: hidden;
}
.koraput-showcase .showcase-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.koraput-showcase .showcase-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.koraput-showcase .showcase-img:hover img {
    transform: scale(1.03);
}
.koraput-showcase .showcase-content h3 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 1rem;
}
.koraput-showcase .showcase-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}
.showcase-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.showcase-tag.tag-nature {
    background: linear-gradient(135deg, #1a7a4f, #2ecc71);
}

.showcase-tag.tag-coffee {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.showcase-tag.tag-waterfalls {
    background: linear-gradient(135deg, #0984e3, #00b894);
}

.showcase-tag.tag-tribal {
    background: linear-gradient(135deg, #8e44ad, #a855f7);
}
.koraput-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 1rem;
}
.koraput-gallery .gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.koraput-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.koraput-gallery .gallery-item:hover img {
    transform: scale(1.08);
}
.koraput-gallery .gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: var(--transition);
}
.koraput-gallery .gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.koraput-gallery .gallery-item .gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}
.koraput-gallery .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.koraput-gallery .gallery-item:nth-child(2) { grid-column: 3; grid-row: 1; }
.koraput-gallery .gallery-item:nth-child(3) { grid-column: 4; grid-row: 1; }
.koraput-gallery .gallery-item:nth-child(4) { grid-column: 3; grid-row: 2; }
.koraput-gallery .gallery-item:nth-child(5) { grid-column: 4; grid-row: 2; }

/* ── Reviews ── */
.review-card {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.review-card .reviewer-name {
    font-weight: 700;
    color: var(--dark);
}

.review-card .review-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ── Contact Page ── */
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* ── Why Koraput Section ── */
.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    transition: var(--transition);
}

.feature-icon.icon-mountains {
    background: linear-gradient(135deg, #1a7a4f 0%, #2ecc71 100%);
    box-shadow: 0 8px 20px rgba(26,122,79,0.3);
}

.feature-icon.icon-tribal {
    background: linear-gradient(135deg, #8e44ad 0%, #a855f7 100%);
    box-shadow: 0 8px 20px rgba(142,68,173,0.3);
}

.feature-icon.icon-waterfalls {
    background: linear-gradient(135deg, #0984e3 0%, #00b894 100%);
    box-shadow: 0 8px 20px rgba(9,132,227,0.3);
}

.feature-icon.icon-coffee {
    background: linear-gradient(135deg, #f39c12 0%, #e74c3c 100%);
    box-shadow: 0 8px 20px rgba(243,156,18,0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* ── Testimonials ── */
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-image: var(--gradient-secondary) 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.testimonial-card .reviewer {
    font-weight: 700;
    color: var(--dark);
}

/* ── Footer ── */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 4rem 0 0;
}

.footer h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links li i {
    color: var(--secondary);
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.25rem 0;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

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

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    padding-left: 0;
}

/* ── Filter Sidebar ── */
.filter-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.filter-card h5 {
    font-size: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1rem;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.price-range-display {
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
}

/* ── Pagination ── */
.pagination .page-link {
    color: var(--primary);
    border-radius: 8px;
    margin: 0 3px;
    border: none;
    padding: 0.5rem 1rem;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    color: #fff;
}

/* ── Forms ── */
.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

/* ── Alert Messages ── */
.alert-success-custom {
    background: rgba(45, 106, 79, 0.1);
    border: 1px solid rgba(45, 106, 79, 0.2);
    color: var(--primary-dark);
    border-radius: var(--radius);
}

.alert-error-custom {
    background: rgba(231, 111, 81, 0.1);
    border: 1px solid rgba(231, 111, 81, 0.2);
    color: var(--secondary-dark);
    border-radius: var(--radius);
}

/* ── Stats Counter ── */
.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 50%, #e74c3c 100%);
    background-size: 200% 100%;
    animation: ctaGradient 4s ease infinite;
    padding: 4rem 0;
    text-align: center;
    color: #fff;
}

@keyframes ctaGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-section h2 { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.2); }

.cta-section .btn {
    background: #fff;
    color: var(--secondary);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ── Loading Spinner ── */
.spinner-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

/* ── Global overflow protection ── */
html, body {
    overflow-x: hidden;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-section { min-height: 500px; }
    .hero-section h1 { font-size: 2.2rem; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.8rem; }
    .hotel-gallery-main { height: 300px; }

    /* Disable sticky sidebar on tablet/mobile */
    .booking-summary,
    .filter-card {
        position: static;
    }

    /* Gallery — 2 cols on tablet */
    .koraput-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 200px 200px 200px;
    }
    .koraput-gallery .gallery-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .koraput-gallery .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .koraput-gallery .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
    .koraput-gallery .gallery-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .koraput-gallery .gallery-item:nth-child(5) { grid-column: 2; grid-row: 3; }

    .koraput-showcase .showcase-img img { height: 300px; }
    .attraction-hero { height: 320px; }
    .attraction-hero h1 { font-size: 2rem; }
}

@media (max-width: 767px) {
    .hero-section { min-height: auto; padding: 3rem 0; }
    .hero-section h1 { font-size: 1.8rem; }
    .hero-section .lead { font-size: 1rem; }
    .search-box { padding: 1rem; }
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.5rem; }
    .page-header { padding: 3rem 0 2rem; }
    .page-header h1 { font-size: 1.8rem; }
    .hotel-gallery-main { height: 250px; }
    .hotel-info-card { padding: 1.25rem; }
    .blog-content { padding: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .footer { padding: 3rem 0 0; }

    /* Hotel card footer — stack rating and button */
    .hotel-card-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .hotel-card .btn-book {
        width: 100%;
        text-align: center;
    }

    /* Room card — center price/button on mobile */
    .room-card .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }

    .room-card .btn-secondary-custom {
        width: 100%;
    }

    /* Amenity grid — 2 columns on mobile */
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hotel detail — price section stack */
    .hotel-info-card .d-flex.flex-wrap.justify-content-between {
        flex-direction: column;
        gap: 1rem;
    }

    .hotel-info-card .text-end {
        text-align: left !important;
    }

    /* Contact cards — 2 per row */
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    /* CTA section */
    .cta-section { padding: 3rem 0; }
    .cta-section h2 { font-size: 1.4rem; }
    .cta-section .lead { font-size: 0.95rem; }

    /* Testimonial cards */
    .testimonial-card { padding: 1.25rem; }
    .testimonial-card .quote-icon { font-size: 1.5rem; }

    /* Koraput gallery — single col on mobile */
    .koraput-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }
    .koraput-gallery .gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .koraput-gallery .gallery-item:nth-child(2) { grid-column: 1; grid-row: 2; }
    .koraput-gallery .gallery-item:nth-child(3) { grid-column: 1; grid-row: 3; }
    .koraput-gallery .gallery-item:nth-child(4) { grid-column: 1; grid-row: 4; }
    .koraput-gallery .gallery-item:nth-child(5) { grid-column: 1; grid-row: 5; }
    .koraput-showcase { padding: 3rem 0; }
    .koraput-showcase .showcase-img img { height: 240px; }
    .koraput-showcase .showcase-content h3 { font-size: 1.4rem; }

    /* Attraction detail hero */
    .attraction-hero { height: 280px; }
    .attraction-hero h1 { font-size: 1.6rem; }
    .attraction-hero-meta { gap: 0.5rem; font-size: 0.8rem; }
    .attraction-hero-meta span { padding: 0.2rem 0.6rem; }
    .attraction-content p { font-size: 1rem; line-height: 1.75; }

    /* Hotel meta — stack items vertically */
    .hotel-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Gallery thumbs scroll horizontally */
    .hotel-gallery-thumbs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .hotel-gallery-thumbs img {
        flex-shrink: 0;
    }

    /* Review card */
    .review-card .d-flex.justify-content-between {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 575px) {
    .hero-section h1 { font-size: 1.5rem; }
    .hero-section .lead { font-size: 0.9rem; }
    .hotel-card-img { height: 180px; }
    .search-box .btn-search { width: 100%; margin-top: 0.5rem; }

    /* Navbar brand size */
    .navbar-brand { font-size: 1.15rem; }

    /* Section titles smaller */
    .section-title { font-size: 1.3rem; }
    .section-subtitle { font-size: 0.95rem; }

    /* Feature icons smaller */
    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 1.2rem;
    }

    /* Stat numbers */
    .stat-number { font-size: 1.7rem; }
    .stat-label { font-size: 0.8rem; }

    /* Page header */
    .page-header h1 { font-size: 1.4rem; }
    .page-header::after { height: 30px; }

    /* Blog card image */
    .blog-card-img { height: 160px; }

    /* Price tag on hotel card */
    .hotel-card-price { font-size: 0.85rem; padding: 0.3rem 0.6rem; }

    /* Amenity grid — single column on very small */
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .amenity-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    /* Booking summary */
    .booking-summary {
        padding: 1rem;
    }

    /* Filter card */
    .filter-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Back to top — smaller on mobile */
    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient-secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(231,76,60,0.35);
    transition: var(--transition);
    z-index: 1000;
    cursor: pointer;
}

.back-to-top:hover {
    background: var(--gradient-secondary);
    filter: brightness(1.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
}

.back-to-top.show {
    display: flex;
}
