/* Base Styles */
:root {
    --primary: #3a5a78;
    --secondary: #8b786d;
    --accent: #d4a373;
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --black: #000000;
    --text: #495057;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --vh: 1vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn.primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn.primary:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn.secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.section {
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    text-align: center;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.mountain-loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.peak {
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid var(--primary);
    animation: peakAnimation 2s infinite ease-in-out;
}

.peak:nth-child(1) {
    left: 0;
    animation-delay: 0s;
}

.peak:nth-child(2) {
    left: 25px;
    animation-delay: 0.2s;
}

.peak:nth-child(3) {
    left: 50px;
    animation-delay: 0.4s;
}

@keyframes peakAnimation {
    0%, 100% {
        transform: translateY(0);
        border-bottom-color: var(--primary);
    }
    50% {
        transform: translateY(-20px);
        border-bottom-color: var(--accent);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    transition: var(--transition);
}

.header.scrolled .logo img {
    filter: brightness(0);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    color: var(--white);
}

.header.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span {
    background-color: var(--dark);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.signature {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.signature img {
    height: 60px;
}

.signature span {
    font-style: italic;
    color: var(--primary);
}

.about-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    z-index: -1;
}

/* Rooms Section */
.rooms-section {
    padding: 100px 0;
    background-color: var(--light);
}

.room-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.room-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--accent);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius);
    font-weight: 600;
}

.room-details {
    padding: 25px;
}

.room-details h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.features span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.features i {
    color: var(--primary);
}

.room-details p {
    margin-bottom: 20px;
}

.room-details .btn {
    width: 100%;
    text-align: center;
}

/* Dining Section */
.dining-section {
    padding: 100px 0;
    background-color: var(--white);
}

.dining-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.dining-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.dining-image img {
    transition: var(--transition);
}

.dining-content:hover .dining-image img {
    transform: scale(1.03);
}

.dining-text {
    flex: 1;
}

.dining-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.dining-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature i {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
    background-color: var(--light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: var(--radius);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.amenity-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(58, 90, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.amenity-card .icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.amenity-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--white);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.gallery-main {
    height: 600px;
    margin-bottom: 20px;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-main img.active {
    opacity: 1;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.thumb {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumb:hover,
.thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
}

.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.gallery-prev:hover,
.gallery-next:hover {
    background-color: var(--accent);
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background-color: var(--light);
}

.location-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.location-features {
    margin-top: 30px;
}

.location-map {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    animation: fade 0.5s ease;
}

.testimonial.active {
    display: block;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.testimonial .content {
    background-color: var(--light);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
}

.rating {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.quote:before,
.quote:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
}

.quote:before {
    top: -20px;
    left: -15px;
}

.quote:after {
    bottom: -30px;
    right: -15px;
}

.guest {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.guest img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.details h4 {
    margin-bottom: 5px;
}

.details span {
    font-size: 14px;
    color: var(--primary);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--light);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 30px;
}

.contact-info h2:after {
    left: 0;
    transform: translateX(0);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-body);
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 15px;
    color: var(--text);
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus+label,
.form-group input:valid+label,
.form-group select:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background-color: var(--white);
    padding: 0 5px;
    color: var(--primary);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: var(--font-body);
}

.newsletter-form button {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.legal-links a:hover {
    opacity: 1;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: translateY(-5px);
}

.whatsapp-float i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 90px;
}

.back-to-top:hover {
    background-color: var(--accent);
}

/* Properties Section */
.properties {
    padding: 100px 0;
    background-color: var(--light);
}

.properties .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.properties .section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
}

.properties .section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.property-info p {
    color: var(--text);
    margin-bottom: 15px;
    line-height: 1.5;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.property-feature {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 14px;
}

.property-feature i {
    margin-right: 5px;
    color: var(--accent);
}

.property-actions {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background-color: rgba(212, 163, 115, 0.1);
}

.whatsapp-btn {
    background-color: #25D366;
    color: #fff;
    padding: 12px 25px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border: none;
}

.whatsapp-btn:hover {
    background-color: #1fba57;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .about-content,
    .dining-content,
    .location-content,
    .contact-content {
        flex-direction: column;
    }
    .about-image:before {
        display: none;
    }
    .gallery-main {
        height: 500px;
    }
    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links a {
        color: var(--dark);
        font-size: 1.2rem;
        padding: 15px 0;
    }
    .header.scrolled .nav-links a {
        color: var(--dark);
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .subtitle {
        font-size: 1.2rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    .section-title {
        font-size: 2rem;
    }
    .room-cards {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .gallery-main {
        height: 400px;
    }
    .property-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .gallery-main {
        height: 300px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
    }
    .whatsapp-float i {
        margin-right: 0;
    }
    .back-to-top.active {
        bottom: 80px;
    }
    .properties .section-header h2 {
        font-size: 2rem;
    }
    .property-image {
        height: 220px;
    }
}