/* Premium Luxury Villa Website Styles - Light Mode */



:root {

    --primary-gold: #D4AF37;

    --secondary-gold: #FFD700;

    --light-bg: #F8F9FA;

    --white: #FFFFFF;

    --light-blue: #E3F2FD;

    --accent-blue: #2196F3;

    --text-dark: #212529;

    --text-muted: #6C757D;

    --glass-bg: rgba(255, 255, 255, 0.9);

    --glass-border: rgba(0, 0, 0, 0.1);

}



body {

    font-family: 'Roboto', sans-serif;

    line-height: 1.8;

    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-blue) 100%);

    color: var(--text-dark);

    overflow-x: hidden;

    padding-top: 70px; /* account for fixed-top navbar height */

}



.hero-section1 {

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(227, 242, 253, 0.9) 100%),

                url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center;

    background-size: cover;

    background-attachment: fixed;

    height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

}



.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(45deg, rgb(41 41 41 / 80%) 0%, rgba(18, 18, 18, 0.4) 100%);

}



.hero-content {

    position: relative;

    z-index: 2;

    text-align: center;

    animation: fadeInUp 1.5s ease-out;

}



.hero-section {

    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%),

                url('../images/img2.jpg') no-repeat center center;

    background-size: cover;

    background-attachment: scroll;

    height: calc(100vh - 70px);

    min-height: 650px;

    position: relative;

    display: flex;

    align-items: center;

}



.hero-villa-img {

    width: 95%;

    max-width: 760px;

    height: auto;

    border-radius: 24px;

    border: 4px solid rgba(255, 255, 255, 0.85);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);

    object-fit: cover;

    transition: transform 0.4s ease, filter 0.4s ease;

}



.hero-villa-img:hover {

    transform: scale(1.03);

    filter: brightness(1.08) saturate(1.05);

}



.hero-image-wrap {

    display: flex;

    justify-content: center;

    margin: 0 auto 1.6rem;

    max-width: 780px;

    overflow: hidden;

}



@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



.navbar {

    background: var(--glass-bg) !important;

    backdrop-filter: blur(10px);

    border-bottom: 1px solid var(--glass-border);

    transition: all 0.3s ease;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}



.navbar-brand {

    font-family: 'Playfair Display', serif;

    font-weight: 700;

    font-size: 1.8rem;

    color: var(--primary-gold) !important;

    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);

    display: flex;

    align-items: center;

    gap: 0.75rem;

}



.logo-img {

    max-height: 55px;

    width: auto;

    border-radius: 8px;

    box-shadow: 0 2px 10px rgba(0,0,0,0.25);

    object-fit: contain;

}



.navbar-toggler {

    border: none;

    background-color: #000;

    color: #fff;

    padding: 0.5rem;

    border-radius: 4px;

}



.navbar-toggler-icon {

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

}



.nav-link {

    color: var(--text-dark) !important;

    font-weight: 500;

    transition: color 0.3s ease;

}



.nav-link:hover {

    color: var(--primary-gold) !important;

}



.display-4 {

    font-family: 'Playfair Display', serif;

    font-size: 4rem;

    font-weight: 700;

    color: #ffffff;

    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);

    margin-bottom: 1.5rem;

}



.lead {

    font-size: 1.3rem;

    color: #ffffff;

    margin-bottom: 2rem;

}



.btn-primary {

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border: 2px solid var(--primary-gold);

    color: var(--text-dark);

    font-weight: 600;

    padding: 12px 30px;

    border-radius: 50px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);

}



.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);

    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));

    color: var(--text-dark);

}



.btn-outline-light {

    border: 2px solid var(--white);

    color: var(--text-dark);

    border-radius: 50px;

    padding: 12px 30px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all 0.3s ease;

    background: #d4af37;

}



.btn-outline-light:hover {

    background: var(--primary-gold);

    color: var(--text-dark);

    transform: translateY(-3px);

    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);

}



.navbar-nav {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 1rem;

}



.navbar-nav .nav-link {

    font-weight: 500;

    letter-spacing: 0.03em;

    color: #000000 !important;

    transition: color 0.3s ease, transform 0.2s ease;

}



.navbar-nav .nav-link:hover {

    color: var(--secondary-gold) !important;

    transform: translateY(-1px);

}



.btn-book {

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border: 1px solid #e0b225;

    color: #212529;

    font-weight: 700;

    padding: 8px 18px;

    border-radius: 30px;

    transition: transform 0.25s ease, box-shadow 0.25s ease;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);

}



.btn-book:hover {

    transform: translateY(-3px);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);

    color: #1a1a1a;

}



.section-title {

    font-family: 'Playfair Display', serif;

    font-size: 3rem;

    font-weight: 700;

    color: var(--text-dark);

    text-align: center;

    margin-bottom: 3rem;

    position: relative;

}



