* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  sans-serif;
}

body{
    background: #9d9d9c16;
}
header {
    
    background: white;
    padding: 10px 50px;
    border-bottom: 1px solid #eee;
    height: 86px;
    position: relative;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-container .logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo h1 {
    color: #B01116;
    font-size: 28px;
    font-weight: bold;
}

.logo h1 span {
    color: #333;
    font-weight: normal;
}

.logo-container .subtitle {
    color: #666;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 2px;
}

nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    transition: color 0.3s;
}

nav a:hover {
    color: #B01116;
}

.nav-icon {
    width: 16px;
    height: 16px;
}

.phone-button {
    /* background: #FFD74E; */
    background: linear-gradient(90deg, #FFD244 -3.3%, #FFDF86 48.35%, #EEB628 100%);
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.phone-button:hover {
    background: #FFE174;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Custom Icons */
.icon-home {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6'%3E%3C/path%3E%3C/svg%3E");
}

.icon-projects {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 13h6m-3-3v6m-9 1V7a2 2 0 012-2h6l2 2h6a2 2 0 012 2v8a2 2 0 01-2 2H5a2 2 0 01-2-2z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-pricing {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8c-1.657 0-3 .895-3 2s1.343 2 3 2 3 .895 3 2-1.343 2-3 2m0-8c1.11 0 2.08.402 2.599 1M12 8V7m0 1v8m0 0v1m0-1c-1.11 0-2.08-.402-2.599-1M21 12a9 9 0 11-18 0 9 9 0 0118 0z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-amenities {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 10V3L4 14h7v7l9-11h-7z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-location {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'%3E%3C/path%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'%3E%3C/path%3E%3C/svg%3E");
}

.icon-brochure {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4'%3E%3C/path%3E%3C/svg%3E");
}

@media screen and (max-width: 1024px) {
    header {
        padding: 20px 15px; /* Adjust padding for smaller screens */
    }

    .phone-button {
        display: none; /* Hide on smaller screens */
    }

    .buttons {
        width: 100px !important; /* Compact button size */
    }

    .container-gallery,
    .map-section,
    .floor-plans-section,
    .amenities-section,
    .features-section {
        margin-right: 0 !important; /* Remove unnecessary margin */
    }

    .highlights-list {
        flex: 0 0 250px !important; /* Adjust size for smaller layouts */
    }

    .get-directions-btn {
        right: 0 !important;
        top: 0 !important;
        width: 180px !important; /* Compact width */
    }

    .address-map {
        width: 180px; /* Adjust map size */
    }

    #title-badge-location {
        width: 240px; /* Smaller title width */
    }
}

/* Media Query: For devices with min-width of 1920px */
@media screen and (min-width: 1920px) {
    .features-section {
        max-width: 800px !important; /* Ensure max-width is flexible */
        margin-right: 450px !important; /* Space it well */
    }

    .form-container {
        left: 1370px !important; /* Position form properly */
    }
}

/* Optional: Add additional media queries for better responsiveness */
@media screen and (max-width: 768px) {
    nav {
        flex-direction: column; /* Stack items for narrow screens */
        gap: 10px; /* Smaller spacing */
    }

    .buttons {
        width: 80px; /* Compact button size */
    }

    .highlights-list {
        flex: 0 0 200px !important; /* Narrower size */
    }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
   
    header {
        padding: 20px 30px;
    }
    
    nav {
        gap: 20px;
    }
    .phone-button{
        display: none;
    }
    .buttons{
        width: 128px !important;
    }
    .container-gallery{
      margin-right: 0px !important;
    }
    .highlights-list{
      flex: 0 0 300px!important;
    }
    .get-directions-btn {
        right: 0px !important;
        top: 0px !important;
        width: 202px !important;
    }
    .map-section {
        margin-right: 0px !important;
    }
    .address-map{
        width: 202px;
    }
    #title-badge-location{
        width: 270px;
    }
    .floor-plans-section{
        margin-right: 0px !important;
    }
    .amenities-section{
        margin-right: 0px !important;
    }
    .features-section{
        margin-right: 0px !important;
    }
}
@media screen and  (min-width:1920px){
   
 .features-section{
     max-width:0px !important;
     margin-right:450px !important;
 } 
 .form-container{
     left:1370px !important;
 }
 .property-image{
    max-width: 826px !important;
 }
}
.form-container-mobile {
    background-color: white;
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.form-group-mobile {
    margin-bottom: 20px;
}

.form-label-mobile {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}
@media (min-width: 769px) {
    .form-container-mobile {
      display: none;
    }
}
.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
}

.form-button {
    width: 100%;
    padding: 12px;
    background-color: #5b62ff;;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-button:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .form-container-mobile {
        width: 100%;
        max-width: none;
        margin: 0 10px;
        padding: 20px;
    }

    .form-input {
        font-size: 14px;
    }
    #formContainer{
        display: none !important;
    }

}

@media screen and (min-width: 1275px) and (max-width: 1550px) {
   .property-image{
    max-width: 748px !important;
   }
   .form-container{
    left:1188px !important;
   }
}
@media screen and (min-width: 1150px) and (max-width: 1640px) {
    .property-image{
     max-width: 800px !important;
    }
    .form-container{
     left:1258px     !important;
    }
 }
 @media screen and (min-width: 1640px) and (max-width: 1705px) {
    .property-image{
     max-width: 800px !important;
    }
    .form-container{
     left:1298px     !important;
    }
    .container-gallery{
        margin-right: 502px !important;
    }
    .content-section{
        margin-right: 128px !important;
    }
 }
 @media screen and (min-width: 1705px) and (max-width: 1900px) {
    .property-image{
     max-width: 800px !important;
    }
    .form-container{
     left:1298px     !important;
    }
    .container-gallery{
        margin-right: 620px !important;
    }
    .content-section{
        margin-right: 128px !important;
    }
    .overview-section{
        margin-right: 490px !important;
    }
 }

@media screen and (min-width: 481px) and (max-width: 768px) {
    .form-container-mobile {
        width: 90%;
        max-width: 500px;
    }
}

@media screen and (max-height: 600px) {
    .form-container-mobile {
        padding: 15px;
    }
}
/* For screens between 1480px and 1680px */
@media screen and (min-width: 1480px) and (max-width: 1500px) {
    .overview-section {
        margin-right: 378px !important;
        margin-bottom: 18px !important;
    }
    .form-container {
        left: 1118px !important;
    }
    .container-gallery {
        margin-right: 398px !important; 
    }
}
@media screen and (min-width: 1501px) and (max-width: 1600) {
    .overview-section {
        margin-right: 228px !important;
        margin-bottom: 18px !important;
    }
    .form-container {
        left: 1200px !important;  
    }
    .container-gallery {
        margin-right: 398px !important;
    }
    .property-image{
        max-width: 826px !important;
    }
}

/* For screens between 1025px and 1399px */
@media screen and (min-width: 1025px) and (max-width: 1399px) {
    .features-list {
        top: -38px !important;
    }
    .form-container {
        /* left: 1280px !important; */
          left: 880px !important;
    }
    .property-image {
        max-width: 870px !important;
    }
    .property-image-sec {
        margin-bottom: 54px !important;
        margin-top: 60px;
    }
    .overview-section {
        margin-right: 230px !important;
        margin-bottom: 18px !important;
    }
    .buttons {
        /* left: 215px !important;
        top: 51px !important; */
        left: 108px !important;
        top: 0px !important;
    }
    .content-section {
        margin-right: 170px !important;
    }
    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(136px, 1fr)) !important;
    }
    .container-gallery {
        margin-right: 398px !important;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 10px 0;
    }

    .logo h1 {
        font-size: 24px;
    }

    .phone-button {
        font-size: 14px;
        padding: 10px 15px;
    }
  
}

