/* ===== BASE STYLES ===== */
:root {
    --primary-color: #0095e8;
    --primary-dark: #0077bb;
    --secondary-color: #ff9500;
    --text-color: #333;
    --text-light: #777;
    --text-white: #fff;
    --bg-light: #f9f9f9;
    --bg-dark: #222;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Updated heading styles with the new Lato font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header.light {
    color: var(--text-white);
}

.section-header.light h2 span {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 900;
    background-color: white;
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.current-language {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 0.5rem;
    border-radius: 2px;
}

.current-language i {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: var(--transition);
}

.language-selector.active .current-language i {
    transform: rotate(180deg);
}

.language-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.language-selector.active .language-dropdown {
    max-height: 200px;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.language-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* ===== BUTTONS ===== */
.book-now-btn,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 149, 232, 0.2);
    border: none;
    cursor: pointer;
}

.book-now-btn:hover,
.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(0, 149, 232, 0.3);
    color: white;
}

.book-now-btn:active,
.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 149, 232, 0.2);
}

.cta-button i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

.cta-button.light {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.cta-button.light:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
    box-shadow: 0 7px 15px rgba(255, 255, 255, 0.3);
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.header.scrolled {
    background-color: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-white);
    transition: var(--transition);
}

.header.scrolled .logo a {
    color: var(--text-color);
}

.logo img {
    height: 40px;
    margin-right: 1rem;
}

.logo-text {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.header.scrolled .nav-link {
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle span {
    background-color: var(--text-white);
    height: 3px;
    width: 100%;
    margin: 0;
    position: absolute;
    left: 0;
    display: block;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 9px;
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-active .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-active .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-active .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Updated mobile menu transition */
.mobile-menu {
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    z-index: 1001;
    padding: 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-logo {
    height: 40px;
    margin-right: 1rem;
}

.close-menu {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-color);
}

.mobile-menu nav ul {
    margin-bottom: 2rem;
}

.mobile-menu nav li {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mobile-book-now {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    background-image: url('photos/backgroundimage.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--text-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.267) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    opacity: 1;
    letter-spacing: 3px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.reveal-text, .reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-white);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-down i {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(5px);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.albufeira-info {
    margin-top: 4rem;
}

.info-header {
    text-align: center;
    margin-bottom: 2rem;
}

.info-header h3 {
    color: var(--text-color);
}

.info-header h3 span {
    color: var(--primary-color);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.tab-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}

.tab-text h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.nearby-places {
    margin-top: 1rem;
}

.nearby-places li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.nearby-places li:last-child {
    border-bottom: none;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background-color: white;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    margin: 0.3rem;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.gallery-cta {
    text-align: center;
}

.gallery-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* ===== ENHANCED REVIEWS SECTION ===== */
.reviews-section {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('photos/sunset at rooftop.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: var(--text-white);
}

.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 149, 232, 0.3) 0%, rgba(0, 83, 139, 0.3) 100%);
}

.reviews-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reviews-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.review-card {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-profile {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reviewer-details {
    text-align: center;
}

.reviewer-details h4 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--text-white);
}

.review-rating {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.review-text {
    position: relative;
    margin-top: 1rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.4;
    position: absolute;
    top: -10px;
    left: 0;
}

.review-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-left: 2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.prev-btn:active, .next-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    margin: 0 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    background-color: var(--bg-light);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.location-info {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

address {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-style: normal;
    font-weight: 500;
}

address i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.distance-info h4, .transport-options h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.distance-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.distance-info ul li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.transport-options {
    margin-top: 2rem;
}

/* ===== OTHER PROPERTY SECTION ===== */
/* ===== OTHER PROPERTY SECTION ===== */
.other-property-section {
    background-color: white;
    padding: 6rem 0;
}

.property-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.property-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-image:hover img {
    transform: scale(1.05);
}

.property-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.property-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.property-highlights {
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.highlight-text h4 {
    margin-bottom: 0.3rem;
    color: var(--text-color);
}

.highlight-text p {
    margin-bottom: 0;
    font-size: 1rem;
}

.property-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button.secondary {
    background-color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background-color: #e08600;
}


.final-cta {
    background-image: url('photos/sunset at rooftop.png');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-white);
    padding: 6rem 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 149, 232, 0.8) 0%, rgba(0, 83, 139, 0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-content h2 span {
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.booking-alert {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.booking-alert i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    margin-bottom: 0.5rem;
}

.footer-logo p {
    opacity: 0.7;
}

.footer-contact h4, .footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-contact ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact ul li i {
    margin-right: 1rem;
    width: 1.5rem;
    text-align: center;
    color: var(--secondary-color);
}

.footer-contact ul li a {
    color: var(--text-white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-contact ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    color: var(--text-white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0;
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .tab-content.active {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .reviewer-avatar {
        width: 70px;
        height: 70px;
    }

    .property-image {
        max-height: 400px;
        margin-bottom: 1.5rem;
    }

    .property-content {
        grid-template-columns: 1fr;
    }
    
    .property-image {
        width: 100%;
        max-height: 400px;
        margin-bottom: 2.5rem;
        order: -1; /* This makes the image appear first */
    }
    
    .property-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-text p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .review-text {
        text-align: center;
    }
    
    .quote-icon {
        position: static;
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .review-text p {
        padding-left: 0;
    }
    
    .booking-alert {
        flex-direction: column;
        padding: 1rem;
    }
    
    .booking-alert i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
    }
    
    .slider-controls {
        margin-top: 1.5rem;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
    }

    .other-property-section {
        padding: 4rem 0;
    }
    
    .property-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .property-info p {
        text-align: center;
    }
    
    .property-buttons {
        justify-content: center;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 2rem;
    }
    
    .property-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .other-property-section {
        padding: 4rem 0;
    }
    
    .property-info h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .property-info p {
        text-align: center;
    }
    
    .property-buttons {
        justify-content: center;
    }
    
    .highlight-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .highlight-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 2rem;
    }
    
    .property-highlights {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}