/* ========== STYLE.CSS - ABHISREE HOME ========== */
/* Premium Real Estate Website - Shared Styles */

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

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PREMIUM NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.92);
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.navbar .nav-menu a {
    color: #ffffff;
    text-shadow: none;
}
.navbar .nav-menu a:hover {
    color: #C5A059;
}

/* Add top padding to pages so content doesn't go under fixed navbar */
body > nav + * {
    padding-top: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    padding: 8px 25px 8px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 50px;
}

.logo-text {
    margin-left: 12px;
}

.logo-text-main {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.logo-text-main span {
    color: #C5A059;
}

.logo-text-sub {
    font-size: 10px;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.nav-menu a:hover {
    color: #C5A059;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

/* ===== ANIMATION WRAPPER ===== */
.hero-animation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== GSAP CONTROLLED TEXT ANIMATIONS ===== */
/* Animations are handled by GSAP JavaScript - no CSS animations needed */
.anim-text {
    /* Initial render state - GSAP sets opacity, position, and blur */
}

.premium-tag {
    color: white;
    font-size: 2rem; /* Reverted to the previous font size */
    font-weight: bold;
}

.hero-title {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.hero-title span {
    color: #C5A059;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== PREMIUM CHAT BUTTON ===== */
.chat-btn {
    background: transparent;
    color: white;
    border: 2px solid #C5A059;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.chat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #C5A059;
    transition: left 0.4s;
    z-index: -1;
}

.chat-btn:hover::before {
    left: 0;
}

.chat-btn:hover {
    border-color: #C5A059;
    color: #1a1a1a;
}

.chat-btn i {
    margin-right: 10px;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 20px;
    animation: bounce 2s infinite;
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #C5A059;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #C5A059;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.about-text h3 span {
    color: #C5A059;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 24px;
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    background: #C5A059;
    color: white;
    transform: scale(1.1);
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.feature-text p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #C5A059;
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.experience-badge .number {
    font-size: 42px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: #f8f8f8;
    padding: 60px;
    border-radius: 20px;
    margin-top: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #C5A059;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(197, 160, 89, 0.9), transparent);
    color: white;
    padding: 20px;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-container {
    margin: 50px 0 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
    background: white;
}

.contact-card i {
    font-size: 32px;
    color: #C5A059;
    margin-bottom: 15px;
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid rgba(197, 160, 89, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
    border-color: #C5A059;
}

.testimonial-rating {
    color: #C5A059;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C5A059;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.testimonial-author span {
    color: #C5A059;
    font-size: 13px;
    display: block;
    margin-bottom: 3px;
}

.testimonial-date {
    color: #999;
    font-size: 12px;
}

.testimonial-link {
    text-align: center;
    margin-top: 40px;
}

.testimonial-link a {
    color: #C5A059;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid #C5A059;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.testimonial-link a:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 0 20px 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C5A059, #ffd700, #C5A059);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

/* Newsletter */
.footer-newsletter h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #C5A059;
}

.footer-newsletter p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #333;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #C5A059;
}

.newsletter-form button {
    padding: 14px 25px;
    background: #C5A059;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 14px;
}

.newsletter-form button:hover {
    background: #d4b06a;
    transform: translateY(-2px);
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
    border: 1px solid #333;
}

.social-icon:hover {
    background: #C5A059;
    color: white;
    transform: translateY(-5px);
    border-color: #C5A059;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #C5A059;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #C5A059;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 15px;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: #C5A059;
    transform: translateX(5px);
}

/* Contact Info */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #aaa;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact li i {
    color: #C5A059;
    width: 20px;
    font-size: 16px;
    margin-top: 3px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0 0 0;
    border-top: 1px solid #333;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* ===== FLOATING CHAT BUTTON ===== */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #C5A059;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
    z-index: 1000;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.floating-chat:hover {
    transform: scale(1.1);
    background: transparent;
    border-color: #C5A059;
    color: #C5A059;
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid,
    .gallery-grid,
    .map-contact-info,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar { 
        padding: 20px; 
    }
    .nav-menu { 
        display: none; 
    }
    .hero-title { 
        font-size: 40px; 
    }
    .about-content { 
        grid-template-columns: 1fr; 
    }
    .experience-badge { 
        bottom: 0; 
        right: 0; 
        padding: 20px;
    }
    .experience-badge .number {
        font-size: 30px;
    }
    .about-section { 
        padding: 60px 20px; 
    }
    .logo-container {
        padding: 5px 15px 5px 10px;
    }
    .logo-text-main { 
        font-size: 16px; 
    }
    .logo-text-sub { 
        font-size: 8px; 
    }
}

@media (max-width: 576px) {
    .footer-grid,
    .testimonials-grid,
    .gallery-grid,
    .stats-grid,
    .map-contact-info {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
    }
    .hero-title {
        font-size: 32px;
    }
    .anim-line-2,
    .anim-line-3 {
        animation-delay: 0.8s, 1.4s;
    }
    .anim-line-4 {
        animation-delay: 1.9s;
    }
    .anim-line-5 {
        animation-delay: 2.5s;
    }
    .section-title {
        font-size: 32px;
    }
}

/* Hero video fix - consolidated above */

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35); /* lighter overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* ============================================
   FULL MOBILE & TABLET OPTIMIZATION
   ============================================ */

/* ── Hamburger Menu ────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

/* ── Tablet (max 992px) ─────────────────────── */
@media (max-width: 992px) {
    .container { padding: 0 20px; }

    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 16px; }

    .properties-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

    .about-content { gap: 30px; }
    .section-title { font-size: 36px; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

    .contact-grid, .map-contact-info { grid-template-columns: 1fr; }
    .form-map-container { grid-template-columns: 1fr; }
}

/* ── Mobile (max 768px) ─────────────────────── */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        padding: 12px 20px;
    }
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        z-index: 9998;
        font-size: 18px;
    }
    .nav-menu.open { display: flex !important; }
    .nav-menu a { font-size: 20px; color: #ffffff !important; letter-spacing: 2px; }
    .nav-menu a:hover { color: #C5A059 !important; }

    /* Hero */
    .hero { height: 80vh; }
    .hero-title { font-size: 32px; line-height: 1.2; }
    .hero-subtitle { font-size: 14px; padding: 0 15px; }
    .hero-content { padding: 0 20px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 10px; }
    .hero-buttons a { width: 200px; text-align: center; }

    /* Sections */
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 14px; }
    section { padding: 50px 20px; }

    /* About */
    .about-content { grid-template-columns: 1fr; }
    .about-image { height: 300px; }
    .about-text { padding: 0; }
    .about-features { grid-template-columns: 1fr 1fr; gap: 15px; }
    .experience-badge { position: relative; bottom: auto; right: auto; margin-top: 15px; }

    /* Properties */
    .properties-grid { grid-template-columns: 1fr; gap: 20px; }
    .property-card { max-width: 100%; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-number { font-size: 36px; }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
    .testimonial-link { flex-direction: column; align-items: center; }

    /* Contact page */
    .contact-info-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .contact-info-card { padding: 20px 15px; }
    .form-map-container { flex-direction: column; }
    .form-column, .map-column { width: 100%; }
    .map-container-small iframe { height: 250px; }
    .team-members { flex-direction: column; gap: 15px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 25px; text-align: center; }
    .footer-links { justify-content: center; }
    .footer-bottom-content { flex-direction: column; gap: 10px; text-align: center; }
    .newsletter-form { flex-direction: column; gap: 10px; }
    .newsletter-form input, .newsletter-form button { width: 100%; border-radius: 5px; }

    /* Property detail */
    .property-detail-grid { grid-template-columns: 1fr; }
    .property-gallery { grid-template-columns: repeat(2, 1fr); }
    .property-meta-grid { grid-template-columns: repeat(2, 1fr); }

    /* Floating buttons */
    .floating-chat { bottom: 15px; right: 15px; }
}

/* ── Small Mobile (max 480px) ────────────────── */
@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .hero { height: 70vh; }

    .section-title { font-size: 24px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 28px; }

    .gallery-grid { grid-template-columns: 1fr; }

    .contact-info-grid { grid-template-columns: 1fr; }

    .about-features { grid-template-columns: 1fr; }

    .property-gallery { grid-template-columns: 1fr; }
    .property-meta-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .logo-img { width: 35px; height: 35px; }
    .logo-text-main { font-size: 14px; }
    .logo-text-sub { font-size: 7px; }
}
