/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.preloader-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.preloader-content span {
    color: #d4af37;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    animation: loadingDots 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

.loading-dots span:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes loadingDots {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

/* About Us Page Styles */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero-content h1 span {
    color: #d4af37;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

.story-text h2 {
    color: white;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card, .vision-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card:hover .card-icon, .vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.mission-card:hover .card-icon i, .vision-card:hover .card-icon i {
    transform: scale(1.1);
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.5rem;
    color: #d4af37;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    margin: 0 auto;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-info {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.team-designation {
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social .social-link {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.team-social .social-link:hover {
    background: #d4af37;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-link.active {
    color: #d4af37 !important;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.section-dark .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 60px;
    width: auto;
    transition: 0.3s;
}

.navbar.scrolled .nav-logo {
    height: 55px;
}

.navbar.scrolled .nav-logo.white-logo {
    filter: brightness(0) invert(1);
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
}

.nav-brand span {
    color: #d4af37;
}

.navbar.scrolled .nav-brand h2 {
    color: #1a1a2e;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 2rem;
}

.nav-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.nav-close:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

.nav-link {
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-link {
    color: white;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a2e;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a2e;
    margin: 3px 0;
    transition: 0.3s;
}

.navbar.scrolled .hamburger span {
    background: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(26, 26, 46, 0.4) 100%);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.8);
    border-color: #d4af37;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a2e;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: #1a1a2e;
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-modal {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-booking {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-booking:hover {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.3);
}

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

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-image-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-images {
    position: relative;
    height: 100%;
}

.property-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.property-slide.active {
    opacity: 1;
}

.property-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 14px;
}

.property-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.property-slider-btn.prev {
    left: 10px;
}

.property-slider-btn.next {
    right: 10px;
}

.property-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.property-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

.property-image {
    height: 250px;
    overflow: hidden;
}

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

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.property-info p {
    color: #666;
    margin-bottom: 0.5rem;
}

.property-info .description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

/* Tulip Projects Hero Section - Half Screen */
.tulip-projects-page .hero {
    height: 70vh;
    min-height: 600px;
}

.tulip-projects-page .hero .slider-container {
    height: 70vh;
    min-height: 600px;
}

.tulip-projects-page .hero .slide {
    height: 70vh;
    min-height: 600px;
}

.tulip-projects-page .hero .hero-content {
    padding: 3rem 0;
}

.tulip-projects-page .hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.tulip-projects-page .hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Tulip Projects Section */
#tulip-projects {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.property-info .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1rem;
}

.btn-details {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-details:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a2e;
}

.btn-schedule {
    background: linear-gradient(135deg, #25d366 0%, #20b954 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    width: 100%;
}

.btn-schedule:hover {
    background: linear-gradient(135deg, #20b954 0%, #198754 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Sell Section */
.sell-section-bg {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('herosection/dreamproperty.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
}

.sell-section-bg .section-title {
    color: white;
}

.sell-section-bg .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.sell-text-slider {
    text-align: center;
}

.sell-title-container {
    height: 60px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.sell-title {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
    display: none;
}

.sell-title.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.sell-subtitle-container {
    height: 80px;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
}

.sell-subtitle {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
    font-size: 1.1rem;
    line-height: 1.4;
    display: none;
}

.sell-subtitle.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

/* List Your Property Section */
.list-property-bg {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.8)), url('herosection/dreamproperty.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 60px 0;
}

.list-property-bg .section-title {
    color: white;
}

.list-property-bg .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.list-property-text-slider {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.list-property-title-container {
    height: 60px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-property-title {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
    text-align: center;
    pointer-events: none;
    z-index: 10;
    visibility: hidden;
}

.list-property-text-slider .list-property-title.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 20;
    visibility: visible;
}

.list-property-text-slider .list-property-subtitle.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 20;
    visibility: visible;
}

.list-property-subtitle-container {
    height: 80px;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-property-subtitle {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease-in-out;
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: center;
    pointer-events: none;
    z-index: 10;
    visibility: hidden;
}

.list-property-text-slider .list-property-subtitle.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 20;
    visibility: visible;
}

/* Sell Section */
.sell-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sell-text {
    text-align: left;
}

.sell-image {
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sell-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.sell-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sell-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sell-text {
        text-align: center;
    }
    
    .sell-image img {
        max-height: 300px;
    }
}
.sell-cta {
    text-align: center;
}

.btn-premium {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a2e;
    border: none;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Deal Grid */
.deal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* We Deal With Section Styles */
#we-deal {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#we-deal .section-title {
    margin-bottom: 1rem;
    color: #1a1a2e;
}

#we-deal .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#we-deal .deal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid #e9ecef;
}

#we-deal .deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

#we-deal .deal-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 3px solid #e9ecef;
}

#we-deal .deal-image {
    width: 100%;
    height: 200px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

#we-deal .deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#we-deal .deal-card:hover .deal-image img {
    transform: scale(1.1);
}

#we-deal .deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
}

#we-deal .badge-text {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}

#we-deal .deal-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#we-deal .deal-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#we-deal .deal-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

#we-deal .deal-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

#we-deal .feature-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #555;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #28a745;
    transition: all 0.3s ease;
}

#we-deal .feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

#we-deal .feature-item i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 0.85rem;
    min-width: 16px;
}

#we-deal .feature-item span {
    font-weight: 500;
}

#we-deal .deal-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

#we-deal .stat-item {
    text-align: center;
    flex: 1;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

#we-deal .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.2rem;
}

#we-deal .stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#we-deal .btn-details {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
}

