/**
 * Gautami Resorts Trimbakeshwar
 * Premium Resort Website Styles
 */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --primary: #8a126f;
    --primary-dark: #5d0b4e;
    --primary-light: #b33a96;
    --gold: #c9952f;
    --gold-light: #e8c978;
    --dark: #17141a;
    --text: #333333;
    --muted: #777777;
    --light-bg: #fbf8fb;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

/* =====================================================
   Utility Classes
   ===================================================== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

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

.text-gold {
    color: var(--gold);
}

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

.bg-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.text-primary-custom {
    color: var(--primary) !important;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--white);
    border: none;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 149, 47, 0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

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

/* =====================================================
   Header / Navigation
   ===================================================== */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 0;
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text);
    font-weight: 500;
    padding: 10px 18px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(23, 20, 26, 0.5), rgba(23, 20, 26, 0.7)),
                url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-welcome {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-highlight i {
    color: var(--gold);
    font-size: 1.2rem;
}

.welcome-section {
    padding: 64px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(201, 149, 47, 0.12), transparent 30%),
        linear-gradient(135deg, #fbf8fb 0%, #ffffff 55%, #f7eef5 100%);
    text-align: center;
}

.welcome-content {
    max-width: 980px;
    margin: 0 auto;
}

.welcome-section .hero-welcome {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.welcome-section .hero-title {
    color: var(--dark);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.06;
    text-shadow: none;
    margin-bottom: 1rem;
}

.welcome-section .hero-subtitle {
    color: var(--primary-dark);
    opacity: 1;
    margin-bottom: 2rem;
}

.welcome-section .hero-highlight {
    color: var(--dark);
}

.welcome-section .hero-buttons {
    margin-bottom: 1.5rem;
}

.home-slideshow-section {
    padding: 34px 0 70px;
    background: var(--white);
}

.home-photo-carousel {
    max-width: 1120px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.home-photo-carousel .carousel-item img {
    height: 560px;
    object-fit: cover;
}

.home-photo-carousel .carousel-caption {
    background: linear-gradient(to top, rgba(23, 20, 26, 0.72), rgba(23, 20, 26, 0));
    left: 0;
    right: 0;
    bottom: 0;
    padding: 5rem 2rem 2rem;
}

.home-photo-carousel .carousel-caption h5 {
    font-size: 1.5rem;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =====================================================
   Booking Card (Floating)
   ===================================================== */
.booking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.booking-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.booking-card .form-control,
.booking-card .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
}

.booking-card .form-control:focus,
.booking-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 18, 111, 0.1);
}

/* =====================================================
   Stay Section
   ===================================================== */
.stay-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stay-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.stay-card-body {
    padding: 2rem;
}

.stay-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.stay-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stay-features li i {
    color: var(--gold);
}

/* =====================================================
   Pricing Card
   ===================================================== */
.pricing-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.pricing-card .price-note {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-card .price-period {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

.pricing-card ul li {
    padding: 8px 0;
}

.pricing-card ul li i {
    color: var(--gold-light);
    margin-right: 8px;
}

/* =====================================================
   Amenities Section
   ===================================================== */
.amenity-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.amenity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.amenity-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.amenity-card h5 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-title-sm {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0;
}

.special-experience-wrap {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(138, 18, 111, 0.06), rgba(201, 149, 47, 0.08));
    border: 1px solid rgba(138, 18, 111, 0.08);
    border-radius: var(--border-radius);
}

.special-experience-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.special-experience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.special-experience-card .amenity-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    margin: 0;
}

.special-experience-card .amenity-icon i {
    font-size: 1.5rem;
}

.special-experience-card h5 {
    color: var(--dark);
    margin-bottom: 0.35rem;
}

/* =====================================================
   Gallery Section
   ===================================================== */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(138, 18, 111, 0.8), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
}

/* Gallery filter item transitions */
.gallery-item {
    transition: opacity 0.3s ease;
}

.gallery-item.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.gallery-item.visible {
    opacity: 1;
    pointer-events: auto;
    display: block;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--primary);
    color: var(--white);
}

/* =====================================================
   Location Section
   ===================================================== */
.location-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.location-card-polished {
    padding: 1.5rem;
    border: 1px solid rgba(138, 18, 111, 0.08);
    box-shadow: 0 18px 55px rgba(93, 11, 78, 0.11);
}

.location-map {
    height: 400px;
    width: 100%;
}

.location-map-polished {
    height: 430px;
    min-height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(138, 18, 111, 0.08), var(--shadow);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    padding: 1.25rem 1rem 1rem;
}

.location-info h4 {
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.location-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 0.4rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1rem;
}

.location-detail-card {
    padding: 1rem;
    background: var(--light-bg);
    border: 1px solid rgba(138, 18, 111, 0.06);
    border-radius: 14px;
}

.location-detail i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.location-detail-body {
    min-width: 0;
}

.location-detail-body strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.location-detail-body span,
.location-detail-body a {
    display: inline-block;
    color: var(--text);
    line-height: 1.65;
    word-break: break-word;
}

