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

body {
    font-family: "Ubuntu Sans", sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: transparent;
    backdrop-filter: blur(2px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled,
.navbar.scrolled-fixed {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-logo{
    max-height: 100px;
}
.scrolled .header-logo,
.scrolled-fixed .header-logo{
    max-height: 50px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5eb3b3 0%, #4a9d9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-item {
    border-bottom-color: #66b3b7;
    border-bottom-style: solid;
    border-width: 0px;
}

:has(#company) .navbar-nav .nav-item {
    border-bottom-color: #666;
}

.navbar.scrolled .navbar-nav .nav-link,
.navbar.scrolled .navbar-nav .nav-link {
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #5eb3b3;
}

.btn-custom {
    background: linear-gradient(90deg, #66b3b7 0%, #66b3b7 100%);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-weight: 400;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-custom:hover {
    transform: translateY(-2px);
    color: white;
}

.navbar-toggler {
    border: none;
    background: rgba(94, 179, 179, 0.3);
}

.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(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

:has(#company) .hero-section {
    min-height: 100vh;
    background-position: 50% 20%;
}

.hero-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(94, 179, 179, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.hero-highlight {
    font-weight: bold;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.btn-hero {
    background: linear-gradient(90deg, #66b3b7 0%, #66b3b7 100%);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-hero:hover {
    transform: translateY(-1px);
    color: white;
}

:has(.generic-page) .navbar {
    backdrop-filter: unset;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
:has(.generic-page) .navbar .nav-link{
    color:black;
}
:has(.generic-page) .header-logo{
    max-height: 50px;
}


:has(#company) .navbar {
    backdrop-filter: unset;
}
:has(#company) .navbar .nav-link{
    color:black;
}


.binobi-icon {
    position: absolute;
    bottom: 5px;
    right: 0px;
    opacity: 0.6;
}
.binobi-icon img {
    max-height: 70vh;
    aspect-ratio: 8/9!important;
    object-fit: contain;
    width: 40vw;
    height: auto;
}


/* Search Bar */
.search-bar-container {
    position: absolute;
    top: -38px;
    left: 0;
    right: 0;
    z-index: 10;
}

.search-bar {
    background: white;
    border-radius: 50px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    min-width: 0;
}

.search-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.search-select,
.search-input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    padding: 0;
    width: 100%;
}

.search-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}

.search-input {
    cursor: text;
}

.search-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

.btn-search-submit {
    background: linear-gradient(135deg, #5eb3b3 0%, #4a9d9d 100%);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
    cursor: pointer;
}

.btn-search-submit:hover {
    transform: scale(1.1);
}

/* Mobile Search Button */
.search-bar-mobile {
    background: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: -90px;
}
#mobileSearchBtn{
    margin-top: -20px!important;
}

.search-bar-mobile:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.search-modal.active {
    display: flex;
    align-items: flex-end;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.search-modal-content {
    background: white;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.search-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.search-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.search-modal-close:hover {
    color: #333;
}

.search-modal-body {
    padding: 1.5rem;
}

.search-field-mobile {
    margin-bottom: 1.5rem;
}

.search-label-mobile {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
}

.search-select-mobile,
.search-input-mobile {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    background: #fff;
}

.search-select-mobile:focus,
.search-input-mobile:focus {
    border-color: #66b3b7;
}

.search-select-mobile {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

.btn-search-mobile {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #66b3b7 0%, #66b3b7 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-search-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 179, 183, 0.4);
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    min-width: 0;
    cursor: pointer;
}

.search-field-mobile {
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.search-input {
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    padding: 0;
    width: 100%;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.search-input-mobile {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
    cursor: pointer;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.date-display {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
}

.search-field .date-display {
    padding: 0;
}

.search-field-mobile .date-display {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.search-field-mobile:hover .date-display {
    border-color: #66b3b7;
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
    min-width: 0;
    cursor: pointer;
    position: relative;
}

.search-field-mobile {
    margin-bottom: 1.5rem;
    cursor: pointer;
    position: relative;
}


/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #66b2b6 0%, #fff 20%);
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
}

.brand-name {
    font-weight: 400;
}

.experience-image-wrapper {
    position: relative;
}

.experience-img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-item {
    margin-bottom: 2.5rem;
}

.experience-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5eb3b3;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.experience-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* company quote */
.experience-quote {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.quote-icon {
    position: absolute;
    width: 180px;
    height: 180px;
}
.quote-left {
    top: -50px;
    left: 10%;
}

.quote-right {
    bottom: -50px;
    right: 20%;
}

.experience-quote2 {
    position: relative;
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.quote2-icon {
    position: absolute;
    width: 180px;
    height: 180px;
}

.quote2-left {
    top: -60px;
    left: 5%;
}

.quote2-right {
    bottom: -50px;
    right: 10%;
}

.quote-text {
    font-size: 3rem;
    line-height: 1.2;
    color: #333;
    font-weight: 300;
    margin: 0;
    position: relative;
    z-index: 1;
}

.quote-text strong {
    font-weight: 700;
}


/* Accordion Custom */
.accordion-custom {
    width: 100%;
}

.accordion-item-custom {
    margin-bottom: 1.5rem;
}

.accordion-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
}

.accordion-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #66b2b6;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.accordion-line {
    height: 1px;
    background: linear-gradient(90deg, #66b2b6 0%, transparent 100%);
    margin: 0.5rem 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.accordion-content.active {
    max-height: 500px;
    padding: 1rem 0;
}

.accordion-text {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.accordion-text:last-child {
    margin-bottom: 0;
}


/* Listings Section */
.listings-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.listings-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.gcarousel-container {
    position: relative;
    padding: 0 60px;
    
}

.gcarousel-wrapper {
    overflow: hidden;
}

.gcarousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.gcarousel-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    transition: flex 0.3s ease, min-width 0.3s ease;
}

.listings-grid .gcarousel-item  {
    margin-bottom: 20px;
}


@media (max-width: 1920px) {
    .listings-grid .gcarousel-item  {
        flex: 0 0 calc(50% - 14px);
        min-width: calc(50% - 14px);
    }
}

@media (max-width: 768px) {
    .listings-grid .gcarousel-item  {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.listing-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top-right-radius: 130px;
}


.listing-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

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

.listing-content {
    padding: 1.5rem;
}

.listing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.listing-address {
    font-size: 1rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.listing-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #666;
}

.feature-item svg {
    flex-shrink: 0;
}

.listing-divider {
    height: 1px;
    background: linear-gradient(90deg, #66b3b7 0%, transparent 100%);
    margin-bottom: 1.5rem;
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-price {
    font-size: 1.8rem;
    font-weight: 400;
    color: #66b3b7;
}

.listing-btn {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #66b3b7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.listing-btn:hover {
    background: #66b3b7;
    color: white;
    transform: scale(1.1);
}

.gcarousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: transform 0.3s ease;
}

.gcarousel-btn:hover {
    /*transform: translateY(-50%) scale(1.1);*/
}

.gcarousel-btn-prev {
    left: 0;
}

.gcarousel-btn-next {
    right: 0;
}

.gcarousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.services-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #66b2b6 0%, #fff 20%);
    overflow: hidden;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.4;
}

.services-grid {
    display: flex;
    gap: 0;
    width: 100%;
    height: 600px;
}

.service-item {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

:not(.services-page) .service-item:hover{
    flex: 1.8;
}

.services-page .service-item.active {
    flex: 1.8;
}


section:not(.services-page) .service-item:not(:hover){
    flex: 0.8;
} 
.services-page .service-item:not(.active) {
    flex: 0.8;
}

.service-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-top-right-radius: 130px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.6s ease, transform 0.6s ease;
}

:not(.services-page) .service-item:hover .service-image, .services-page .service-item.active .service-image {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.service-caption {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

:not(.services-page) .service-item:hover .service-caption, .services-page .service-item.active .service-caption {
    opacity: 1;
    transform: translateY(0);
}

.service-caption h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
.service-description {
    height: 0;
    overflow: hidden;
    transition: all 0.1s ease, transform 0.6s ease;
    display: block;
    margin: 0;
}
.service-description > * {
    height: 0;
}

.services-page:has(.service-item-1.active) .service-1-description{
    min-height: 150px;
    height: auto;
}
.services-page:has(.service-item-2.active) .service-2-description{
    min-height: 150px;
    height: auto;
}
.services-page:has(.service-item-3.active) .service-3-description{
    min-height: 150px;
    height: auto;
}
.services-page:has(.service-item-4.active) .service-4-description{
    min-height: 150px;
    height: auto;
}
.services-page:has(.service-item-5.active) .service-5-description{
    min-height: 150px;
    height: auto;
}
.services-page:has(.service-item-1.active) .service-1-description > *, 
.services-page:has(.service-item-2.active) .service-2-description > *, 
.services-page:has(.service-item-3.active) .service-3-description > *, 
.services-page:has(.service-item-4.active) .service-4-description > *,
.services-page:has(.service-item-5.active) .service-5-description > * {
    height: unset;
}

.info-section {
    background: #42545a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.info-content {
    position: relative;
    z-index: 2;
}

.info-title {
    font-size: 2rem;
    color: white;
}

.info-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.highlight {
    color: #5eb3b3;
}

.info-text {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.8;
}

.info-text-small {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.7;
}

.btn-footer {
    background: #5eb3b3;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background: #4a9d9d;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(94, 179, 179, 0.4);
}

.info-icon {
    position: absolute;
    bottom: 20px;
    left: 50px;
    opacity: 0.6;
}


.service-feature {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    margin-bottom: 0rem;
    display: flex;
    justify-content: center;
}


.feature-icon img {
    height: 80px;
    margin-bottom: 20px;
}


.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}


.partner-section {
    padding: 6rem 0;
    overflow: hidden;
}

.partner-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.partner-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.4;
}


.contact-info-card {
    background-size: cover;
    border-radius: 1px;
    padding: 3rem 2.5rem;
    height: 100%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
}


.contact-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.contact-details {
    position: relative;
    z-index: 2;
}

.contact-address,
.contact-phone,
.contact-email {
    color: white;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0;
    text-decoration: none;
}

.contact-form-card {
    background: #fafafa;
    border-radius: 1px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-control-custom {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control-custom-website{
    display: none;
    position: fixed;
    top: -1000px;
    left: 1000px;
    height: 0;
    max-height: 0;
}

.form-control-custom::placeholder {
    color: #999;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.form-control-custom:focus {
    border-bottom-color: #66b3b7;
}

textarea.form-control-custom {
    resize: none;
}

.form-label-custom {
    font-size: 0.85rem;
    color: #999;
    letter-spacing: 0.5px;
    display: block;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-custom {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-custom input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: #66b3b7;
}

.radio-label {
    font-size: 1rem;
    color: #333;
    cursor: pointer;
}

.btn-submit {
    background: linear-gradient(90deg, #66b3b7 0%, #66b3b7 100%);
    color: white;
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 179, 183, 0.4);
    color: white;
}

/* 404 Error Page */
.error-404-section {
    background: linear-gradient(180deg, #fff 0%, #e8f4f5 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    margin-top:100px
}

.error-content {
    padding: 2rem 0;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: #66b3b7;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.error-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.error-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-primary-custom {
    background: linear-gradient(90deg, #66b3b7 0%, #66b3b7 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 179, 183, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    color: #66b3b7;
    border: 2px solid #66b3b7;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #66b3b7;
    color: white;
    transform: translateY(-2px);
}

.error-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-illustration svg {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, #67b4b8 50%, #fff 100%);
    z-index: 1;
}

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

.breadcrumb-custom {
    margin-bottom: 1.5rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Page Content */
.page-content {
    padding: 5rem 0;
    background: white;
}

.content-block {
    margin-bottom: 3rem;
}

.content-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-subheading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #66b3b7;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.content-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.content-list li {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.content-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: #66b3b7;
    border-radius: 50%;
}

.content-image-block {
    margin: 3rem 0;
}

.content-image-block img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.95rem;
    color: #999;
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
}

.content-highlight {
    background: linear-gradient(135deg, #e8f4f5 0%, #f0f8f9 100%);
    border-left: 4px solid #66b3b7;
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.highlight-icon {
    flex-shrink: 0;
}

.highlight-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.page-cta {
    background: linear-gradient(135deg, #66b3b7 0%, #67b4b8 100%);
    padding: 4rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.btn-cta {
    background: white;
    color: #66b3b7;
    border: none;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #66b3b7;
}


/* Footer Section */
.footer-main {
    background: #3d5056;
    padding: 4rem 0 2rem;
    color: #fff;
}

.footer-logo {
    display: inline-block;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}


.footer-address{
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.3;
}

.footer-address a {
    color: #fff;
    text-decoration: none;
}


.footer-phone {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;

}

.footer-email {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-email a, .footer-phone a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover, .footer-phone a:hover {
    color: #5eb3b3;
}

.footer-heading {
    color: #66b3b7;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #66b3b7;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright,
.footer-credits {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.5);
}



/* Responsive */
@media (max-width: 1400px) {
    .quote-text {
        font-size: 2.3rem;
    }
    
    .quote-icon {
        width: 120px;
        height: 120px;
    }
    
    .quote-left {
        top:-20px;
        left: 16%;
    }
    
    .quote-right {
        bottom:-20px;
        right: 25%;
    }
}

@media (max-width: 1280px) {
   .quote-text {
        font-size: 2.3rem;
    }
    
    .quote-icon {
        width: 120px;
        height: 120px;
    }
    
    .quote-left {
        top:-20px;
        left: 16%;
    }
    
    .quote-right {
        bottom:-20px;
        right: 25%;
    }
}


@media (max-width: 1200px) {
   .quote-text {
        font-size: 2.3rem;
    }
    
    .quote-icon {
        width: 120px;
        height: 120px;
    }
    
    .quote-left {
        top:-20px;
        left: 10%;
    }
    
    .quote-right {
        bottom:-20px;
        right: 20%;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
    }

    .search-btn {
        text-align: left;
        padding: 0.8rem 1rem;
    }

    .btn-search-submit {
        margin-left: 0;
        width: 100%;
        border-radius: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .info-title {
        font-size: 1.5rem;
    }

    .info-subtitle {
        font-size: 1.3rem;
    }

    .info-icon {
        opacity: 0.3;
        left: 20px;
    }

    .quote-text {
        font-size: 1.8rem;
    }
    
    .quote-icon {
        width: 80px;
        height: 80px;
    }
    
    .quote-left {
        top:-0px;
        left: 9%;
    }
    
    .quote-right {
        bottom:0px;
        right: 20%;
    }

     .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2.5rem;
    }
    
    .error-text {
        font-size: 1rem;
    }

    .page-hero {
        min-height: 350px;
        padding: 7rem 0 3rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-heading {
        font-size: 2rem;
    }
    
    .content-subheading {
        font-size: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .search-bar-container {
        bottom: 50px;
    }


    .experience-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-section {
        padding: 4rem 0 2rem;
    }

    .accordion-title {
        font-size: 1.2rem;
    }

    .gcarousel-container {
        padding: 0 40px;
    }

    .gcarousel-btn svg {
        width: 30px;
        height: 30px;
    }

    .listings-title {
        font-size: 2rem;
    }



    .services-section {
        padding: 4rem 0;
        overflow: hidden;
    }

    .services-grid {
        flex-direction: row;
        height: 400px;
        gap: 15px;
        transition: transform 0.3s ease;
        cursor: grab;
        user-select: none;
        touch-action: pan-x;
        width: max-content;
    }

    .services-grid:active {
        cursor: grabbing;
    }

    .service-item {
        height: 400px;
        transition: flex 0.3s ease, width 0.3s ease;
    }

    .service-caption {
        opacity: 1;
        transform: translateY(0);
        bottom: 20px;
        left: 15px;
        right: 15px;
    }

    .service-image {
        filter: grayscale(100%) brightness(0.7);
        transition: filter 0.3s ease;
    }

    .service-image-wrapper {
        border-radius: 0 100px 0 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-subtitle {
        font-size: 1rem;
    }

    .service-caption h3 {
        font-size: 1.3rem;
    }

    
    .quote-text {
        font-size: 1.3rem;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
    }
    
    .quote-left {
        top:10px;
        left: 2%;
    }
    
    .quote-right {
        bottom: 10px;
        right: 15%;
    }
    
    .experience-quote {
        padding: 2rem 1rem;
    }

    .service-feature {
        padding: 0;
    }
    
    .feature-icon img {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }

    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links li {
        margin-bottom: 0.6rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        text-align: center;
    }

    .footer-credits {
        margin-top: 0.5rem;
    }

    .search-bar-container {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

     .error-number {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-text {
        font-size: 0.95rem;
    }
    
    .error-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
        margin: 0 !important;
    }
    
    .error-illustration {
        margin-top: 2rem;
    }

     .page-hero {
        min-height: 300px;
        padding: 10rem 0 2rem;
    }
    
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .page-content {
        padding: 3rem 0;
    }
    
    .content-heading {
        font-size: 1.8rem;
    }
    
    .content-highlight {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .page-cta {
        padding: 3rem 0;
        text-align: center;
    }
    
    .btn-cta {
        width: 100%;
        margin-top: 1rem;
    }

}
@media (max-width: 576px) {
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
}

/* FAQ Section */
.faq-section {
    background: 
        radial-gradient(circle at 0% 0%, #48565a 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, #68babe 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, #90b1b0 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, #5d9498 0%, transparent 50%),
        #507375;

    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
}

.faq-section .container {
    margin-top: 100px;
}

.faq-heading-wrapper {
    position: sticky;
    top: 120px;
    padding-right: 40px;
}

.faq-main-title {
    font-size: 150px;
    font-weight: 400;
    color: rgba(255, 255, 255);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.faq-subtitle {
    font-size: 42px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(135deg, #334249 0%, #447278 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: linear-gradient(135deg, #67b4b8 0%, #67b4b8 100%);

}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #fff;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 28px 28px;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .faq-heading-wrapper {
        position: static;
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .faq-main-title {
        font-size: 80px;
    }
    
    .faq-subtitle {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 80px 0 60px;
    }
    
    .faq-main-title {
        font-size: 60px;
    }
    
    .faq-subtitle {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}




.hero-keys-section {
    padding-top:250px;
    background-repeat: no-repeat;
    background-position: 60% 100%;
    background-size: auto 75%;
    color: #fff;
    overflow: hidden;
    background-color: #42545a;
    height: 80vh;
    align-items: center;
    display: flex;
}

.owner-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}



.owner-page .hero-title {
    font-size: 4rem;
    font-weight: 700;
}

.owner-page .hero-text {
    max-width: 600px;
    opacity: 0.9;
    font-size: 1.3rem;
    line-height: 1.3;
}

.owner-page .hero-keys {
    max-width: 420px;
}

/* Overlapping circle */
.owner-page .overlap-circle {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: #66b3b7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: top;
    z-index: 3;
    text-align: center;
    padding: 40px;
}
.owner-page .overlap-circle-outline {
    position: absolute;
    left: 50%;
    top: -100px;
    transform: translateX(-45%);
    width: 600px;
    height: 600px;
    border-color: #66b3b7;
    border-radius: 50%;
   
    text-align: center;
    padding: 40px;
    border: 1px solid #66b3b7;
}

.philoshophy-section .container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}


.owner-page .circle-inner h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.owner-page .circle-inner p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #fff;
}

/* Second section spacing fix */
.owner-page.management-section {
    min-height: 500px;
}

.owner-page .management-image img {
    border-radius: 0 0 0 120px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .hero-keys-section {
        height: 100%;
        padding-top: 170px;
    }
    .owner-page .overlap-circle {
        width: 500px;
        height: 500px;
        top: -60px;
    }
    .owner-page .overlap-circle-outline  {
        width: 500px;
        height: 500px;
        top: -60px;
    }

    .hero-keys-section.section-2 > .container > .row {
        flex-direction: column-reverse;
    }

    .owner-page.management-section {
        min-height: 400px;
    }
        
    .owner-page .circle-inner h3 {
        font-size: 2.5rem;
    }

    .owner-page .circle-inner p {
        font-size: 1.1rem;
    }


    .owner-page .management-section {
        margin-top: 180px;
    }
}

@media (max-width: 600px) {
    .hero-keys-section {
        height: 100%;
        padding-top: 170px;
    }
    .owner-page .hero-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
    }

    .owner-page .hero-text {
        max-width: 600px;
        opacity: 0.9;
        font-size: 1.3rem;
        line-height: 1.3;
        text-align: center;
    }

    .owner-page.management-section {
        min-height: 250px;
    }

    .hero-keys-section.section-2 > .container > .row {
        flex-direction: column-reverse;
    }

    .hero-keys-section.section-2 {
        margin-top: 50px;
    }

    .owner-page .overlap-circle {
        width: 330px;
        height: 330px;
        top: -60px;
    }
    .owner-page .overlap-circle-outline  {
        width: 330px;
        height: 330px;
        top: -60px;
    }

        
    .owner-page .circle-inner h3 {
        font-size: 1.2rem;
    }

    .owner-page .circle-inner p {
        font-size: .8rem;
    }


    .owner-page .management-section {
        margin-top: 180px;
    }
}

:root {
    --primary-color: #5eb4c7;
    --secondary-color: #2c3e50;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4da3b6;
    border-color: #4da3b6;
}

.text-primary {
    color: var(--primary-color) !important;
}

.navbar {
    transition: all 0.3s ease;
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    color: var(--text-dark);
}

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

.hero-section {
    position: relative;
    padding-bottom: 80px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.search-card {
    position: relative;
    margin-top: -40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}

.search-card .form-control {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.search-card .form-control::placeholder {
    color: #999;
}

.search-card .btn-primary {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    opacity: 0.3;
    z-index: -1;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--text-dark);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(94, 180, 199, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235eb4c7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

footer a:hover {
    text-decoration: underline !important;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 60px;
    }
    
    .hero-wrapper {
        min-height: 400px !important;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .search-card {
        margin-top: -30px;
        padding: 1rem !important;
    }
    
    .search-card .form-control {
        margin-bottom: 0.5rem;
    }
    
    .search-card .btn-primary {
        width: 100%;
        height: 45px;
        border-radius: 25px !important;
    }
    
    .circle-decoration {
        width: 200px;
        height: 200px;
    }
}

.property-form-card {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
     background: 
        radial-gradient(circle at 0% 0%, #a2b9b6 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, #67b8bc 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, #48565a 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, #66b7bb 0%, transparent 50%),
        #507375;
}

.form-control-modern {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-radius: 0;
    color: #fff;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-control-modern::placeholder {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 1px;
}

.form-control-modern:focus {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 991px) {
    .property-form-card {
        padding: 2rem !important;
    }
    
    .property-form-card h2 {
        font-size: 1.75rem;
    }
}


.hero-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-card {
    min-height: 500px;
}

.contact-item svg {
    opacity: 0.9;
}

.form-control-contact {
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: border-color 0.3s ease;
}

.form-control-contact::placeholder {
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-control-contact:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.map-section iframe {
    filter: grayscale(0.3);
}

@media (max-width: 991px) {
    .contact-info-card {
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}





:root {
    --primary-color: #5eb4c7;
    --secondary-color: #2c3e50;
    --text-dark: #333;
    --text-light: #666;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4da3b6;
    border-color: #4da3b6;
}

.text-primary {
    color: var(--primary-color) !important;
}

.navbar {
    transition: all 0.3s ease;
}

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

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    color: var(--text-dark);
}

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

.hero-section {
    position: relative;
    padding-bottom: 80px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.search-card {
    position: relative;
    margin-top: -40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}

.search-card .form-control {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
}

.search-card .form-control::placeholder {
    color: #999;
}

.search-card .btn-primary {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    opacity: 0.3;
    z-index: -1;
}

.accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--text-dark);
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(94, 180, 199, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235eb4c7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

footer a:hover {
    text-decoration: underline !important;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 60px;
    }
    
    .hero-wrapper {
        min-height: 400px !important;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .search-card {
        margin-top: -30px;
        padding: 1rem !important;
    }
    
    .search-card .form-control {
        margin-bottom: 0.5rem;
    }
    
    .search-card .btn-primary {
        width: 100%;
        height: 45px;
        border-radius: 25px !important;
    }
    
    .circle-decoration {
        width: 200px;
        height: 200px;
    }
}

.property-form-card {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-control-modern {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-radius: 0;
    color: #fff;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-control-modern::placeholder {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 1px;
}

.form-control-modern:focus {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    box-shadow: none;
    outline: none;
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 991px) {
    .property-form-card {
        padding: 2rem !important;
    }
    
    .property-form-card h2 {
        font-size: 1.75rem;
    }
}

.hero-contact {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-card {
    min-height: 500px;
}

.contact-item svg {
    opacity: 0.9;
}

.form-control-contact {
    border: none;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: border-color 0.3s ease;
}

.form-control-contact::placeholder {
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
}

.form-control-contact:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.map-section iframe {
    filter: grayscale(0.3);
}

@media (max-width: 991px) {
    .contact-info-card {
        min-height: auto;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

.inner-banner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.thessaloniki-content .image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.investment-cta {
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 991px) {
    .thessaloniki-content .image-wrapper img {
        height: 300px;
    }
    
    .inner-banner h1 {
        font-size: 1.5rem;
    }
}

.service-content {
    position: relative;
}

.service-content h2 span {
    position: relative;
    display: inline-block;
}

.service-content h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.3;
}


/* Property Listings Page Styles */
.my-input {
    width: calc(50% - 43px);
    height: 45px;
    border: 1px solid #000;
    border-radius: 7px;
    text-align: center;
    font-size: 16px;
    color: #000;
}

.my-divider {
    width: 26px;
    height: 1px;
    background: #000;
    margin: 0 20px;
}

.my-select {
    width: calc(50% - 43px);
    height: 45px;
    border: 1px solid #000;
    border-radius: 7px;
    text-align: center;
    font-size: 16px;
    color: #000;
}

.image-container {
    height: 210px;
    max-width: 100%;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.my-image {
    opacity: 0;
}

.swiper-pagination2.swiper-pagination-clickable.swiper-pagination-bullets {
    position: absolute;
    bottom: 10px;
    z-index: 1000;
    left: 50%;
    transform: translateX(-50%);
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    position: relative;
    margin: 0px 2px -1px 2px !important;
    background: transparent;
    border: 2px solid #fff;
    width: 8px;
    height: 8px;
    background: #fff;
    transition: all 0.3s ease;
    margin: 0 2px !important;
    -webkit-transition: all 0.3s ease;
}

.swiper-button-next2, .swiper-button-prev2 {
    width: 0px;
    height: 0px;
    bottom: 20px;
    position: absolute;
    z-index: 99;
    opacity: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-prev2 {
    right: auto;
    left: 37.5%;
}

.swiper-button-next2 {
    right: 37.5%;
    left: auto;
}

.more-width {
    width: 190px;
}

.map-pin {
    display: block;
    width: 20px;
    height: 20px;
    background: #424c81;
    border-radius: 50%;
    border: 2px solid #fff;
}

.map-pin.active {
    background: #E52628;
}

#map-prop {
    width: 300px;
    position: absolute;
    right: 0px;
    top: -200px;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fff;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

#small-wrapper {
    position: relative;
}

#map-prop h6 {
    margin: 0;
    margin-top: 1rem;
    font-weight: 600;
    color: #3A3A40;
}

#map-prop p {
    margin-top: 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}

#prop-img {
    width: 272px;
    max-height: 200px;
}

#bed-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#bed-inner h4 {
    display: flex;
    align-items: end;
    font-size: 0.9rem;
    gap: 0.5rem;
    font-weight: 700;
    color: #3A3A40;
}

#small-div-left {
    position: absolute;
    bottom: 1.8rem;
    left: 0rem;
    margin: 1rem;
}

#span-left {
    color: #242854;
    font-weight: bold;
    background-color: rgb(255 255 255 / 66%);
    border-radius: 0.25rem;
    font-size: 0.85rem;
    padding: 0.25rem 0.65rem;
}

.fixed-height {
    height: 250px;
}

#filters-wrapper {
    z-index: 1;
}

#map {
    height: calc(100vh - 5.7rem);
    position: fixed;
    width: 100%;
    max-width: 50vw;
}

#map-area {
    position: sticky;
    height: calc(100vh - 10rem);
}

.icons-map {
    width: 1.25rem !important;
    max-height: 100% !important;
    border-radius: 0.35rem;
    aspect-ratio: 1.2;
}

/* Property Listing Layout Styles */
.property-listing-eight .listing-type-filter {
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    padding: 28px 40px 38px;
}

.property-listing-eight .listing-type-filter ul {
    margin: 0 -10px;
}

.property-listing-eight .listing-type-filter ul li {
    padding: 0 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.property-listing-eight .listing-type-filter ul li a {
    line-height: 43px;
    border: 1px solid #000;
    border-radius: 40px;
    padding: 0 35px;
    color: #000;
    transition: all .3s ease-in-out 0s;
}

.property-listing-eight .listing-type-filter ul li a.active,
.property-listing-eight .listing-type-filter ul li a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.listing-header-filter .nice-select {
    background: transparent;
    border: 1px solid #000;
    line-height: 33px;
    border-radius: 30px;
    padding: 0 18px;
    font-size: 15px;
    letter-spacing: -.15px;
    min-width: 130px;
}

.listing-header-filter .nice-select:after {
    right: 12px;
}

.listing-header-filter .layout-change {
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 33px;
    border: 1px solid #000;
    color: #000;
}

.listing-header-filter .layout-change:focus,
.listing-header-filter .layout-change:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Responsive styles */
@media only screen and (max-width: 991px) {
    #map-wrapper {
        display: none;
    }
    .to-hide {
        display: none;
    }

    .property-titlee{
        margin-top: 40px;;
    }
}


.bg-pink{
    background: #f8f9fa!important;
}

.set-height-similar{
    max-height: 200px;
    height: 200px;
}

.lang-opt {
    color: white; 
    text-decoration:none
}
.active-lang{
    color: white; 
}

.scrolled .lang-opt,
.scrolled .active-lang {
    color:#333;
}