#we-deal .btn-details:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

#we-deal .btn-details i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .deal-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .deal-badge {
        position: static;
        margin-bottom: 1rem;
    }
    
    .deal-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .deal-features {
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    #we-deal {
        padding: 40px 0;
    }
    
    .deal-content {
        padding: 1.5rem;
    }
    
    .deal-content h3 {
        font-size: 1.2rem;
    }
    
    .deal-description {
        font-size: 0.9rem;
    }
    
    .btn-details {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.deal-image {
    height: 120px;
    overflow: hidden;
}

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

.deal-card:hover .deal-image img {
    transform: scale(1.1);
}

.deal-card h3 {
    padding: 0.8rem;
    font-size: 0.9rem;
    color: #1a1a2e;
    font-weight: 600;
}

/* Reduce We Deal With section size */
#we-deal {
    padding: 40px 0;
}

#we-deal .section-title {
    margin-bottom: 2rem;
}

/* Agents Grid */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;        /* ← NEW: Cards ko horizontal center */
    align-items: center;          /* ← NEW: Cards ko vertical center */
    max-width: 800px;          /* ← NEW: Grid width limit */
    margin: 0 auto;            /* ← NEW: Entire grid ko center */
}
.agent-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    justify-content: center;
    max-width: 350px;
    margin: 0 auto;
    padding: 2rem ;
}


.agent-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0.8rem;
    border: 3px solid #d4af37;
}

.agent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: black ;
}