.section-title::after {

    content: '';

    position: absolute;

    bottom: -10px;

    left: 50%;

    transform: translateX(-50%);

    width: 100px;

    height: 3px;

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-radius: 2px;

}



.glass-card {

    background: var(--glass-bg);

    backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);

    border-radius: 20px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

}



.glass-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}



/* Modern card enhancements for Villa Highlights */

.villa-highlights .glass-card {

    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);

    border-radius: 24px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.villa-highlights .glass-card:hover {

    transform: translateY(-12px) scale(1.02);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);

}



.card-icon {

    font-size: 3rem;

    color: var(--primary-gold);

    margin-bottom: 1rem;

    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);

}



.card-title {

    font-family: 'Playfair Display', serif;

    font-weight: 600;

    color: var(--text-dark);

}



.card-text {

    color: var(--text-muted);

}



.form-control {

    background: var(--white);

    border: 1px solid var(--glass-border);

    border-radius: 10px;

    color: var(--text-dark);

    padding: 12px 20px;

}



.form-control:focus {

    background: var(--white);

    border-color: var(--primary-gold);

    color: var(--text-dark);

    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);

}



.form-control::placeholder {

    color: var(--text-muted);

}



footer {

    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);

    border-top: 1px solid var(--glass-border);

    margin-top: 5rem;

    color: var(--text-dark);

    position: relative;

    overflow: hidden;

}



footer::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),

                radial-gradient(circle at 70% 30%, rgba(33, 150, 243, 0.03) 0%, transparent 50%);

    pointer-events: none;

}



footer .container {

    position: relative;

    z-index: 1;

}



.social-icons {

    display: flex;

    align-items: center;

}



.social-link {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    background: var(--glass-bg);

    border: 1px solid var(--glass-border);

    border-radius: 50%;

    color: var(--text-dark);

    text-decoration: none;

    transition: all 0.3s ease;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}



.social-link:hover {

    background: var(--primary-gold);

    color: var(--text-dark);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);

}



.footer-link {

    color: var(--text-dark);

    text-decoration: none;

    transition: color 0.3s ease;

}



.footer-link:hover {

    color: var(--primary-gold);

}



.newsletter-form .form-control {

    background: var(--white);

    border: 1px solid var(--glass-border);

    border-radius: 25px 0 0 25px;

    color: var(--text-dark);

    padding: 8px 15px;

}



.newsletter-form .form-control:focus {

    border-color: var(--primary-gold);

    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);

}



.newsletter-form .btn-warning {

    background: var(--primary-gold);

    border: 1px solid var(--primary-gold);

    border-radius: 0 25px 25px 0;

    color: var(--text-dark);

    padding: 8px 15px;

    transition: all 0.3s ease;

}



.newsletter-form .btn-warning:hover {

    background: var(--secondary-gold);

    border-color: var(--secondary-gold);

    transform: translateX(2px);

}



.feature-item {

    transition: all 0.3s ease;

    border: 1px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(10px);

    background: rgba(255, 255, 255, 0.8);

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}



.feature-item:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    background: rgba(255, 255, 255, 0.95);

}



@media (max-width: 768px) {

    body {

        padding-top: 56px; /* mobile fixed navbar height */

    }



    .hero-section {

        height: calc(100vh - 56px);

        min-height: 70vh;

        background-attachment: scroll;

    }



    .hero-section .container {

        padding-top: 10px;

    }



    .display-4 {

        font-size: 2.5rem;

    }



    .section-title {

        font-size: 2rem;

    }



    /* Booking section mobile refinement */

    #booking .section-title {

        font-size: 1.8rem;

        margin-bottom: 2.25rem;

    }



    .blog-post-card {

        padding: 1rem;

    }

}



.blog-post-card {

    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 249, 0.98));

    border: 1px solid rgba(33, 37, 41, 0.1);

    border-radius: 1rem;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    padding: 1.6rem;

    transition: transform 0.25s ease, box-shadow 0.25s ease;

}



.blog-post-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);

}



.blog-post-card img {

    object-fit: cover;

    height: 200px;

    width: 100%;

}



.sidebar-sticky {

    position: sticky;

    top: 100px;

}



/* Gallery Page Styles */

    #booking .glass-card {

        padding: 1.2rem !important;

        border-radius: 14px;

    }



    #booking .form-control,

    #booking .form-select,

    #booking textarea {

        font-size: 0.95rem;

        padding: 10px 12px;

    }



    #booking .form-label {

        font-size: 0.95rem;

    }



    #booking button[type="submit"] {

        font-size: 1rem;

        padding: 10px 18px;

    }





/* Contact Page Styles */