.location-detail-body a {
    color: var(--primary);
    font-weight: 500;
}

.location-directions-btn {
    margin: 0.15rem 0 1.15rem;
    padding: 0.9rem 1.55rem;
}

.location-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.nearby-wrap {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(138, 18, 111, 0.04), rgba(201, 149, 47, 0.08));
    border-radius: 18px;
}

.nearby-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nearby-heading span {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--dark);
}

.nearby-heading small {
    color: var(--muted);
    text-align: right;
}

.nearby-places {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
    margin-top: 2rem;
}

.nearby-place {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.nearby-places-polished {
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    margin-top: 0;
}

.nearby-places-polished .nearby-place {
    background: var(--white);
    border: 1px solid rgba(138, 18, 111, 0.06);
    box-shadow: 0 8px 20px rgba(23, 20, 26, 0.04);
}

.nearby-place i {
    color: var(--primary);
}

/* =====================================================
   Enquiry Form
   ===================================================== */
.enquiry-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.enquiry-form {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.enquiry-form h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 18, 111, 0.1);
}

.enquiry-form label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

/* =====================================================
   About Section
   ===================================================== */
.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--white);
}

/* =====================================================
   WhatsApp Float Button
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    padding: 60px 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-title {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

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

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

.footer-contact .contact-item i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact .contact-item a,
.footer-contact .contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact .contact-item a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 12px;
}

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

.social-link:hover {
    background: var(--gold);
    color: var(--white);
}

.payment-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

/* =====================================================
   Page Headers
   ===================================================== */
.page-header {
    background: linear-gradient(rgba(23, 20, 26, 0.7), rgba(23, 20, 26, 0.8)),
                url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1920&q=80') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

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

.breadcrumb span {
    color: var(--gold);
}

/* =====================================================
   Admin Styles
   ===================================================== */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--dark);
    color: var(--white);
    position: fixed;
    height: 100vh;
    padding: 2rem 0;
}

.admin-sidebar .logo {
    padding: 0 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.admin-sidebar .logo h4 {
    color: var(--white);
    font-size: 1.2rem;
}

.admin-sidebar .logo small {
    color: var(--gold);
}

.admin-nav {
    list-style: none;
    padding: 0;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-nav a i {
    width: 20px;
    color: var(--gold);
}

.admin-content {
    flex: 1;
    margin-left: 260px;
    padding: 2rem;
    background: var(--light-bg);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 1.8rem;
}

.stat-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.stat-card .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-card .stat-label {
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-table {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.admin-table table {
    width: 100%;
    margin: 0;
}

.admin-table th {
    background: var(--primary);
    color: var(--white);
    padding: 15px;
    font-weight: 500;
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.admin-table tr:hover {
    background: var(--light-bg);
}

/* =====================================================
   Login Page
   ===================================================== */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.login-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.login-card h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-card p {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* =====================================================
   Alerts
   ===================================================== */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* =====================================================
   Lightbox Modal
   ===================================================== */
.lightbox-modal .modal-content {
    background: transparent;
    border: none;
}

.lightbox-modal .modal-body {
    padding: 0;
}

.lightbox-modal img {
    width: 100%;
    border-radius: var(--border-radius);
}

.lightbox-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    border-radius: 50%;
    opacity: 1;
    z-index: 10;
}

/* =====================================================
   Responsive Styles
   ===================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-highlights {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .booking-card {
        margin-top: 0;
    }

    .home-photo-carousel .carousel-item img {
        height: 420px;
    }

    .special-experience-wrap {
        padding: 1.5rem;
    }

    .location-map-polished {
        height: 360px;
    }

    .nearby-heading {
        display: block;
    }

    .nearby-heading small {
        display: block;
        margin-top: 0.25rem;
        text-align: left;
    }
    
    .admin-sidebar {
        width: 100%;
        position: relative;
        height: auto;
    }
    
    .admin-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .welcome-section {
        padding: 48px 0 24px;
    }

    .welcome-section .hero-welcome {
        font-size: 1.05rem;
        letter-spacing: 2px;
    }

    .welcome-section .hero-title {
        font-size: 2.15rem;
    }

    .home-slideshow-section {
        padding-bottom: 45px;
    }

    .home-photo-carousel .carousel-item img {
        height: 280px;
    }

    .home-photo-carousel .carousel-caption {
        padding: 3rem 1rem 1rem;
    }

    .home-photo-carousel .carousel-caption h5 {
        font-size: 1rem;
    }

    .section-title-sm {
        font-size: 1.55rem;
    }

    .special-experience-wrap {
        padding: 1.25rem;
    }

    .special-experience-card {
        align-items: flex-start;
        padding: 1.25rem;
    }

    .location-card-polished {
        padding: 1rem;
    }

    .location-info {
        padding: 0.5rem 0 0;
    }

    .location-info h4 {
        font-size: 1.65rem;
    }

    .location-map-polished {
        height: 300px;
    }

    .nearby-wrap {
        padding: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .enquiry-form {
        padding: 2rem 1.5rem;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

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

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

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

.pulse {
    animation: pulse 2s infinite;
}
