/* ============================================
   PREMIUM BUNGALOV THEME - Modern & Dynamic
   ============================================ */

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

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.7;
    background: var(--light-color);
    overflow-x: hidden;
}

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

/* ============================================
   HEADER - Premium Navigation
   ============================================ */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 12px 0;
}

.navbar-brand .logo-img {
    max-height: 55px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.05);
}

.navbar-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand .logo-text.premium-logo {
    position: relative;
    animation: logoGlow 3s ease-in-out infinite;
}

.navbar-brand:hover .logo-text {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 0px transparent);
    }

    50% {
        filter: drop-shadow(0 2px 8px rgba(var(--primary-color-rgb, 46, 139, 87), 0.3));
    }
}

.nav-link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 18px !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

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

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

.navbar-buttons .btn {
    border-radius: var(--radius-lg);
    padding: 10px 24px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   HERO SLIDER - Cinematic Experience
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: 0;
}

.heroSwiper {
    height: 100%;
}

.swiper-slide {
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: scale(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.4) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    text-align: center;
    padding-top: 60px;
}

.slide-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.slide-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    margin-bottom: 15px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.slide-description {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 35px;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
}

.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   INFO CARDS - Glassmorphism Style
   ============================================ */
.info-cards {
    margin-top: -80px;
    position: relative;
    z-index: 100;
    padding-bottom: 40px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    height: 100%;
}

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

.info-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
    transition: transform 0.3s ease;
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-top: 20px;
}

/* ============================================
   BUNGALOV CARDS - Premium Dynamic Design
   ============================================ */
.bungalow-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.bungalow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color, #ff6b35));
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 5;
}

.bungalow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(var(--primary-color-rgb, 44, 95, 45), 0.1);
}

.bungalow-card:hover::before {
    transform: scaleX(1);
}

.bungalow-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.bungalow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.4s ease;
}

.bungalow-card:hover .bungalow-image img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

.bungalow-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bungalow-card:hover .bungalow-image::after {
    opacity: 0.8;
}

.bungalow-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #ff8f5a);
    color: white;
    padding: 12px 22px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 3;
    backdrop-filter: blur(10px);
    letter-spacing: -0.5px;
}

.bungalow-price-badge small {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
    margin-left: 1px;
}

/* Capacity Badge on Image */
.bungalow-capacity-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bungalow-capacity-badge i {
    font-size: 15px;
    color: var(--secondary-color);
}

/* Favorite Heart Badge */
.bungalow-favorite {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bungalow-favorite:hover {
    background: #fff;
    transform: scale(1.15);
}

.bungalow-favorite i {
    color: #e74c3c;
    font-size: 18px;
}

.bungalow-content {
    padding: 28px 28px 24px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bungalow-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.bungalow-card:hover .bungalow-title {
    color: var(--primary-color);
}

.bungalow-info {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    color: #6c757d;
    font-size: 14px;
}

.bungalow-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bungalow-info i {
    color: var(--primary-color);
}

.bungalow-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-color);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 13px;
}

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

.feature-badge:hover i {
    color: white;
}

.bungalow-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.bungalow-actions .btn {
    flex: 1;
    border-radius: 14px;
    padding: 15px 24px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.bungalow-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.bungalow-actions .btn:hover::before {
    left: 100%;
}

.bungalow-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--accent-color-rgb, 255, 107, 53), 0.4);
}

/* Bungalow Short Description */
.bungalow-short-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    min-height: 52px;
}

/* Bungalow Features Icons (with text labels) */
.bungalow-features-icons {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
    flex-wrap: nowrap;
    overflow-x: auto;
    /* Allow horizontal scroll if needed */
    -ms-overflow-style: none;
    /* IE/Edge */
    scrollbar-width: none;
    /* Firefox */
}

.bungalow-features-icons::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Opera */
}

.bungalow-features-icons .feature-icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb, 44, 95, 45), 0.06) 0%, rgba(var(--secondary-color-rgb, 151, 188, 98), 0.08) 100%);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-color);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(var(--primary-color-rgb, 44, 95, 45), 0.1);
    white-space: nowrap;
    /* Prevent text wrapping */
    flex-shrink: 0;
    /* Prevent shrinking too much */
}

.bungalow-features-icons .feature-icon i {
    color: var(--primary-color);
    font-size: 12px;
    width: auto;
    text-align: center;
}

.bungalow-features-icons .feature-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(var(--primary-color-rgb, 44, 95, 45), 0.3);
    border-color: transparent;
}

.bungalow-features-icons .feature-icon:hover i {
    color: white;
}


/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.25);
}

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

.service-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS - Modern Cards
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--light-color) 0%, white 100%);
}

.testimonialsSwiper {
    padding: 30px 10px 70px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.testimonial-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid var(--light-color);
    box-shadow: var(--shadow-md);
}

/* Premium Avatar with Initials */
.testimonial-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: avatarShine 3s ease-in-out infinite;
}