@media screen and (max-width: 480px) {
    header {
        padding: 15px 20px;
    }

    .logo-container .subtitle {
        font-size: 10px;
    }

    .phone-button {
        padding: 8px 12px;
        font-size: 12px;
    }
}

.container {
    display: flex;
    flex-direction: row;
    /* min-height: 100vh; */
    /* background: #9d9d9c16; */
}

.main {
    background: #001D35;
}

.image-section {
    flex: 1;
    /* padding: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section {
    flex: 1;
    padding: 0px;
    color: white;
    margin-right: 22px;
}

.property-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    /* border-radius: 10px; */
}
.property-image-sec{
    margin-bottom: 12px;
    width: 100%;
}

.property-title {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 20px;
}

.investment-info {
    /* background: rgba(255, 255, 255, 0.1); */
    /* padding: 20px;
    border-radius: 10px;
    margin: 20px 0; */
}

.price {
    font-size: 2rem;
    color: #FFD700;
}

.location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.features-list {
    background: white;
    color: #333;
    max-width: 90%;
    padding: 25px;
    position: relative;
    left: 34px;
    /* top: -23px; */
    /* margin-bottom: -50px; */
    border-radius: 4px;
    /* margin: 20px 0; */
}

.features-list li {
    margin: 6px 0;
    list-style: none;
    position: relative;
    padding-left: 25px;
    font-weight: 700;
}