.contact-hero {

    position: relative;

    background: linear-gradient(120deg, rgba(24, 33, 62, 0.7), rgba(12, 14, 30, 0.6)),

                url('../images/villa8.jpeg') no-repeat center center;

    background-size: cover;

    min-height: 470px;

    display: flex;

    align-items: center;

    color: #ffffff;

    text-align: center;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}



.contact-hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(45deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));

    z-index: 0;

}



.contact-hero .container,

.contact-hero .row,

.contact-hero .col-12 {

    position: relative;

    z-index: 1;

}



.contact-hero .display-4 {

    font-size: clamp(2rem, 6vw, 4.5rem);

    text-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);

}



.contact-hero .lead {

    font-size: 1.2rem;

    color: rgba(255, 255, 255, 0.92);

    margin-bottom: 1.75rem;

}



.hero-icons i {

    font-size: 1.4rem;

    color: var(--secondary-gold);

    margin: 0 0.6rem;

    text-shadow: 0 0 14px rgba(212, 175, 55, 0.45);

    animation: float 3.6s ease-in-out infinite;

}



@keyframes float {

    0%, 100% { transform: translateY(0); }

    50% { transform: translateY(-5px); }

}



.contact-info-card,

.contact-form-card,

.map-container {

    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 20px;

    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.08);

    padding: 2rem;

}



.contact-info-card h3,

.map-container h3,

.contact-form-card .section-title {

    color: #2a2a2a;

}



.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 1rem;

    padding: 0.7rem 0;

    border-bottom: 1px solid rgba(33, 33, 33, 0.06);

}



.contact-item:last-child { border-bottom: 0; }



.contact-icon {

    min-width: 48px;

    min-height: 48px;

    border-radius: 50%;

    background: linear-gradient(180deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.9));

    display: grid;

    place-items: center;

    color: #1f1f1f;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);

}



.contact-icon i {

    font-size: 1.1rem;

}



.contact-details h5 {

    margin-bottom: 0.15rem;

    font-size: 1.02rem;

    font-weight: 700;

}



.contact-details p,

.contact-details small {

    color: #5f5f5f;

    font-size: 0.95rem;

}



.map-container iframe {

    border-radius: 14px;

    border: 2px solid rgba(212, 175, 55, 0.3);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);

}



.contact-form-card {

    transform: translateY(-10px);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.contact-form-card:hover {

    transform: translateY(-14px);

    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);

}



.contact-form-card .form-label {

    font-weight: 600;

    color: #333;

}



.contact-form-card .form-control {

    border-radius: 12px;

    border: 1px solid rgba(33, 37, 41, 0.15);

}



.btn-contact-submit {

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-color: rgba(186, 145, 24, 0.9);

    border-radius: 40px;

    color: #1c1c1c;

    font-weight: 700;

    padding: 12px 32px;

    box-shadow: 0 5px 18px rgba(212, 175, 55, 0.33);

    text-transform: uppercase;

    letter-spacing: 0.03em;

}



.btn-contact-submit:hover {

    transform: translateY(-2px);

    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.45);

}



@media (max-width: 992px) {

    .contact-info-card,

    .map-container,

    .contact-form-card {

        padding: 1.4rem;

    }



    .contact-item {

        flex-wrap: wrap;

    }

}



/* Gallery Page Styles */

.gallery-hero {

    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%),

                url('../images/villa7.jpeg') no-repeat center center;

    background-size: cover;

    background-attachment: fixed;

    height: 60vh;

    position: relative;

    display: flex;

    align-items: center;

}



.gallery-hero .container {

    position: relative;

    z-index: 2;

}



.gallery-stats {

    display: flex;

    justify-content: center;

    gap: 3rem;

    margin-top: 2rem;

}



.stat-item {

    text-align: center;

}



.stat-item h3 {

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 0.5rem;

}



.filter-buttons {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 1rem;

}



.filter-btn {

    background: var(--white);

    border: 2px solid var(--primary-gold);

    color: var(--text-dark);

    padding: 0.75rem 1.5rem;

    border-radius: 50px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all 0.3s ease;

    cursor: pointer;

}



.filter-btn:hover,

.filter-btn.active {

    background: var(--primary-gold);

    color: var(--text-dark);

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);

}



.gallery-section {

    background: var(--light-bg);

}



.slider-section {

    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);

    padding: 5rem 0;

    position: relative;

    overflow: hidden;

}



.slider-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),

                radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);

    pointer-events: none;

}



.slider-section .container {

    position: relative;

    z-index: 2;

}



.slider-section .section-title {

    font-size: 3.2rem;

    font-weight: 700;

    color: #2c3e50;

    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    margin-bottom: 3rem;

    position: relative;

}



.slider-section .section-title::after {

    content: '';

    position: absolute;

    bottom: -15px;

    left: 50%;

    transform: translateX(-50%);

    width: 80px;

    height: 4px;

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-radius: 2px;

    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);

}



