/* === CSS VARIABLES & RESET === */
:root {
    --primary-bg: #ffffff;
    --accent: #d4903c;
    --accent-light: #e0a050;
    --accent-deep: #b8751f;
    --text-dark: #1f1f1f;
    --text-light: #666666;
    --text-white: #ffffff;
    --border-radius: 24px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8f9fa;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* === SCROLLBAR STYLING === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-deep);
}

/* === SELECTION STYLING === */
::selection {
    background: var(--accent);
    color: white;
}

/* === NAVIGATION === */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    color: var(--text-white);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    color: var(--accent);
}

.logo i {
    font-size: 1.3rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 0.9rem;
    align-items: center;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Badges */
.badge {
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-soon {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

.badge-call {
    background-color: var(--accent);
    color: white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.nav-link-disabled {
    cursor: default;
    opacity: 0.7;
}

.nav-link-disabled:hover {
    color: inherit !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    background-color: var(--accent);
    color: var(--text-white);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.login-btn:hover {
    background-color: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 144, 60, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Only Items */
.mobile-only {
    display: none;
}

/* === HERO SECTION === */
header.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25)),
        url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1920&q=80');
    background-size: cover;
    background-position: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 120px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    max-width: 800px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.hero p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    font-size: 1.1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.customer-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeInDown 0.8s ease-out;
}

.customer-badge i {
    color: var(--accent);
}

/* Hero Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SEARCH BAR === */
.search-container {
    position: absolute;
    bottom: -40px;
    background: white;
    padding: 10px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.12);
    width: 90%;
    max-width: 900px;
    justify-content: space-between;
    z-index: 50;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-right: 1px solid #eee;
    flex: 1;
    cursor: pointer;
    border-radius: 20px;
    transition: var(--transition);
}

.search-item:last-of-type {
    border-right: none;
}

.search-item:hover {
    background: #f8f9fa;
}

.search-item i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.search-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-label {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-value {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.search-btn:hover {
    background-color: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 144, 60, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

/* === LISTINGS SECTION === */
.listings {
    padding: 100px 5% 50px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.header-text h2 {
    font-size: 2rem;
    margin-bottom: 5px;
    position: relative;
}

.header-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.header-text p {
    color: var(--text-light);
    margin-top: 15px;
}

.filters {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 144, 60, 0.3);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Card Entrance Animation */
.card {
    height: 400px;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: cardFadeIn 0.5s forwards;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}

.card:nth-child(2) {
    animation-delay: 0.2s;
}

.card:nth-child(3) {
    animation-delay: 0.3s;
}

.card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.heart-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.heart-icon:hover {
    color: red;
    transform: scale(1.15);
}

.heart-icon.liked {
    color: red;
}

.heart-icon.liked i {
    animation: heartBeat 0.4s ease;
}

@keyframes heartBeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.card-location {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-location::before {
    content: '📍';
    font-size: 0.75rem;
}

.amenities {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.amenities span {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px 8px;
    border-radius: 6px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

.price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: white;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 8px;
}

.rating i {
    color: gold;
}

/* === FEATURES SECTION === */
.features-section {
    padding: 60px 5%;
    display: flex;
    gap: 50px;
    align-items: center;
    background: #f0f4f8;
    border-radius: 40px;
    margin: 50px 5%;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
}

.features-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.features-text>p {
    color: var(--text-light);
    margin-bottom: 30px;
    margin-top: 15px;
    font-size: 0.95rem;
}

.feature-item {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--accent-deep);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h4 i {
    width: 30px;
    height: 30px;
    background: rgba(212, 144, 60, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--accent);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 40px;
}

.features-img {
    flex: 1;
    position: relative;
    height: 500px;
}

.collage-img {
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow);
    border: 4px solid white;
    transition: transform 0.5s ease;
}

.collage-img:hover {
    transform: scale(1.02);
}

.c-1 {
    width: 65%;
    height: 55%;
    top: 0;
    right: 0;
    z-index: 1;
}

.c-2 {
    width: 60%;
    height: 50%;
    bottom: 20px;
    left: 0;
    z-index: 2;
}

.badge-float {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: var(--shadow);
    color: var(--accent-deep);
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-float i {
    color: gold;
}

/* === ACCLAIMED SECTION (Temple Info) === */
.acclaimed {
    margin: 80px 5%;
    border-radius: 40px;
    min-height: 450px;
    background: url('https://images.unsplash.com/photo-1551882547-ff40c63fe5fa?q=80&w=2070&auto=format&fit=crop') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px;
    overflow: hidden;
}

.acclaimed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 40px;
}

.acclaimed-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 500px;
}

.acclaimed-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.acclaimed-content p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
    font-size: 0.95rem;
}

.floating-card {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 25px;
    border-radius: 20px;
    width: 320px;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.floating-card:hover {
    transform: translateY(-52%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.fc-details h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.book-btn {
    background: var(--accent);
    color: white;
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 12px;
    margin-top: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.book-btn:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 144, 60, 0.4);
}

/* === TESTIMONIALS === */
.testimonials {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    padding: 80px 5%;
    text-align: center;
    border-radius: 40px;
    margin: 0 5% 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 15rem;
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    position: relative;
}

.testimonials p.subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    min-height: 250px;
}

.quote-box {
    display: none;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease;
}

.quote-box.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-text {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.7;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.author div {
    text-align: left;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Avatar Row */
.avatars-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0.5;
    transition: var(--transition);
    cursor: pointer;
}

.avatar.active {
    transform: scale(1.25);
    opacity: 1;
    border-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.avatar:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.stars {
    color: gold;
    font-size: 0.85rem;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* === FOOTER === */
footer {
    background: #111;
    color: white;
    padding: 60px 5% 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col p {
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-col ul li a {
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-col ul li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Footer Social */
.footer-social {
    font-size: 1.5rem;
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-social a {
    color: #aaa;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-3px);
}

.footer-social a:nth-child(1):hover {
    background: #25d366;
}

.footer-social a:nth-child(2):hover {
    background: #1877f2;
}

.footer-social a:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social a:nth-child(4):hover {
    background: #ff0000;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

/* === MODALS === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

.custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    padding: 25px;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    z-index: 2001;
    display: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.custom-modal.active {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.close-modal {
    font-size: 1.8rem;
    cursor: pointer;
    color: #888;
    transition: var(--transition);
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.close-modal:hover {
    color: #333;
    background: #f0f0f0;
}

/* Location Options */
.location-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loc-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.loc-option:hover {
    border-color: var(--accent-light);
    background: #fffaf5;
}

.loc-option.active {
    border-color: var(--accent);
    background: #fff8f0;
}

.loc-option i:first-child {
    font-size: 1.3rem;
    color: var(--accent);
    width: 40px;
    height: 40px;
    background: rgba(212, 144, 60, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.loc-option div {
    flex: 1;
}

.loc-option strong {
    display: block;
    font-size: 0.95rem;
}

.loc-option small {
    color: #888;
    font-size: 0.8rem;
}

.check-icon {
    color: var(--accent);
    display: none;
    font-size: 1.1rem;
}

.loc-option.active .check-icon {
    display: block;
}

/* Date Inputs */
.date-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.date-field {
    flex: 1;
}

.date-field label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.date-field input {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    color: #333;
}

.date-field input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 144, 60, 0.1);
}

.stay-duration {
    text-align: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
    font-weight: 500;
}

.stay-duration i {
    color: var(--accent);
    margin-right: 5px;
}

/* Guest Counter */
.guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}

.guest-row:last-of-type {
    border-bottom: none;
}

.guest-label strong {
    display: block;
    font-size: 0.95rem;
}

.guest-label small {
    color: #888;
    font-size: 0.8rem;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.count-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.count-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: #fff8f0;
}

.count-btn:active {
    transform: scale(0.9);
}

.guest-counter span {
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

/* Apply Button (Modals) */
.apply-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.apply-btn:hover {
    background: var(--accent-deep);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 144, 60, 0.4);
}

.apply-btn:active {
    transform: translateY(0);
}

/* === FLOATING WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* === RESPONSIVE - TABLET & MOBILE === */
@media (max-width: 900px) {

    /* Navigation */
    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
        color: white;
    }

    /* Mobile Menu Overlay */
    .nav-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }

    .nav-active .menu-toggle {
        z-index: 1001;
        position: relative;
        color: var(--text-dark);
    }

    .nav-active .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background: white;
        z-index: 999;
        padding: 80px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        color: var(--text-dark);
        gap: 0;
        overflow-y: auto;
        animation: slideInRight 0.3s ease;
    }

    @keyframes slideInRight {
        from {
            transform: translateX(100%);
        }

        to {
            transform: translateX(0);
        }
    }

    .nav-active .nav-links li {
        padding: 0;
    }

    .nav-active .nav-links a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        border-bottom: 1px solid #f0f0f0;
        padding: 15px 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-active .nav-links a:hover {
        color: var(--accent);
    }

    .nav-active .mobile-only {
        display: block;
    }

    .nav-active .badge-soon {
        background-color: #f0f0f0;
        color: #999;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* Search Bar */
    .search-container {
        position: relative;
        bottom: 0;
        flex-direction: column;
        width: 100%;
        gap: 5px;
        border-radius: 20px;
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 15px;
    }

    .search-item {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 12px 15px;
    }

    .search-item:last-of-type {
        border-bottom: none;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 5px;
        padding: 14px;
    }

    /* Section Headers */
    .header-text h2 {
        font-size: 1.6rem;
    }

    /* Grid */
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        height: 350px;
    }

    /* Features */
    .features-section {
        flex-direction: column;
        padding: 40px 20px;
        margin: 30px 4%;
        border-radius: 30px;
    }

    .features-text h2 {
        font-size: 1.6rem;
    }

    .features-img {
        width: 100%;
        height: 300px;
        margin-top: 20px;
    }

    .c-1 {
        width: 75%;
    }

    .c-2 {
        width: 65%;
    }

    .feature-item {
        padding: 10px;
    }

    .feature-item p {
        padding-left: 40px;
    }

    /* Acclaimed/Temple */
    .acclaimed {
        flex-direction: column;
        padding: 40px 25px;
        min-height: auto;
        text-align: center;
        background-position: center;
        margin: 50px 4%;
        border-radius: 30px;
    }

    .acclaimed::before {
        border-radius: 30px;
    }

    .acclaimed-content {
        margin-bottom: 25px;
    }

    .acclaimed-content h2 {
        font-size: 1.8rem;
    }

    .floating-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 350px;
    }

    .floating-card:hover {
        transform: translateY(-3px);
    }

    /* Testimonials */
    .testimonials {
        margin: 0 4% 40px;
        padding: 50px 20px;
        border-radius: 30px;
    }

    .testimonials h2 {
        font-size: 1.6rem;
    }

    .quote-text {
        font-size: 1rem;
    }

    .testimonials::before {
        font-size: 8rem;
        top: 10px;
        left: 15px;
    }

    /* Listings */
    .listings {
        padding: 80px 4% 40px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .filters {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        font-size: 0.85rem;
        padding: 7px 16px;
    }

    /* Footer */
    .footer-container {
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }

    /* Modals */
    .custom-modal {
        width: 92%;
        max-width: 400px;
        padding: 20px;
    }

    .date-inputs {
        flex-direction: column;
        gap: 12px;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* === EXTRA SMALL DEVICES === */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .customer-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    header.hero {
        min-height: 85vh;
        padding: 100px 15px 100px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .search-container {
        border-radius: 16px;
        padding: 12px;
    }

    .search-item {
        gap: 10px;
        padding: 10px 12px;
    }

    .search-item i {
        font-size: 1rem;
    }

    .hero-value {
        font-size: 0.8rem;
    }

    .search-label {
        font-size: 0.6rem;
    }

    .card {
        height: 320px;
    }

    .card h3 {
        font-size: 1.05rem;
    }

    .amenities {
        gap: 8px;
        font-size: 0.7rem;
    }

    .acclaimed-content h2 {
        font-size: 1.5rem;
    }

    .features-img {
        height: 250px;
    }

    .quote-text {
        font-size: 0.95rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .nav-active .nav-links {
        width: 85%;
    }
}

/* === LARGE SCREENS === */
@media (min-width: 1400px) {
    .hero h1 {
        font-size: 4rem;
    }

    .search-container {
        max-width: 1000px;
    }

    .grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .listings {
        padding: 100px 8% 50px;
    }

    .features-section {
        margin: 50px 8%;
        padding: 70px 6%;
    }

    .acclaimed {
        margin: 80px 8%;
    }

    .testimonials {
        margin: 0 8% 50px;
    }

    footer {
        padding: 60px 8% 30px;
    }
}

/* === PRINT STYLES === */
@media print {

    nav,
    .search-container,
    .whatsapp-float,
    .back-to-top,
    .modal-overlay,
    .custom-modal {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 20px;
        background: none !important;
        color: black;
    }

    .hero h1 {
        color: black;
        text-shadow: none;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}