.features-list li:before {
    content: "•";
    color: #20201f;
    font-size: 1.5em;
    position: absolute;
    left: 0;
}

.buttons {
    display: flex;
    gap: 20px;
    position: relative;
    width: 440px;
    left: 88px;
    /* margin-top: 30px; */
    top: 17px;
}

.btn {
    padding: 12px 30px;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.btn-primary {
    /* background: #FFD700; */
    background: linear-gradient(90deg, #FFD244 -3.3%, #FFDF86 48.35%, #EEB628 100%);
    color: #474747;
}

.btn-secondary {
/* background: #25D366;      */
background: linear-gradient(90deg, #FFD244 -3.3%, #FFDF86 48.35%, #EEB628 100%);

    color: #474747;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-section, .content-section {
        padding: 20px;
    }

    .property-title {
        font-size: 2rem;
    }

    .buttons {
        flex-direction: column;
        display: none !important;
    }
}


    /* New styles for overview section */
    .overview-section {
        background: white;
        padding: 40px;
        margin-top: 20px;
        margin-right: 376px;
        /* border-radius: 10px; */
    }

    .overview-header {
        display: inline-block;
        /* background: #FFD700; */
        background: linear-gradient(90deg, #FFD244 -3.3%, #FFDF86 48.35%, #EEB628 100%);
        color: #474747;
        padding: 8px 20px;
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .overview-title {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 20px;
    }

    .overview-content {
        color: #666;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .download-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        /* background: #f0f0ff; */
        color: #5b62ff;
        padding: 12px 24px;
        border: 1px solid #5B62FF;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        /* border: none; */
        cursor: pointer;
    }

    .download-btn svg {
        width: 20px;
        height: 20px;
    }

    @media (max-width: 768px) {
        .overview-section {
            padding: 20px;
            margin: 20px;
            margin-left:-10px;
            margin-right: -25px;
        }
       
        /*#formContainer{*/
        /*    display: none !important;*/
        /*}*/
    }


    /* side bar form --------------------------------------------------------------------------- */

    /* .form-container {
        
        max-width: 400px;
        background-color: #ffffff;
        margin: 20px auto;
        padding: 20px;
       
        margin-right: 50px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        font-family: sans-serif;
    } */
    .form-container {
        position: sticky; /* Makes the form stick to a certain position while scrolling */
        top: 20px; /* Distance from the top of the viewport */
        max-width: 400px;
        background-color: #ffffff;
        margin: 20px auto;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        font-family: sans-serif;
    }
    
    .form-container-mobile {
        /* position: sticky; /* Makes the form stick to a certain position while scrolling */
        max-width: 400px;
        background-color: #ffffff;
        margin: 20px auto;
        padding: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        font-family: sans-serif;
    }
    h1 {
        text-align: center;
        font-size: 20px;
        color: #333;
        margin-bottom: 5px;
    }

    .subtitle {
        text-align: center;
        color: #5B62FF;
        ;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-sizing: border-box;
        margin-bottom: 10px;
    }

    textarea {
        height: 100px;
        resize: vertical;
    }

    .submit-btn {
        width: 55%;
        padding: 12px;
        background-color: #001f3f;
        color: white;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        font-size: 16px;
    }

    .vertical-line {
        width: 86px; /* Line thickness */
        height: 2px; /* Line height */
        background-color: #5B62FF; /* Line color */
        margin: 10px; /* Space around the line */
        margin-top: -12px;
        margin-bottom: 30px;
      }

    .submit-btn:hover {
        background-color: #003366;
    }

    .checkbox-group {
        display: flex;
        align-items: center;
        margin-top: 15px;
        font-size: 14px;
        color: #666;
    }

    .checkbox-group input[type="checkbox"] {
        margin-right: 8px;
    }


    /* 3rd feature section ---------------------------- */
    .container-feature{
        display: flex;
        flex-direction: column;
        /* background: #9d9d9c16; */
    }

    .features-section {
        max-width: 1200px;
        /* margin: 40px auto; */
        background-color: #fff;
        padding: 20px;
        font-family: sans-serif;
        margin-right: 398px;
        margin-bottom: 18px;
    }

    .features-header {
        margin-bottom: 30px;
    }

    .features-title {
        display: inline-block;
        background:linear-gradient(90deg, #FFD244 -3.3%, #FFDF86 48.35%, #EEB628 100%);
        padding: 10px 20px;
        font-size: 24px;
        color: #333;
        margin-bottom: 15px;
    }

    .project-name {
        font-size: 28px;
        color: #333;
        margin: 20px 0;
        font-weight: 600;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .feature-card {
        text-align: center;
        /* background: #fff; */
        /* border-radius: 8px; */
        overflow: hidden;
        /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 4 l;
    }

    .feature-title {
        padding: 15px;
        font-size: 18px;
        color: #333;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
    }

   /* amenities ================================================ */

   .container-amenities{
    /* background: #9d9d9c16; */
    margin-bottom: 18px;

   }
   .amenities-section {
    max-width: 1200px;
    /* margin: 0 auto; */
    margin-right: 398px;
    padding: 20px;
    font-family:  sans-serif;
    background-color: #fff;
}

.title-badge {
    background:linear-gradient(90deg, #FFD244 -3.3%, #FFDF86 48.35%, #EEB628 100%);
    color: #000;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.amenity-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.amenity-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.amenity-name {
    font-size: 14px;
    color: #333;
}

.view-more {
    color: #4C6EF5;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
}

.view-more:hover {
    text-decoration: underline;
}

/* floor plans ===================== */

.floor-plans-section {
    max-width: 1200px;
    background-color: #fff;
    /* margin: 0 auto; */
    margin-right: 398px;
    padding: 20px;
    font-family: sans-serif;
}

.title-badge {
    background-color: #FFD700;
    color: #333;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 24px;
    margin-bottom: 20px;
}

/* h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
} */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.plan-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.plan-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.plan-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 4px;
}

.price-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    font-size: 14px;
    color: #666;
}

.price strong {
    color: #333;
}

.call-btn {
    background-color: #4C6EF5;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    border: none;
    cursor: pointer;
}

.view-plan-btn {
    color: #4C6EF5;
    text-decoration: none;
}

.call-icon {
    width: 16px;
    height: 16px;
    fill: white;
}
.container-floor{
    /* background-color: #9d9d9c16; */
    margin-bottom: 18px;
}

/* maps =================================================================== */
.container-maps{
    /* background-color: #9d9d9c16; */
    margin-bottom: 18px;
}
.map-section {
    max-width: 1200px;
    /* margin: 0 auto; */
    background-color: #fff;
    margin-right: 398px;
    padding: 20px;
    font-family: sans-serif;
}

.title-badge {
    background-color: #FFD700;
    color: #444;
    display: inline-block;
    padding: 8px 20px;
    font-size: 24px;
    margin-bottom: 20px;
}

.map-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-details {
    background: white;
    border-radius: 4px;
    padding: 15px;
}

.location-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.location-address {
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-score {
    font-weight: bold;
    font-size: 14px;
}

.stars {
    color: #e7711b;
    font-size: 14px;
}

.reviews {
    color: #666;
    font-size: 13px;
}

.map-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-larger {
    color: #4285f4;
    text-decoration: none;
    font-size: 13px;
}

.direction-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.get-directions-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    width: 302px;
    padding: 12px;
    /* border-radius: 4px; */
    position: relative;
    top: 29px;
    right: 312px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
}

.map-frame {
    background-color: #f8f9fa;
    /* border-radius: 4px; */
    width: 100%;
    height: 461px;
    position: relative;
    margin-top: -148px;
}

.map-content {
    width: 100%;
    height: 100%;
    background-color: #e5e3df;
    border-radius: 4px;
    position: relative;
}

.zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.zoom-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.zoom-btn:first-child {
    border-radius: 2px 2px 0 0;
}

.zoom-btn:last-child {
    border-radius: 0 0 2px 2px;
}

.location-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #4285f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* location section ========================================= */
.container-location{
    /* background: #9d9d9c16; */
    margin-bottom: 18px;
}
.location-section {
    max-width: 1200px;
    /* margin: 0 auto; */
    margin-right: 398px;
    background: #fff;
    padding: 20px;
    font-family:  sans-serif;
}

.title-badge {
    background-color: #FFD700;
    color: #444;
    display: inline-block;
    padding: 8px 20px;
    font-size: 24px;
    margin-bottom: 30px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: -110px;
}

.highlights-list {
    flex: 0 0 350px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
}
.location-info{
    position: relative;
    z-index: 99;
}

.location-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon svg {
    width: 12px;
    height: 12px;
    fill: #666;
}

.map-illustration {
    flex: 1;
    position: relative;
    min-height: 400px;
    /* background-color: #fff; */
    /* border-radius: 50%; */
    overflow: hidden;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.05); */
}

.map-roads {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-roads path {
    stroke: #2c3e50;
    stroke-width: 2;
    fill: none;
}

.tree-icon {
    color: #2ecc71;
    font-size: 12px;
}

.compass {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
}

/* gallery =====================================     */
.division-gallery{
    /* background: #9d9d9c16; */
}
.container-gallery{
margin-right: 398px;
margin-bottom: 31px;
background: #fff;
padding: 18px;
}

.gallery-title {
    background-color: #f4d03f;
    color: #333;
    padding: 10px 20px;
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 20px;
}

.marquee img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    /* border-radius: 8px; */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* footer section        */


.footer {
    padding: 14px 30px;
    background-color: #1E2B44;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-section h1 {
    color: #ffd700;
    font-size: 2em;
    margin-bottom: 30px;
}

.about-section p {
    line-height: 1.8;
    font-size: 16px;
    color: white;
}

.logo-section {
    text-align: center;
}

.logo-section img {
    max-width: 400px;
    width: 100%;
}

.social-section {
    text-align: center;
    margin-top: 40px;
color: #fff ;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
    margin: 4px 0;
}

.social-icon {
    width: 35px;
    height: 35px;
    /* background-color: white; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.disclaimer {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}


/* Start zoom  */

@keyframes zoom-in {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.image-zoom-overlay {   
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.zoomed-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: zoom-in 0.3s ease;
}


/* popup form ---------------------------------------- */

.open-form-btn {
    padding: 10px 20px;
    background-color: #001D35;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.open-form-btn:hover {
    background-color: #1574c2;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.popup-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-groups {
    margin-bottom: 15px;
}

.form-groups label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-groups input,
.form-groups textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #45a049;
}

@media (max-width: 480px) {
    .popup-form {
        width: 95%;
        padding: 20px;
    }
}