#villaCarousel {

    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25),

                0 0 0 1px rgba(255, 255, 255, 0.1);

    border-radius: 28px;

    overflow: hidden;

    border: 3px solid rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(20px);

    background: rgba(255, 255, 255, 0.1);

    transition: all 0.4s ease;

}



#villaCarousel:hover {

    transform: translateY(-5px);

    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3),

                0 0 0 1px rgba(212, 175, 55, 0.2);

}



#villaCarousel .carousel-item {

    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



#villaCarousel .carousel-item img {

    height: 550px;

    object-fit: cover;

    filter: brightness(0.85) contrast(1.15) saturate(1.1);

    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    transform: scale(1.05);

}



#villaCarousel .carousel-item.active img {

    transform: scale(1);

    filter: brightness(0.95) contrast(1.2) saturate(1.2);

}



#villaCarousel .carousel-item:hover img {

    transform: scale(1.08);

    filter: brightness(1.05) contrast(1.3) saturate(1.3);

}



#villaCarousel .carousel-indicators {

    bottom: 25px;

    margin-bottom: 0;

}



#villaCarousel .carousel-indicators button {

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: linear-gradient(45deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));

    border: 2px solid rgba(212, 175, 55, 0.6);

    margin: 0 6px;

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);

}



#villaCarousel .carousel-indicators button.active {

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-color: var(--primary-gold);

    transform: scale(1.4);

    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.6);

}



#villaCarousel .carousel-control-prev,

#villaCarousel .carousel-control-next {

    width: 6%;

    opacity: 0.7;

    transition: all 0.3s ease;

}



#villaCarousel .carousel-control-prev:hover,

#villaCarousel .carousel-control-next:hover {

    opacity: 1;

    transform: scale(1.1);

}



#villaCarousel .carousel-control-prev-icon,

#villaCarousel .carousel-control-next-icon {

    width: 35px;

    height: 35px;

    background: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));

    border-radius: 50%;

    padding: 10px;

    border: 2px solid rgba(255, 255, 255, 0.3);

    transition: all 0.3s ease;

}



#villaCarousel .carousel-control-prev:hover .carousel-control-prev-icon,

#villaCarousel .carousel-control-next:hover .carousel-control-next-icon {

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-color: var(--primary-gold);

    transform: rotate(5deg);

}



#villaCarousel .carousel-caption {

    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);

    border-radius: 16px;

    padding: 2rem 2.5rem;

    bottom: 50px;

    left: 50%;

    transform: translateX(-50%);

    max-width: 650px;

    text-align: center;

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    animation: captionFadeIn 0.8s ease-out;

}



@keyframes captionFadeIn {

    from {

        opacity: 0;

        transform: translateX(-50%) translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateX(-50%) translateY(0);

    }

}



#villaCarousel .carousel-caption h5 {

    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 0.75rem;

    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);

    color: #fff;

    letter-spacing: 0.5px;

}



#villaCarousel .carousel-caption p {

    font-size: 1.2rem;

    margin: 0;

    opacity: 0.95;

    color: rgba(255, 255, 255, 0.9);

    line-height: 1.6;

}



@media (max-width: 1200px) {

    #villaCarousel .carousel-item img {

        height: 450px;

    }



    #villaCarousel .carousel-caption {

        padding: 1.5rem 2rem;

        bottom: 40px;

        max-width: 550px;

    }



    #villaCarousel .carousel-caption h5 {

        font-size: 1.7rem;

    }



    #villaCarousel .carousel-caption p {

        font-size: 1.1rem;

    }

}



@media (max-width: 992px) {

    .slider-section {

        padding: 4rem 0;

    }



    .slider-section .section-title {

        font-size: 2.8rem;

    }



    #villaCarousel .carousel-item img {

        height: 380px;

    }



    #villaCarousel .carousel-caption {

        padding: 1.25rem 1.75rem;

        bottom: 30px;

        max-width: 500px;

    }



    #villaCarousel .carousel-caption h5 {

        font-size: 1.5rem;

    }



    #villaCarousel .carousel-caption p {

        font-size: 1rem;

    }



    #villaCarousel .carousel-control-prev,

    #villaCarousel .carousel-control-next {

        width: 7%;

    }

}



@media (max-width: 576px) {

    .slider-section {

        padding: 3rem 0;

    }



    .slider-section .section-title {

        font-size: 2.2rem;

        margin-bottom: 2rem;

    }



    #villaCarousel .carousel-item img {

        height: 250px;

    }



    #villaCarousel .carousel-caption {

        display: none;

    }



    #villaCarousel .carousel-indicators {

        bottom: 15px;

    }



    #villaCarousel .carousel-indicators button {

        width: 10px;

        height: 10px;

        margin: 0 3px;

    }



    #villaCarousel .carousel-control-prev,

    #villaCarousel .carousel-control-next {

        width: 8%;

    }



    #villaCarousel .carousel-control-prev-icon,

    #villaCarousel .carousel-control-next-icon {

        width: 25px;

        height: 25px;

        padding: 6px;

    }



    .slider-section .btn-primary {

        padding: 12px 24px;

        font-size: 1rem;

    }

}