@keyframes avatarShine {

    0%,
    100% {
        transform: translateX(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) rotate(45deg);
    }
}

.testimonial-avatar span {
    font-size: 28px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.testimonial-rating {
    margin-bottom: 20px;
}

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

.testimonial-comment {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.testimonial-name {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* ============================================
   FOOTER - Premium Design
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    margin-top: 100px;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-main h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links i {
    color: var(--secondary-color);
    font-size: 10px;
}

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

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 12px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* ============================================
   BUTTONS - Premium Styles
   ============================================ */
.btn {
    border-radius: var(--radius-lg);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.4);
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), #ff8f5a);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

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

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

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 140px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: white;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   BUNGALOW DETAIL PAGE
   ============================================ */
.bungalow-gallery {
    position: relative;
}

.bungalow-gallery .main-photo {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bungalow-gallery .main-photo img {
    transition: transform 0.3s ease;
}

.bungalow-gallery .main-photo:hover img {
    transform: scale(1.02);
}

.bungalow-gallery .row img {
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.bungalow-gallery .row img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.booking-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: none;
    overflow: hidden;
}

.booking-card .card-body {
    padding: 30px;
}

.price-display {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    margin: -30px -30px 25px;
    text-align: center;
}

.price-display .price-amount {
    font-size: 36px;
    font-weight: 800;
}

.price-display .price-period {
    font-size: 14px;
    opacity: 0.9;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-color);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 30px;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-section h3 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.newsletter-form .form-control {
    border-radius: var(--radius-full);
    padding: 15px 25px;
    border: none;
    font-size: 16px;
}

.newsletter-form .btn {
    border-radius: var(--radius-full);
    padding: 15px 35px;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    background: var(--light-color);
}

.why-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.3);
}

.why-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.why-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* ============================================
   FLOATING CONTACT BUTTON
   ============================================ */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.phone {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .info-cards {
        margin-top: -40px;
    }

    .navbar-buttons {
        margin-top: 15px;
        display: flex;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .info-cards {
        margin-top: 0;
        padding-top: 40px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

    .stat-number {
        font-size: 40px;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    /* Mobile Button Styles */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 14px;
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 12px;
    }

    /* Navbar Mobile */
    .navbar-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }

    .navbar-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .navbar-brand .logo-text {
        font-size: 20px;
    }

    .navbar-brand .logo-img {
        max-height: 40px;
    }

    /* Page Header Mobile */
    .page-header {
        padding: 120px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    /* Section Padding Mobile */
    .section-padding {
        padding: 60px 0;
    }

    /* Booking Card Mobile */
    .booking-card {
        position: static !important;
        margin-top: 30px;
    }

    .premium-price-box {
        padding: 20px;
    }

    .premium-price-box .amount {
        font-size: 36px;
    }

    /* Quick Info Mobile */
    .quick-info-list {
        gap: 8px;
    }

    .quick-info-item {
        padding: 10px;
    }

    /* Trust Badges Mobile */
    .trust-badges {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .trust-badge {
        padding: 8px 4px;
    }

    .trust-badge span {
        font-size: 10px;
    }

    /* Bungalow Cards Mobile */
    .bungalow-card {
        margin-bottom: 20px;
    }

    .bungalow-image {
        height: 220px;
    }

    .bungalow-content {
        padding: 20px;
    }

    .bungalow-title {
        font-size: 20px;
    }

    .bungalow-short-desc {
        font-size: 14px;
        min-height: auto;
    }

    .bungalow-features-icons .feature-icon {
        padding: 8px 12px;
        font-size: 12px;
    }

    .bungalow-features-icons .feature-icon i {
        font-size: 14px;
    }

    .bungalow-actions .btn {
        padding: 13px 18px;
        font-size: 14px;
    }

    /* Contact Info Cards Mobile */
    .contact-info-card {
        padding: 25px 20px;
        margin-bottom: 15px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 24px;
    }

    /* Form Controls Mobile */
    .form-control,
    .form-select {
        font-size: 16px;
        /* Prevents iOS zoom */
    }

    /* Calendar Mobile */
    #availabilityCalendar {
        padding: 15px;
    }

    .calendar-day {
        padding: 8px 2px;
        font-size: 12px;
    }

    .calendar-header button {
        width: 32px;
        height: 32px;
    }

    /* Hero Slider Buttons Mobile */
    .slide-content .btn {
        width: auto;
        display: inline-block;
        padding: 12px 24px;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 16px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .slide-content .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .premium-price-box .amount {
        font-size: 32px;
    }

    .trust-badges {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .page-header {
        padding: 100px 0 30px;
    }

    .page-header h1 {
        font-size: 24px;
    }

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

/* ============================================
   UTILITIES
   ============================================ */
.bg-light {
    background-color: var(--light-color) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-padding {
    padding: 100px 0;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}