/**
 * Park Amaira Banani - Main Stylesheet
 * Version: 1.0.0
 * Description: Complete styling for guesthouse theme
 */

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables & Reset
   2. Typography
   3. Layout & Container
   4. Buttons
   5. Header & Navigation
   6. Hero Section
   7. Rooms Section
   8. Amenities Section
   9. About Section
   10. Testimonials Section
   11. FAQ Section
   12. Map Section
   13. Footer
   14. Back to Top Button
   15. WhatsApp Button
   16. Preloader
   17. Breadcrumbs
   18. Pagination
   19. Forms
   20. Animations
   21. Utility Classes
   ============================================ */

/* ============================================
   1. CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8960C;
    --primary-light: #E8D176;
    --secondary-color: #2C3E50;
    --secondary-dark: #1A252F;
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;
    --white: #FFFFFF;
    --gray-bg: #F8F9FA;
    --gray-light: #EEEEEE;
    --gray-dark: #999999;
    --border-color: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 25px;
    --border-radius-round: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* ============================================
   2. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

/* ============================================
   3. Layout & Container
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 80px 0;
}

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

.section-lg {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Grid Systems */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-2 { width: 50%; }
.col-3 { width: 33.333%; }
.col-4 { width: 25%; }

/* ============================================
   4. Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-round);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

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

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

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

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

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

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

/* ============================================
   5. Header & Navigation
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.logo img {
    max-height: 50px;
    width: auto;
}

.logo h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.logo h2 span {
    color: var(--primary-color);
}

/* Desktop Navigation */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover:after,
.nav-menu a.active:after {
    width: 100%;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: var(--shadow-lg);
    padding: 20px;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.mobile-nav-close:hover {
    color: var(--primary-color);
}

.mobile-primary-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-primary-menu li {
    margin-bottom: 15px;
}

.mobile-primary-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 8px 0;
    transition: var(--transition);
}