.agent-designation {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.agent-contact {
    margin-bottom: 1.5rem;
}

.agent-contact a {
    display: block;
    color: #1a1a2e;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.agent-contact a:hover {
    color: #d4af37;
}

.btn-call {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a2e;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Founder Section */
.founder-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.founder-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #d4af37;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.founder-title {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.founder-bio {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.founder-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    color: #1a1a2e;
    transform: translateY(-3px);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (max-width: 480px) {
    .contact-info {
        gap: 1rem;
    }
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .contact-card {
        padding: 1.5rem;
    }
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card i {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.whatsapp-card {
    background: rgba(37, 211, 102, 0.15);
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-card i {
    color: #25d366;
    font-size: 3rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-alternative {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.form-alternative p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.whatsapp-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.whatsapp-form-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.map-placeholder i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-brand span {
    color: #d4af37;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-links ul {
    list-style: none;
}

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

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

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

/* Footer Social Media Styles */
.footer-social h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #d4af37;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Contact Form Social Media Styles */
.social-contact {
    margin: 1.5rem 0;
    text-align: center;
}

.social-contact p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-links-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link-form {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid #e9ecef;
}

.social-link-form:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
    border-color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #d4af37;
}

.modal h2 {
    margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.modal .form-group {
    margin-bottom: 1.5rem;
}

.modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.modal input,
.modal select,
.modal textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 0;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Responsive Design */

/* Large Tablets and Small Laptops (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .property-grid,
    .deal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 40px;
        white-space: nowrap;
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-call-button {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
    
    .nav-call-button .cta-button {
        background: #d4af37;
        color: #1a1a2e;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .nav-call-button .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
    }
    
    .section {
        padding: 80px 0;
    }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .property-grid,
    .deal-grid,
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .property-card {
        margin-bottom: 1rem;
    }
    
    .modal-content {
        width: 90%;
        margin: 5% auto;
        padding: 2rem;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 38px;
        white-space: nowrap;
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-call-button {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
    
    .nav-call-button .cta-button {
        background: #d4af37;
        color: #1a1a2e;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .nav-call-button .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
    }
}

/* Large Mobile (320px - 480px) */
@media (min-width: 320px) and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .property-grid,
    .deal-grid,
    .agents-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links-form {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 44px;
        white-space: nowrap;
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-call-button {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
    
    .nav-call-button .cta-button {
        background: #d4af37;
        color: #1a1a2e;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        width: 200px;
    }
    
    .nav-call-button .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
    }
    
    .property-card {
        margin-bottom: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px auto;
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px !important;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Extra Small Mobile (up to 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 0.8rem;
        min-height: 36px;
        white-space: nowrap;
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-call-button {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
    
    .nav-call-button .cta-button {
        background: #d4af37;
        color: #1a1a2e;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        width: 180px;
    }
    
    .nav-call-button .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
    }
    
    .property-card h3 {
        font-size: 1.1rem;
    }
    
    .property-card .price {
        font-size: 1rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .social-link-form {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Large Desktops and Laptops (1025px and up) */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }
    
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .deal-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .agents-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra Large Desktops (1441px and up) */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .property-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .deal-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .agents-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .section {
        padding: 120px 0;
    }
    
    .nav-call-button {
        display: none;
    }
    
    .desktop-only {
        display: inline-block;
    }
}

/* Desktop styles (1025px and up) */
@media (min-width: 1025px) {
    .nav-call-button {
        display: none;
    }
    
    .desktop-only {
        display: inline-block;
    }
}

/* Landscape orientations for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .property-grid,
    .deal-grid,
    .agents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .property-image-slider img,
    .hero-slide img,
    .agent-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .property-card:hover,
    .deal-card:hover,
    .agent-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .cta-button:hover {
        transform: none;
    }
    
    .social-link:hover,
    .social-link-form:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .btn-primary,
    .btn-secondary,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .social-link,
    .social-link-form {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Print styles */
@media print {
    .hamburger,
    .whatsapp-float,
    .property-slider-btn,
    .btn-details,
    .social-contact {
        display: none !important;
    }
    
    .hero,
    .contact {
        page-break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Existing mobile responsive styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-close {
        display: block;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        color: white;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .property-grid,
    .deal-grid,
    .agents-grid {
        grid-template-columns: 1fr;
    }
    
    .navbar.scrolled .nav-brand h2 {
    color: white;
}
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card i {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1rem;
    }
    
    .whatsapp-card {
        grid-column: span 2;
    }
    
    /* Enhanced mobile form styles */
    .contact-form button,
    .btn-primary,
    .btn-secondary,
    .cta-button {
        min-height: 48px;
        font-size: 1rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        white-space: nowrap;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .desktop-only {
        display: none;
    }
    
    .nav-call-button {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
    
    .nav-call-button .cta-button {
        background: #d4af37;
        color: #1a1a2e;
        border: none;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        width: 200px;
    }
    
    .nav-call-button .cta-button:hover {
        background: #b8941f;
        transform: translateY(-2px);
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        transform: scale(1.02);
    }
    
    /* Prevent zoom on input focus */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px !important;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-image {
        flex: 0 0 auto;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-card i {
        font-size: 1.8rem;
    }
    
    .whatsapp-card {
        grid-column: span 1;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    .whatsapp-btn,
    .whatsapp-form-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .form-alternative {
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }
}