@media (max-width: 576px) {

    #villaCarousel .carousel-item img {

        height: 250px;

    }



    #villaCarousel .carousel-caption {

        display: none;

    }

}



.gallery-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 2rem;

    padding: 2rem;

}



.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transition: all 0.3s ease;

    opacity: 1;

    transform: scale(1);

}



.gallery-item.large {

    grid-column: span 2;

    grid-row: span 2;

}



.gallery-item.medium {

    grid-column: span 1;

    grid-row: span 1;

}



.gallery-item.small {

    grid-column: span 1;

    grid-row: span 1;

}



.gallery-card {

    position: relative;

    height: 100%;

    min-height: 300px;

    overflow: hidden;

    border-radius: 20px;

}



.gallery-img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}



.gallery-card:hover .gallery-img {

    transform: scale(1.1);

}



.gallery-overlay {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7) 0%, rgba(212, 175, 55, 0.3) 100%);

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    transition: opacity 0.3s ease;

    padding: 2rem;

}



.gallery-content {

    text-align: center;

    color: white;

    transform: translateY(20px);

    transition: transform 0.3s ease;

}



.gallery-overlay:hover .gallery-content {

    transform: translateY(0);

}



.gallery-content h4 {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 0.5rem;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

}



.gallery-content p {

    font-size: 1rem;

    margin-bottom: 1.5rem;

    opacity: 0.9;

}



.view-btn {

    background: var(--primary-gold);

    border: 2px solid var(--primary-gold);

    color: var(--text-dark);

    padding: 0.5rem 1.5rem;

    border-radius: 50px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all 0.3s ease;

    cursor: pointer;

}



.view-btn:hover {

    background: var(--secondary-gold);

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);

}



.view-btn i {

    margin-right: 0.5rem;

}



/* Modal Styles */

.modal-content {

    border: none;

    border-radius: 20px;

    overflow: hidden;

}



.modal-header {

    background: var(--light-bg);

    border-bottom: 1px solid var(--glass-border);

}



.modal-body {

    background: var(--white);

}



#modalImage {

    max-height: 70vh;

    width: auto;

    border-radius: 10px;

}



/* Responsive Gallery */

@media (max-width: 1200px) {

    .gallery-grid {

        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

        gap: 1.5rem;

        padding: 1.5rem;

    }



    .gallery-item.large {

        grid-column: span 1;

        grid-row: span 2;

    }

}



@media (max-width: 992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 1.5rem;

        padding: 1.5rem;

    }



    .gallery-item.large {

        grid-column: span 2;

        grid-row: span 1;

    }



    .gallery-item.medium {

        grid-column: span 1;

        grid-row: span 1;

    }



    .gallery-item.small {

        grid-column: span 1;

        grid-row: span 1;

    }

}



@media (max-width: 768px) {

    .gallery-hero {

        height: 50vh;

        background-attachment: scroll;

        padding: 2rem 0;

    }



    .gallery-hero .display-4 {

        font-size: 2.2rem;

        margin-bottom: 1rem;

    }



    .gallery-hero .lead {

        font-size: 1rem;

        margin-bottom: 2rem;

    }



    .gallery-stats {

        flex-direction: column;

        gap: 1.5rem;

        margin-top: 1.5rem;

    }



    .stat-item h3 {

        font-size: 2rem;

    }



    .stat-item p {

        font-size: 0.9rem;

    }



    .filter-buttons {

        flex-direction: column;

        align-items: center;

    }



    .filter-btn {

        width: 200px;

    }



    .gallery-grid {

        grid-template-columns: 1fr;

        gap: 1rem;

        padding: 1rem;

    }



    .gallery-item.large {

        grid-column: span 1;

        grid-row: span 1;

    }



    .gallery-content h4 {

        font-size: 1.2rem;

    }



    .gallery-content p {

        font-size: 0.9rem;

    }

}