.mobile-primary-menu a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mobile-contact-info {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-contact-info a {
    display: block;
    padding: 12px;
    margin: 10px 0;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius-round);
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-contact-info a:hover {
    background: var(--primary-dark);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

/* ============================================
   6. Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.hero-content {
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Booking Widget */
.quick-booking-widget {
    background: rgba(255,255,255,0.95);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
}

.quick-booking-widget h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.booking-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.booking-field {
    flex: 1;
    min-width: 150px;
}

.booking-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 0.9rem;
    transition: var(--transition);
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
}

/* ============================================
   7. Rooms Section
   ============================================ */
.rooms-section {
    background: var(--gray-bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.room-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--border-radius-round);
    font-size: 0.75rem;
    font-weight: 600;
}

.room-info {
    padding: 25px;
}

.room-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.room-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.room-price {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 15px 0;
}

.room-price span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

.room-bed {
    margin: 10px 0;
    font-size: 0.9rem;
}

.room-bed i {
    color: var(--primary-color);
    margin-right: 5px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
    list-style: none;
    padding: 0;
}

.room-amenities li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.room-amenities li i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.room-btn {
    width: 100%;
    margin-top: 10px;
}

/* ============================================
   8. Amenities Section
   ============================================ */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.amenity-item {
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.amenity-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenity-item h4 {
    margin-bottom: 10px;
}

.amenity-item p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   9. About Section
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.about-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   10. Testimonials Section
   ============================================ */
.testimonials-section {
    background: var(--gray-bg);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.testimonial-position {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   11. FAQ Section
   ============================================ */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-bg);
}

.faq-question:after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ============================================
   12. Map Section
   ============================================ */
.map-section {
    padding-bottom: 0;
}

.map-container {
    width: 100%;
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(10%);
    transition: var(--transition);
}

.map-container iframe:hover {
    filter: grayscale(0%);
}

/* ============================================
   13. Footer
   ============================================ */
.site-footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget-title {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

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

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

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

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

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

.footer-contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-contact-info li a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-info li a:hover {
    color: var(--primary-color);
}

.footer-contact-info li i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius-round) 0 0 var(--border-radius-round);
    outline: none;
    font-size: 0.9rem;
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius-round) var(--border-radius-round) 0;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 30px;
    background: var(--white);
    padding: 5px 8px;
    border-radius: var(--border-radius-sm);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

/* ============================================
   14. Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   15. WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: var(--border-radius-round);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37,211,102,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float a {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #20B859;
}

.whatsapp-float i {
    font-size: 1.3rem;
}

/* ============================================
   16. Preloader
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   17. Breadcrumbs
   ============================================ */
.breadcrumbs {
    background: var(--gray-bg);
    padding: 15px 0;
    margin-top: 80px;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    margin-left: 10px;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
}

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

.breadcrumbs .current {
    color: var(--primary-color);
}

/* ============================================
   18. Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    transition: var(--transition);
}

.page-numbers.current,
.page-numbers:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   19. Forms
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
}

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

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

.room-card,
.amenity-item,
.testimonial-card,
.about-content,
.about-image {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.room-card.animated,
.amenity-item.animated,
.testimonial-card.animated,
.about-content.animated,
.about-image.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.room-card:nth-child(1).animated { transition-delay: 0.05s; }
.room-card:nth-child(2).animated { transition-delay: 0.1s; }
.room-card:nth-child(3).animated { transition-delay: 0.15s; }
.room-card:nth-child(4).animated { transition-delay: 0.2s; }
.room-card:nth-child(5).animated { transition-delay: 0.25s; }
.room-card:nth-child(6).animated { transition-delay: 0.3s; }

.amenity-item:nth-child(1).animated { transition-delay: 0.05s; }
.amenity-item:nth-child(2).animated { transition-delay: 0.1s; }
.amenity-item:nth-child(3).animated { transition-delay: 0.15s; }
.amenity-item:nth-child(4).animated { transition-delay: 0.2s; }
.amenity-item:nth-child(5).animated { transition-delay: 0.25s; }
.amenity-item:nth-child(6).animated { transition-delay: 0.3s; }

/* ============================================
   21. Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-white { color: var(--white); }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }

.bg-primary { background: var(--primary-color); }
.bg-secondary { background: var(--secondary-color); }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-bg); }

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.pt-0 { padding-top: 0; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pb-0 { padding-bottom: 0; }
.pb-20 { padding-bottom: 20px; }
.pb-40 { padding-bottom: 40px; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--border-radius-md); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-circle { border-radius: 50%; }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Testimonials Section Enhancements */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-rating i {
    margin: 0 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1rem;
}

.testimonial-position {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* Admin FAQ Link */
.admin-faq-link .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.admin-faq-link .btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* FAQ Shortcode Custom Styles */
.park-amaira-faq-shortcode {
    margin: 30px 0;
}

/* Loading Animation */
.faq-item {
    animation: faqFadeIn 0.5s ease;
}

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

/* Icon for Question */
.faq-style-accordion .faq-question:before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 12px;
    color: var(--primary-color);
}

/* Active State Icon */
.faq-style-accordion .faq-item.active .faq-question:before {
    content: '\f13e';
    font-weight: 900;
}

/* Grid Item Hover Effect */
.faq-style-grid .faq-item {
    transition: all 0.3s ease;
}

.faq-style-grid .faq-item:hover {
    border-color: var(--primary-color);
}

/* List Item Icon */
.faq-style-list .faq-question:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    margin-right: 10px;
    color: var(--primary-color);
}

/* ============================================
   ADDITIONAL STYLES - SALE PRICES & BADGES
   ============================================ */

/* Sale Price Styles */
.room-price .old-price {
    text-decoration: line-through;
    color: var(--gray-dark);
    font-size: 1rem;
    margin-right: 8px;
}

