/* Hero Section Styles */
:root {
    --primary-red: #d9272d;
    --dark-bg: #1a2332;
    --light-text: #ffffff;
}


body {
    font-family: "Open Sans", sans-serif;

}

/* Common Button Styles */
.btn{
    min-width: 150px;
    min-height: 40px;
    font-family: "Inter", sans-serif;
}
.btn-danger {
    background: linear-gradient(270deg, #920a0e, #d9272d) !important;
    border-color: transparent !important;
    color: white !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: linear-gradient(270deg, #920a0e, #d9272d) !important;
    border-color: transparent !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
    background-color: white !important;
    color: var(--primary-red);
    border-color: white !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f0f0f0 !important;
    border-color: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-red);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 40px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    display: block;
}

.hero-image {
    background-image: url('../assets/images/hero.webp');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .text-danger {
    color: var(--primary-red) !important;
}

.hero-content .lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

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


.stats-section h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.stats-section p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #fff;
}

/* Booking Form Styles */
.booking-form-wrapper {
    padding: 2rem 0;
}

.booking-form {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: #333;
}

/* Navbar Styles */
.navbar {
    background-color: transparent !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 35, 50, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.5rem 0 !important;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 30px !important;
}

.navbar .btn-danger {
    background: linear-gradient(270deg, #920a0e, #d9272d) !important;
    border-color: transparent !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.25rem !important;
}

.navbar .btn-light {
    background-color: white !important;
    color: #333 !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.25rem !important;
}

.navbar .btn-light:hover {
    background-color: #f0f0f0 !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-video {
        display: none;
    }

    .hero-image {
        display: block;
    }

    .hero-section .container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .booking-form-wrapper {
        margin-top: 3rem;
        padding: 0;
    }

    .booking-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-image {
        background: url('../assets/images/mobile-banner.webp');
        background-size: cover;
        background-position: center;
    }
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content .lead {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stats-section h3 {
        font-size: 1.5rem;
    }

    .stats-section p {
        font-size: 0.85rem;
    }
}

/* Inventory Section Styles */
.inventory-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.inventory-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.inventory-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.inventory-header p {
    font-size: 1.1rem;
    margin: 0;
}

.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
    width: 100%;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.available-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.property-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-address {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.property-price {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.property-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.property-spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-spec img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.property-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.property-actions .btn {
    flex: 1;
    border-radius: 50px;
    font-weight: 600;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.property-actions .btn-outline-dark {
    color: #333;
    border-color: #ddd;
}

.property-actions .btn-outline-dark:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

@media (max-width: 768px) {
    .inventory-section {
        padding: 3rem 0;
    }

    .inventory-header {
        margin-bottom: 2rem;
    }

    .property-image-wrapper {
        height: 200px;
    }

    .property-specs {
        gap: 1rem;
    }
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-image: url('../assets/images/cta-bg.webp');
    background-size: cover;
    background-position: center;
}



.cta-section h2 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cta-section {
        min-height: 250px;
        padding: 50px 15px;
    }

    .cta-section h2 {
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        gap: 1rem;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.why-choose-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.why-choose-left {
    background-image: url('../assets/images/usp-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-choose-label {
    margin-bottom: 1.5rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    width: fit-content;
    border-radius: 50px;
    box-sizing: border-box;
    text-align: left;
    color: #fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.the-liv-difference {
  	position: relative;
  	line-height: 20px;
}



.why-choose-left h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.why-choose-left > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.why-choose-list li img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-choose-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 2rem;
}

.why-choose-buttons .btn {
    flex: 1;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.why-choose-buttons .btn-light {
    background-color: white;
    color: #1a2332;
    border-color: white;
}

.why-choose-buttons .btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.why-choose-right {
    flex: 1;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.why-choose-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .why-choose-content {
        flex-direction: column;
        min-height: auto;
    }

    .why-choose-left {
        padding: 3rem 2rem;
    }

    .why-choose-right {
        height: 350px;
    }

    .why-choose-buttons {
        flex-direction: column;
    }

    .why-choose-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 3rem 0;
    }

    .why-choose-left {
        padding: 2rem 1.5rem;
    }

    .why-choose-left h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .why-choose-left > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .why-choose-list li {
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .why-choose-right {
        height: 300px;
    }

    .why-choose-buttons {
        gap: 1rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-label {
    color: var(--primary-red);
    background-color: rgba(197, 160, 101, 0.1);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 10px 15px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.contact-form-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #1a2332;
    margin-bottom: 1rem;
}

.contact-form-header p {
    font-size: 1.05rem;
    color: #666;
    margin: 0;
}

.contact-form-wrapper {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}
.contact-form-wrapper label {
    width:100%;
    color: #000;
}
.contact-form-wrapper p{
    margin-bottom: 0;
}
.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    width: 100%;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary-red);
    background-color: white;
    box-shadow: 0 0 0 0.2rem rgba(196, 30, 58, 0.25);
}

.contact-form-wrapper .form-control::placeholder {
    color: #bbb;
}

.contact-form-wrapper .btn-submit {
    background: linear-gradient(270deg, #920a0e, #d9272d);
    border-color: transparent;
    color: white;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form-wrapper .btn-submit:hover {
    background: linear-gradient(270deg, #920a0e, #d9272d);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
    transform: translateY(-2px);
}

/* Footer Section */
.footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 0 2rem 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 70px;
}

.footer-col-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #999;
    margin: 0;
}

.footer-col-contact,
.footer-col-social {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: #ccc;
}

.footer-contact-item img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.footer-contact-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: var(--primary-red);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #999;
}

.footer-copyright {
    margin: 0;
}

.footer-copyright a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: var(--primary-red);
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-badge img {
    height: 24px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col-social {
        grid-column: 1 / -1;
    }

    .footer-col-social {
        flex-direction: row;
        justify-content: space-between;
    }
    .contact-form-wrapper{
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2.5rem 0 1.5rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-col-social {
        justify-content: center;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-modal.active {
    display: flex;
}

.gallery-header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    z-index: 10000;
}

.gallery-back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-back-btn:hover {
    opacity: 0.7;
}

.gallery-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    flex: 1;
}

.gallery-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.gallery-close-btn:hover {
    opacity: 0.7;
}

.gallery-container {
    position: relative;
    max-width: 90%;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main-image {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1000;
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.gallery-arrow.prev {
    left: -80px;
}

.gallery-arrow.next {
    right: -80px;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    overflow-x: auto;
    padding: 0 2rem;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumbnail:hover {
    opacity: 0.9;
}

.gallery-thumbnail.active {
    opacity: 1;
    border-color: var(--primary-red);
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .gallery-header {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .gallery-title {
        font-size: 1.25rem;
    }

    .gallery-container {
        margin-top: 60px;
        margin-bottom: 120px;
    }

    .gallery-main-image {
        max-height: 50vh;
    }

    .gallery-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }

    .gallery-arrow.prev {
        left: -60px;
    }

    .gallery-arrow.next {
        right: -60px;
    }

    .gallery-thumbnails {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .gallery-header {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .gallery-title {
        font-size: 1rem;
    }

    .gallery-container {
        margin-bottom: 100px;
    }

    .gallery-arrow {
        display: none;
    }

    .gallery-thumbnail {
        width: 50px;
        height: 50px;
    }
}


.wpcf7 form .wpcf7-response-output, .wpcf7 form.spam .wpcf7-response-output{
    color: #000;
}