@media (max-width: 576px) {

    .gallery-hero {

        height: 70vh;

        min-height: 300px;

        padding: 1rem 0;

        background-attachment: scroll;

    }



    .gallery-hero .display-4 {

        font-size: 1.8rem;

        margin-bottom: 0.75rem;

        line-height: 1.2;

        margin-top: 78px;

    }



    .gallery-hero .lead {

        font-size: 0.9rem;

        margin-bottom: 1.5rem;

        line-height: 1.4;

        padding: 0 1rem;

    }



    .gallery-stats {

        flex-direction: column;

        gap: 1rem;

        margin-top: 1rem;

        padding: 0 1rem;

    }



    .stat-item {

        padding: 0.5rem;

        background: rgba(255, 255, 255, 0.1);

        border-radius: 8px;

        backdrop-filter: blur(10px);

        border: 1px solid rgba(255, 255, 255, 0.2);

    }



    .stat-item h3 {

        font-size: 1.5rem;

        margin-bottom: 0.25rem;

    }



    .stat-item p {

        font-size: 0.8rem;

        opacity: 0.9;

    }



    .filter-buttons {

        flex-direction: column;

        align-items: center;

        gap: 0.5rem;

        padding: 0 1rem;

    }



    .filter-btn {

        width: 100%;

        max-width: 280px;

        padding: 0.75rem 1rem;

        font-size: 0.9rem;

    }

}



/* Contact Page Styles */



.contact-hero .container {

    position: relative;

    z-index: 2;

}



.hero-icons {

    font-size: 2rem;

    margin-top: 1rem;

}



.contact-info-card {

    background: var(--glass-bg);

    backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);

    border-radius: 20px;

    padding: 2rem;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.contact-info-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}



.contact-item {

    display: flex;

    align-items: flex-start;

    margin-bottom: 1.5rem;

    padding: 1rem;

    background: rgba(255, 255, 255, 0.5);

    border-radius: 12px;

    transition: all 0.3s ease;

}



.contact-item:hover {

    background: rgba(255, 255, 255, 0.8);

    transform: translateX(5px);

}



.contact-icon {

    width: 50px;

    height: 50px;

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 1.2rem;

    margin-right: 1rem;

    flex-shrink: 0;

    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);

}



.contact-details h5 {

    color: var(--text-dark);

    font-size: 1.1rem;

    font-weight: 600;

    margin-bottom: 0.25rem;

}



.contact-details p {

    color: var(--text-muted);

    margin: 0;

    line-height: 1.4;

}



.contact-details small {

    color: var(--text-muted);

    font-size: 0.85rem;

    opacity: 0.8;

}



.map-container {

    height: 100%;

    min-height: 400px;

}



.contact-map {

    width: 100%;

    height: 100%;

    min-height: 400px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    border: 2px solid rgba(255, 255, 255, 0.8);

}



iframe {

    width: 100%;

    height: 400px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    border: 2px solid rgba(255, 255, 255, 0.8);

    border: none;

}



.contact-form-card {

    background: var(--glass-bg);

    backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);

    border-radius: 20px;

    padding: 3rem;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}



.contact-form .form-group {

    margin-bottom: 1.5rem;

}



.contact-form .form-label {

    color: var(--text-dark);

    font-weight: 600;

    margin-bottom: 0.5rem;

    font-size: 0.95rem;

}



.contact-form .form-control {

    background: rgba(255, 255, 255, 0.9);

    border: 2px solid rgba(0, 0, 0, 0.1);

    border-radius: 10px;

    padding: 0.75rem 1rem;

    font-size: 1rem;

    transition: all 0.3s ease;

}



.contact-form .form-control:focus {

    background: white;

    border-color: var(--primary-gold);

    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);

    transform: translateY(-2px);

}



.contact-form .form-control::placeholder {

    color: var(--text-muted);

    opacity: 0.7;

}



.btn-contact-submit {

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border: 2px solid var(--primary-gold);

    color: var(--text-dark);

    font-weight: 700;

    font-size: 1.1rem;

    padding: 1rem 2rem;

    border-radius: 50px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);

    position: relative;

    overflow: hidden;

}



.btn-contact-submit::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);

    transition: left 0.6s ease;

}



.btn-contact-submit:hover::before {

    left: 100%;

}



.btn-contact-submit:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);

    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));

}



.btn-contact-submit:active {

    transform: translateY(-1px);

}



/* Contact Page Responsive */

@media (max-width: 992px) {

    .contact-info-card {

        padding: 1.5rem;

    }



    .contact-item {

        padding: 0.75rem;

    }



    .contact-icon {

        width: 45px;

        height: 45px;

        font-size: 1.1rem;

    }



    .contact-details h5 {

        font-size: 1rem;

    }



    .contact-details p {

        font-size: 0.9rem;

    }



    .map-container {

        min-height: 350px;

    }



    iframe {

        height: 350px;

    }



    .contact-form-card {

        padding: 2rem;

    }

}