.room-price .sale-price {
    color: #e74c3c;
    font-size: 1.75rem;
    font-weight: 700;
    margin-right: 8px;
}

.room-price .regular-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-price .per-night {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: normal;
}

/* Room Badge Sale Variant */
.room-badge.sale {
    background: #e74c3c;
    color: white;
    animation: pulse 1.5s infinite;
}

/* Pulse Animation for Sale Badge */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* More Amenities Link */
.more-amenities {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.more-amenities:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Room Details Row */
.room-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.room-details-row span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.room-details-row span i {
    color: var(--primary-color);
}

/* ============================================
   LOCATION CARD STYLES (Find Us Section)
   ============================================ */

.location-card {
    max-width: 400px;
    margin: -50px auto 30px;
    position: relative;
    z-index: 10;
}

.location-card-inner {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon i {
    font-size: 24px;
    color: var(--secondary-color);
}

.location-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.location-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.location-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.location-contact span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
}

.location-contact i {
    color: var(--primary-color);
    width: 20px;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-directions:hover {
    background: var(--primary-dark);
    color: white;
    gap: 12px;
}

/* ============================================
   BREADCRUMB WRAPPER STYLES
   ============================================ */

.breadcrumb-wrapper {
    background: var(--gray-bg);
    margin-top: 80px;
    padding: 15px 0;
}

.breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* ============================================
   ADMIN FAQ LINK CONTAINER
   ============================================ */

.admin-faq-link {
    text-align: center;
    margin-top: 30px;
}

.admin-faq-link .btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.admin-faq-link .btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ============================================
   FEATURED ROOM BADGE
   ============================================ */

.room-badge.featured {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Featured Room Card Border */
.room-card.featured-room {
    border: 2px solid var(--primary-color);
    position: relative;
}

.room-card.featured-room:before {
    content: '★ FEATURED';
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 2px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
}

/* ============================================
   QUICK BOOKING WIDGET - MOBILE FIX
   ============================================ */

@media (max-width: 768px) {
    .quick-booking-widget {
        padding: 20px;
    }
    
    .booking-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .booking-field {
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE FIXES FOR LOCATION CARD
   ============================================ */

@media (max-width: 768px) {
    .location-card {
        margin: -30px 20px 20px;
    }
    
    .location-card-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .location-contact {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-directions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .location-card {
        margin: -20px 15px 20px;
    }
    
    .location-card-inner {
        padding: 20px;
    }
}

/* ============================================
   BREADCRUMB RESPONSIVE FIX
   ============================================ */

@media (max-width: 768px) {
    .breadcrumb-wrapper {
        margin-top: 70px;
        padding: 12px 0;
    }
    
    .breadcrumb ul {
        font-size: 12px;
    }
}

/* ============================================
   WHATSAPP BUTTON RESPONSIVE FIX
   ============================================ */

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
    }
    
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
}

/* ============================================
   BACK TO TOP RESPONSIVE FIX
   ============================================ */

@media (max-width: 768px) {
    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .whatsapp-float,
    .back-to-top,
    .breadcrumb-wrapper,
    .quick-booking-widget,
    .admin-faq-link,
    .hero-buttons,
    .room-btn {
        display: none;
    }
    
    .hero {
        margin-top: 0;
        height: auto;
        min-height: auto;
        background: none;
        color: var(--text-dark);
    }
    
    .hero-content h1,
    .hero-content p {
        color: var(--text-dark);
    }
    
    .room-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ============================================
   TOP BAR STYLES
   ============================================ */
.top-bar {
    background: #2C3E50;
    color: white;
    padding: 10px 0;
    font-size: 13px;
    display: block !important;
}

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

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: #D4AF37;
}

.top-bar i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .top-bar a {
        margin-left: 0;
        margin-right: 10px;
    }
}

/* ============================================
   FOOTER LAYOUT STYLES
   ============================================ */
.footer-grid {
    display: grid;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    .footer-contact-info li {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}