@media (max-width: 768px) {

    .contact-hero {

        height: 50vh;

        background-attachment: scroll;

        padding: 2rem 0;

    }



    .contact-hero .display-4 {

        font-size: 2.2rem;

    }



    .contact-hero .lead {

        font-size: 1rem;

    }



    .hero-icons {

        font-size: 1.5rem;

    }



    .contact-info-card {

        padding: 1.5rem;

        margin-bottom: 2rem;

    }



    .contact-item {

        flex-direction: column;

        text-align: left;

        padding: 1rem;

        align-items: center;

    }



    .contact-icon {

        margin-right: 0;

        margin-bottom: 0.75rem;

        align-self: center;

    }



    .contact-details {

        text-align: center;

    }



    .map-container {

        min-height: 300px;

    }



    iframe {

        height: 300px;

    }



    .contact-form-card {

        padding: 1.5rem;

    }



    .contact-form .row {

        margin: 0;

    }



    .contact-form .col-md-6 {

        padding: 0 0.5rem;

    }

}



@media (max-width: 576px) {

    .contact-hero {

        height: 40vh;

        min-height: 250px;

        padding: 1rem 0;

    }



    .contact-hero .display-4 {

        font-size: 1.8rem;

        margin-bottom: 0.5rem;

    }



    .contact-hero .lead {

        font-size: 0.9rem;

        margin-bottom: 1rem;

    }



    .hero-icons {

        font-size: 1.2rem;

    }



    .hero-icons .fas {

        margin: 0 0.5rem;

    }



    .contact-info-card {

        padding: 1rem;

    }



    .contact-item {

        padding: 0.75rem;

        margin-bottom: 1rem;

        flex-direction: column;

        text-align: left;

        align-items: center;

    }



    .contact-icon {

        width: 40px;

        height: 40px;

        font-size: 1rem;

        margin-bottom: 0.5rem;

    }



    .contact-details {

        text-align: center;

    }



    .contact-details h5 {

        font-size: 0.95rem;

        margin-bottom: 0.25rem;

    }



    .contact-details p {

        font-size: 0.85rem;

    }



    .map-container {

        min-height: 250px;

    }



    iframe {

        height: 250px;

    }



    .contact-form-card {

        padding: 1rem;

    }



    .contact-form .form-control {

        padding: 0.6rem 0.8rem;

        font-size: 0.95rem;

    }



    .btn-contact-submit {

        padding: 0.8rem 1.5rem;

        font-size: 1rem;

    }

}



@media (max-width: 768px) {

    .contact-hero {

        height: 50vh;

        background-attachment: scroll;

    }



    .hero-icons {

        font-size: 1.5rem;

    }

}



/* About Page Styles */

.about-hero {

    background: linear-gradient(132deg, rgba(255, 255, 255, 0.8) 0%, rgb(0 0 0 / 80%) 100%), url(https://images.unsplash.com/photo-1564013799919-ab600027ffc6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80) no-repeat center center;

    background-size: cover;

    background-attachment: fixed;

    height: 60vh;

    position: relative;

    display: flex;

    align-items: center;

}



.about-hero .container {

    position: relative;

    z-index: 2;

}



.about-image-container {

    position: relative;

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}



.about-image-container img {

    transition: transform 0.5s ease;

}



.about-image-container:hover img {

    transform: scale(1.05);

}



.stat-card {

    background: var(--glass-bg);

    backdrop-filter: blur(10px);

    border: 1px solid var(--glass-border);

    border-radius: 15px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.stat-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);

}



.feature-card {

    background: var(--glass-bg);

    backdrop-filter: blur(20px);

    border: 1px solid var(--glass-border);

    border-radius: 20px;

    padding: 2rem 1.5rem;

    text-align: center;

    height: 100%;

    transition: transform 0.3s ease, box-shadow 0.3s ease;

    position: relative;

    overflow: hidden;

}



.feature-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 4px;

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    transform: scaleX(0);

    transition: transform 0.3s ease;

}



.feature-card:hover::before {

    transform: scaleX(1);

}



.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);

}



.feature-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 2rem;

    margin: 0 auto 1.5rem;

    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);

    position: relative;

    z-index: 1;

}



.feature-card h4 {

    color: var(--text-dark);

    font-weight: 600;

    margin-bottom: 1rem;

    font-size: 1.2rem;

}



.feature-card p {

    color: var(--text-muted);

    font-size: 0.95rem;

    line-height: 1.6;

}



.service-icon {

    width: 50px;

    height: 50px;

    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    font-size: 1.2rem;

    flex-shrink: 0;

}



/* About Page Responsive */

@media (max-width: 992px) {

    .about-hero {

        height: 50vh;

        background-attachment: scroll;

    }



    .about-image-container {

        margin-bottom: 2rem;

    }



    .feature-card {

        padding: 1.5rem 1rem;

        margin-bottom: 2rem;

    }



    .feature-icon {

        width: 70px;

        height: 70px;

        font-size: 1.8rem;

    }



    .stat-card {

        margin-bottom: 1rem;

    }

}



@media (max-width: 768px) {

    .about-hero {

        height: 40vh;

        min-height: 300px;

        padding: 2rem 0;

    }



    .about-hero .display-4 {

        font-size: 2.2rem;

    }



    .about-hero .lead {

        font-size: 1rem;

    }



    .hero-icons {

        font-size: 1.5rem;

    }



    .about-image-container {

        margin-bottom: 2rem;

    }



    .feature-card {

        padding: 1.5rem 1rem;

    }



    .feature-icon {

        width: 60px;

        height: 60px;

        font-size: 1.5rem;

        margin-bottom: 1rem;

    }



    .feature-card h4 {

        font-size: 1.1rem;

    }



    .feature-card p {

        font-size: 0.9rem;

    }



    .service-icon {

        width: 45px;

        height: 45px;

        font-size: 1.1rem;

    }

}



@media (max-width: 576px) {

    .about-hero {

        height: 55vh;

        min-height: 250px;

        padding: 1rem 0;

    }



    .about-hero .display-4 {

        font-size: 1.8rem;

        margin-bottom: 0.5rem;

    }



    .about-hero .lead {

        font-size: 0.9rem;

        margin-bottom: 1rem;

    }



    .hero-icons {

        font-size: 1.2rem;

    }



    .hero-icons .fas {

        margin: 0 0.5rem;

    }



    .stat-card {

        padding: 1.5rem 1rem;

    }



    .stat-card h3 {

        font-size: 1.5rem;

    }



    .feature-card {

        padding: 1rem;

        margin-bottom: 1.5rem;

    }



    .feature-icon {

        width: 50px;

        height: 50px;

        font-size: 1.2rem;

        margin-bottom: 0.75rem;

    }



    .feature-card h4 {

        font-size: 1rem;

        margin-bottom: 0.75rem;

    }



    .feature-card p {

        font-size: 0.85rem;

    }



    .service-icon {

        width: 40px;

        height: 40px;

        font-size: 1rem;

    }

}



/* Homepage Responsive Styles */

@media (max-width: 992px) {

    .hero-section {

        height: 80vh;

    }



    .display-4 {

        font-size: 2.8rem;

    }



    .lead {

        font-size: 1.1rem;

    }



    .section-title {

        font-size: 2.2rem;

    }



    .glass-card {

        margin-bottom: 1.5rem;

    }

}



@media (max-width: 768px) {

    .hero-section {

        height: 70vh;

        padding: 2rem 0;

    }



    .display-4 {

        font-size: 2.2rem;

        margin-bottom: 1rem;

    }



    .lead {

        font-size: 1rem;

        margin-bottom: 2rem;

    }



    .btn-primary, .btn-outline-light {

        padding: 10px 20px;

        font-size: 0.9rem;

    }



    .section-title {

        font-size: 1.8rem;

        margin-bottom: 2rem;

        margin-top: 20px;

    }



    .glass-card {

        padding: 1.5rem;

        margin-bottom: 1rem;

    }



    .card-icon {

        font-size: 2.5rem;

        margin-bottom: 1.5rem;

    }



    .card-title {

        font-size: 1.1rem;

    }



    .card-text {

        font-size: 0.9rem;

    }



    /* About section adjustments */

    .about-section .img-fluid {

        margin-bottom: 2rem;

    }



    /* About page responsive */

    .about-section .glass-card {

        padding: 1.5rem;

    }



    .about-section .section-title {

        font-size: 2.5rem;

    }



    .about-section .lead {

        font-size: 1.1rem;

    }



    /* Amenities grid */

    .amenities-grid {

        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

        gap: 1rem;

    }



    /* Testimonials */

    .testimonials-grid {

        grid-template-columns: 1fr;

    }



    /* Booking form */

    .booking-form .row > div {

        margin-bottom: 1rem;

    }



    .btn-lg {

        padding: 12px 24px;

        font-size: 1rem;

    }

}



@media (max-width: 576px) {

    .hero-section {

        height: 60vh;

    }



    .display-4 {

        font-size: 1.8rem;

    }



    .lead {

        font-size: 0.9rem;

    }



    /* About page mobile adjustments */

    .about-section .section-title {

        font-size: 2rem;

    }



    .about-section .lead {

        font-size: 1rem;

        text-align: left;

    }



    .about-section .glass-card {

        padding: 1rem;

    }



    .about-section ul li {

        font-size: 0.9rem;

    }

}



    .section-title {

        font-size: 1.6rem;

    }



    .glass-card {

        padding: 1rem;

    }



    .card-icon {

        font-size: 2rem;

    }



    .btn-primary,

    .btn-outline-light {

        width: 100%;

        margin-bottom: 0.5rem;

    }



    .hero-section .btn,

    .hero-section .btn-primary,

    .hero-section .btn-outline-light {

        width: auto;

        min-width: 150px;

        margin-bottom: 0;

    }



    .btn-primary {

        margin-right: 0;

    }

