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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1b;
    background: #ffffff;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 78, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 78, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(215, 210, 205, 0.02) 0%, transparent 50%);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Glassmorphism utility classes */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-orange {
    background: rgba(255, 78, 0, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 78, 0, 0.25);
    box-shadow: 0 8px 32px rgba(255, 78, 0, 0.2);
}

/* Image Rotation Tool Styles */
.image-edit-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
}

.gallery-edit-btn {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 78, 0, 0.1);
    border-radius: 12px;
    border: 2px dashed rgba(255, 78, 0, 0.3);
}

.gallery-edit-mode-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
    transition: all 0.3s ease;
}

.gallery-edit-mode-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.6);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.edit-mode-btn {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(255, 78, 0, 0.4);
    transition: all 0.3s ease;
}

.edit-mode-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 78, 0, 0.5);
}

.edit-mode-btn i {
    font-size: 16px;
}

/* Rotation Controls */
.rotation-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
}

.image-edit-mode .rotation-controls {
    display: flex;
}

.rotation-buttons {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
}

.rotate-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotate-btn:hover {
    background: rgba(255, 78, 0, 0.8);
    border-color: #ff4e00;
    transform: scale(1.1);
}

.rotate-btn.reset-btn {
    background: rgba(220, 53, 69, 0.8);
    border-color: #dc3545;
}

.rotate-btn.reset-btn:hover {
    background: rgba(220, 53, 69, 1);
}

.rotation-info {
    text-align: center;
    margin-top: 4px;
}

.current-rotation {
    color: white;
    font-size: 10px;
    font-weight: 600;
    background: rgba(255, 78, 0, 0.8);
    padding: 2px 6px;
    border-radius: 8px;
    display: inline-block;
    min-width: 40px;
}

/* Image Edit Mode Overlay */
.image-edit-mode .gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 78, 0, 0.1);
    border: 2px dashed rgba(255, 78, 0, 0.5);
    border-radius: 8px;
    pointer-events: none;
}

.image-edit-mode .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 78, 0, 0.1);
    border: 2px dashed rgba(255, 78, 0, 0.5);
    border-radius: 8px;
    pointer-events: none;
}

/* Image containers must be relative */
.gallery-item {
    position: relative;
}

.hero-image {
    position: relative;
}

/* Ensure images can be transformed */
.gallery-image,
.main-image {
    transform-origin: center center;
    will-change: transform;
}

/* Notification */
.rotation-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10001;
    animation: slideInRight 0.3s ease;
}

.rotation-notification.success {
    background: rgba(40, 167, 69, 0.9);
}

.rotation-notification i {
    font-size: 16px;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Simple Rotator Styles */
.rotation-mode .gallery-item::before,
.rotation-mode .hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 167, 69, 0.1);
    border: 2px dashed rgba(40, 167, 69, 0.5);
    border-radius: 8px;
    pointer-events: none;
    z-index: 1;
}

.simple-controls button:hover {
    background: rgba(40, 167, 69, 0.8) !important;
    transform: scale(1.1);
}

.gallery-image, .main-image {
    transform-origin: center center;
    will-change: transform;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-edit-btn {
        top: 10px;
        right: 10px;
    }
    
    .edit-mode-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .rotation-controls {
        top: 5px;
        right: 5px;
        padding: 6px;
    }
    
    .rotate-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
    
    .rotation-notification {
        top: 60px;
        right: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 78, 0, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 10px rgba(255, 78, 0, 0.3));
}

.logo:hover {
    filter: drop-shadow(0 0 30px rgba(255, 78, 0, 0.6));
    transform: scale(1.05);
}

.cta-button {
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.25), rgba(255, 78, 0, 0.15));
    color: #ff4e00;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 78, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 78, 0, 0.1) 50%, 
        rgba(255, 255, 255, 0.85) 100%), 
        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="80" r="1" fill="%23ff4e00" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 78, 0, 0.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1d1d1b, #333333, #ff4e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(255, 78, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 78, 0, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(255, 78, 0, 0.6)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #444444;
    margin-bottom: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 78, 0, 0.6);
}

.hero-image {
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero carousel specific styles */
.hero-image .carousel-wrapper {
    height: 450px;
    max-width: 500px;
    width: 100%;
}

.hero-image .carousel-container {
    max-width: 500px;
    width: 100%;
    margin: 0;
}

.hero-image {
    max-width: 500px;
    width: 100%;
    justify-self: end;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 78, 0, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 78, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.1), transparent, rgba(215, 210, 205, 0.05));
    border-radius: 24px;
    pointer-events: none;
}

.main-image:hover {
    transform: scale(1.02) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 78, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #1d1d1b, #ff4e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
    border-radius: 2px;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 78, 0, 0.02));
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 78, 0, 0.6), transparent);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 78, 0, 0.05);
    border-color: rgba(255, 78, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 78, 0, 0.15);
}

.feature-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 78, 0, 0.4));
}

.feature-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1d1d1b;
    font-family: 'Poppins', sans-serif;
}

.feature-card p {
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(255, 78, 0, 0.02), 
        rgba(248, 250, 252, 0.95), 
        rgba(215, 210, 205, 0.03));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.1), rgba(215, 210, 205, 0.1));
    border: 2px dashed rgba(255, 78, 0, 0.3);
    transition: all 0.4s ease;
}

.placeholder-icon {
    font-size: 3rem;
    color: rgba(255, 78, 0, 0.4);
    transition: all 0.4s ease;
    margin-bottom: 1rem;
}

.placeholder-text {
    color: rgba(255, 78, 0, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 78, 0, 0.9));
    backdrop-filter: blur(10px);
    color: white;
    padding: 2.5rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
    border-top: 1px solid rgba(255, 78, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 78, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 78, 0, 0.25);
}

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

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.2), rgba(215, 210, 205, 0.2));
    border-color: rgba(255, 78, 0, 0.6);
}

.gallery-item:hover .placeholder-icon {
    color: rgba(255, 78, 0, 0.7);
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff4e00;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Poppins', sans-serif;
}

/* Details Section */
.details {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 78, 0, 0.02));
}

.details-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.details-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.details-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #1d1d1b, #ff4e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.info-grid {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 3px solid #ff4e00;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 78, 0, 0.1);
    transform: translateX(10px);
}

.info-item strong {
    color: #1d1d1b;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.info-item span {
    color: #666666;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.price-card {
    background: linear-gradient(135deg, 
        rgba(255, 78, 0, 0.18), 
        rgba(255, 78, 0, 0.08));
    backdrop-filter: blur(20px);
    color: white;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 78, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 78, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ff4e00;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.price {
    font-size: 1.9rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 78, 0, 0.5);
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
    word-break: break-word;
}

.price-note {
    opacity: 0.8;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    font-family: 'Poppins', sans-serif;
}

.price-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.4);
    font-family: 'Poppins', sans-serif;
}

.price-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 78, 0, 0.5);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95), 
        rgba(255, 78, 0, 0.03), 
        rgba(215, 210, 205, 0.02));
    text-align: center;
    position: relative;
}

.contact .section-title {
    background: linear-gradient(135deg, #1d1d1b, #ff4e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 4rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.whatsapp-button, .phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-button {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.8), rgba(37, 211, 102, 0.6));
    color: white;
    border: 1px solid rgba(37, 211, 102, 0.5);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
}

.phone-button {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 78, 0, 0.6);
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.25);
}

.phone-button:hover {
    background: rgba(255, 78, 0, 0.15);
    border-color: #ff4e00;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 78, 0, 0.5);
}

.contact-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666666;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.contact-info i {
    color: #ff4e00;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(20px);
    color: #666666;
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 78, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design */
/* Force horizontal layout on larger screens */
@media (min-width: 769px) {
    .hero {
        display: grid !important;
        grid-template-columns: 1fr 500px !important;
        align-items: center !important;
        gap: 2rem;
        min-height: 70vh !important;
        max-width: 1200px;
        margin: 0 auto;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-content {
        order: 1 !important;
        text-align: left !important;
        justify-self: start !important;
    }
    
    .hero-image {
        order: 2 !important;
        padding: 0 !important;
        justify-self: end !important;
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .hero {
        gap: 2rem;
        padding: 4rem 0;
    }
    
    .hero-image .carousel-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr !important;
        display: grid !important;
        text-align: center;
        padding: 4rem 0;
        min-height: auto;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        order: 2;
        padding: 0 1rem;
    }
    
    .hero-image {
        order: 1;
        padding: 0 1rem;
        display: block !important;
        min-height: 300px;
        max-width: 100% !important;
        width: 100% !important;
        justify-self: stretch !important;
    }
    
    .hero-image .carousel-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .hero-image .carousel-wrapper {
        height: 300px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto;
    }
    
    .hero-image .carousel-slide {
        height: 300px !important;
    }
    
    .hero-image .carousel-image {
        height: 300px !important;
        width: 100% !important;
        object-fit: cover;
        object-position: center;
    }
    
    .main-image {
        height: 300px;
        object-fit: cover;
        object-position: center;
        display: block;
        width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .details-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .details-info {
        padding: 2rem;
    }
    
    .price-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content, .hero-image {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .main-image {
        height: 250px;
        object-fit: cover;
        object-position: center;
        display: block;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image .carousel-wrapper {
        height: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .whatsapp-button, .phone-button {
        width: 100%;
        justify-content: center;
    }
    
    .contact-buttons {
        gap: 1rem;
    }
}

/* Advanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 78, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 78, 0, 0.8)); }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Placeholder for missing images with dark theme */
img {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 78, 0, 0.1));
    background-image: 
        linear-gradient(45deg, rgba(255, 78, 0, 0.1) 25%, transparent 25%), 
        linear-gradient(-45deg, rgba(255, 78, 0, 0.1) 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, rgba(255, 78, 0, 0.1) 75%), 
        linear-gradient(-45deg, transparent 75%, rgba(255, 78, 0, 0.1) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Amenities Section */
.amenities {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95), 
        rgba(255, 78, 0, 0.02), 
        rgba(215, 210, 205, 0.03));
}

.amenities-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.amenity-category {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.amenity-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4e00, transparent);
}

.amenity-category:hover {
    transform: translateY(-10px);
    background: rgba(255, 78, 0, 0.05);
    border-color: rgba(255, 78, 0, 0.3);
    box-shadow: 0 20px 60px rgba(255, 78, 0, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-header i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 78, 0, 0.4));
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1b;
    font-family: 'Poppins', sans-serif;
}

.amenity-list {
    list-style: none;
    padding: 0;
}

.amenity-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 78, 0, 0.1);
    color: #555;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.amenity-list li:last-child {
    border-bottom: none;
}

.amenity-list li:hover {
    color: #ff4e00;
    transform: translateX(10px);
}

.amenity-list li strong {
    color: #1d1d1b;
    font-weight: 600;
}

.area-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 78, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 78, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 78, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff4e00;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for Amenities */
@media (max-width: 768px) {
    .amenities {
        padding: 4rem 0;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amenity-category {
        padding: 2rem;
        margin: 0 10px;
    }
    
    .category-header i {
        font-size: 2rem;
    }
    
    .category-header h3 {
        font-size: 1.3rem;
    }
    
    .area-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .amenities {
        padding: 3rem 0;
    }
    
    .amenity-category {
        margin: 0 5px;
        padding: 1.5rem;
    }
    
    .category-header {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .category-header i {
        font-size: 1.8rem;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .amenity-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .area-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Modern Mortgage Calculator Section */
.modern-calculator {
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #ffffff 50%, 
        #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.modern-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 78, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 78, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.calc-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.calc-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b, #ff8f56);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.calc-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.calc-widget {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.calc-inputs {
    margin-bottom: 3rem;
}

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

.input-field {
    position: relative;
}

.input-field label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: #ff4e00;
    box-shadow: 0 0 0 4px rgba(255, 78, 0, 0.1);
}

.currency-symbol {
    padding: 0 1rem;
    font-weight: 700;
    color: #ff4e00;
    font-size: 1.2rem;
    background: rgba(255, 78, 0, 0.1);
}

.price-input {
    flex: 1;
    padding: 1.2rem 1rem;
    border: none;
    outline: none;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

.currency-label {
    padding: 0 1rem;
    color: #64748b;
    font-weight: 600;
    background: rgba(100, 116, 139, 0.1);
}

.slider-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid #e2e8f0;
}

.modern-slider {
    width: 100%;
    height: 12px;
    border-radius: 8px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin-bottom: 1rem;
    position: relative;
}

.modern-slider::-webkit-slider-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    background: #e2e8f0;
    border-radius: 8px;
}

.modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 78, 0, 0.4);
    border: 4px solid white;
    margin-top: -8px;
}

.modern-slider::-moz-range-track {
    width: 100%;
    height: 12px;
    cursor: pointer;
    background: #e2e8f0;
    border-radius: 8px;
    border: none;
}

.modern-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    cursor: pointer;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(255, 78, 0, 0.4);
}

.modern-slider:focus {
    outline: none;
}

.modern-slider:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(255, 78, 0, 0.2), 0 4px 12px rgba(255, 78, 0, 0.4);
}

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

.slider-display span:first-child {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.slider-display span:last-child {
    color: #64748b;
    font-weight: 600;
    font-size: 1rem;
}

.modern-select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-select:focus {
    outline: none;
    border-color: #ff4e00;
    box-shadow: 0 0 0 4px rgba(255, 78, 0, 0.1);
}

.calc-button-section {
    margin-top: 2rem;
    text-align: center;
}

.calc-button {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.calc-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 78, 0, 0.4);
}

.calc-button:active {
    transform: translateY(-1px) scale(0.98);
}

.calc-icon {
    font-size: 1.5rem;
}

.calc-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-main {
    text-align: center;
}

.monthly-payment-card {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    border-radius: 24px;
    padding: 2.5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(255, 78, 0, 0.2);
}

.payment-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.payment-info {
    text-align: left;
}

.payment-label {
    display: block;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.payment-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.payment-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.result-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
}

.detail-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.detail-info {
    flex: 1;
}

.detail-label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.detail-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

.comparison-section {
    margin-top: 2rem;
}

.comparison-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.comparison-card.best {
    border-color: #ff4e00;
    box-shadow: 0 8px 25px rgba(255, 78, 0, 0.15);
}

.comparison-name {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.comparison-payment {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

.cta-section {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.05), rgba(255, 78, 0, 0.02));
    border-radius: 20px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

.modern-cta-btn {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 78, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 78, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Modern Calculator Responsive Design */
@media (max-width: 768px) {
    .modern-calculator {
        padding: 4rem 0;
    }

    .calc-title {
        font-size: 2.2rem;
    }

    .calc-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .calc-widget {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .input-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .monthly-payment-card {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    .payment-icon {
        font-size: 2.5rem;
    }

    .payment-info {
        text-align: center;
    }

    .payment-amount {
        font-size: 2.8rem;
    }

    .result-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-card {
        padding: 1.5rem;
    }

    .comparison-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-content {
        gap: 1rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .modern-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .calc-title {
        font-size: 1.8rem;
    }

    .calc-widget {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }

    .payment-amount {
        font-size: 2.2rem;
    }

    .detail-value {
        font-size: 1.2rem;
    }

    .comparison-cards {
        grid-template-columns: 1fr;
    }
}

/* Simple Calculator Styles */
.simple-calc {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.simple-calc h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff4e00;
    margin-bottom: 3rem;
    font-family: 'Poppins', sans-serif;
}

.calc-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid rgba(255, 78, 0, 0.1);
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #ff4e00;
    box-shadow: 0 0 0 3px rgba(255, 78, 0, 0.1);
}

.input-group input[type="range"] {
    height: 8px;
    background: #e2e8f0;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #ff4e00;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(255, 78, 0, 0.3);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #ff4e00;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 10px rgba(255, 78, 0, 0.3);
}

#engancheDisplay {
    display: inline-block;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.calc-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(255, 78, 0, 0.3);
}

.calc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 78, 0, 0.4);
}

.result-box {
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.05), rgba(255, 78, 0, 0.02));
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 78, 0, 0.1);
    margin-top: 2rem;
}

.result-box h3 {
    font-size: 1.8rem;
    color: #ff4e00;
    margin-bottom: 1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.result-box p {
    font-size: 1.2rem;
    color: #333;
    margin: 0.5rem 0;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.result-box span {
    color: #ff4e00;
    font-weight: 700;
}

@media (max-width: 768px) {
    .simple-calc h2 {
        font-size: 2rem;
    }
    
    .calc-box {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
    
    .result-box h3 {
        font-size: 1.5rem;
    }
    
    .result-box p {
        font-size: 1rem;
    }
}

/* Property Comparison Section */
.property-comparison {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.property-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 78, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 4rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 4rem;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.1), rgba(255, 78, 0, 0.05));
    border-bottom: 2px solid rgba(255, 78, 0, 0.2);
}

.property-column {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.header-column {
    background: rgba(255, 78, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
}

.our-property {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    position: relative;
}

.property-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.our-property h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.our-property .price {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.competitor h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.competitor .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff4e00;
    margin-bottom: 0.3rem;
    font-family: 'Poppins', sans-serif;
}

.competitor small {
    color: #64748b;
    font-size: 0.8rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: background-color 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 78, 0, 0.02);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    padding: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    background: rgba(248, 250, 252, 0.8);
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.our-value, .competitor-value {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.our-value {
    background: rgba(255, 78, 0, 0.05);
    color: #1e293b;
    font-size: 1rem;
}

.our-value.best {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    font-weight: 700;
}

.our-value.champion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 193, 7, 0.1));
    color: #d97706;
    font-weight: 800;
    font-size: 1.1rem;
}

.competitor-value {
    color: #64748b;
    font-size: 0.95rem;
}

.total-row {
    background: linear-gradient(135deg, rgba(255, 78, 0, 0.08), rgba(255, 78, 0, 0.04));
    border-top: 2px solid rgba(255, 78, 0, 0.2);
    font-weight: 700;
}

.total-row .feature-name {
    background: rgba(255, 78, 0, 0.1);
    color: #d97706;
    font-size: 1.1rem;
}

.comparison-summary {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.summary-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.best-choice {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.02));
    border-color: rgba(34, 197, 94, 0.2);
}

.summary-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.summary-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.summary-card p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

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

.benefits-list li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-family: 'Poppins', sans-serif;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.comparison-cta {
    display: block;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.comparison-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 78, 0, 0.4);
    color: white;
    text-decoration: none;
}

.market-insights h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.insights-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.insight-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 78, 0, 0.1);
    transition: transform 0.3s ease;
}

.insight-item:hover {
    transform: translateY(-2px);
}

.insight-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ff4e00;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.insight-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Responsive Design for Comparison */
@media (max-width: 1024px) {
    .table-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .property-column,
    .feature-name,
    .our-value,
    .competitor-value {
        min-width: 100%;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }

    .comparison-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .property-comparison {
        padding: 4rem 0;
    }

    .comparison-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .comparison-table {
        margin: 0 1rem 3rem 1rem;
        border-radius: 16px;
    }

    .summary-card {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .summary-card h3 {
        font-size: 1.5rem;
    }

    .summary-card p {
        font-size: 1rem;
    }

    .benefits-list li {
        font-size: 0.9rem;
    }

    .comparison-cta {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
}

.calculator-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.calculator-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1d1d1b;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 78, 0, 0.2);
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-group input[type="number"]:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff4e00;
    box-shadow: 0 0 20px rgba(255, 78, 0, 0.2);
}

.form-group input[type="range"] {
    width: 100%;
    margin: 1rem 0;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(90deg, #ff4e00, #ff6b2b);
    outline: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ff4e00;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 78, 0, 0.3);
}

.form-group input[type="range"]::-moz-range-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ff4e00;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 78, 0, 0.3);
}

.currency {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff4e00;
    font-weight: 600;
}

.percentage-display {
    display: inline-block;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 1rem;
    font-family: 'Poppins', sans-serif;
}

.amount-display {
    margin-top: 0.5rem;
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

.calculate-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 78, 0, 0.4);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.main-result {
    background: linear-gradient(135deg, 
        rgba(255, 78, 0, 0.1), 
        rgba(255, 78, 0, 0.05));
    border-color: rgba(255, 78, 0, 0.3);
}

.main-result h3 {
    font-size: 1.5rem;
    color: #1d1d1b;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.monthly-payment {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.payment-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}

.result-details {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 78, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #1d1d1b;
    font-weight: 600;
}

.payment-comparison {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 78, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.payment-comparison h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1d1d1b;
    font-family: 'Poppins', sans-serif;
}

.comparison-grid {
    display: grid;
    gap: 1rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 78, 0, 0.05);
    border-radius: 10px;
    border-left: 3px solid #ff4e00;
    font-family: 'Poppins', sans-serif;
}

.comparison-name {
    font-weight: 600;
    color: #1d1d1b;
}

.comparison-payment {
    color: #ff4e00;
    font-weight: 700;
}

.calculator-cta {
    background: linear-gradient(135deg, 
        rgba(255, 78, 0, 0.1), 
        rgba(255, 78, 0, 0.05));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 78, 0, 0.2);
}

.calculator-cta p {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.calculator-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 30px rgba(255, 78, 0, 0.3);
}

.calculator-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 78, 0, 0.4);
}

/* Mobile Responsive for Calculator */
@media (max-width: 768px) {
    .mortgage-calculator {
        padding: 4rem 0;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .calculator-form {
        padding: 2rem;
    }
    
    .monthly-payment {
        font-size: 2.5rem;
    }
    
    .form-group input[type="number"],
    .form-group select {
        padding: 0.8rem 1rem;
    }
    
    .calculate-btn {
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mortgage-calculator {
        padding: 3rem 0;
    }
    
    .calculator-form {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .result-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .monthly-payment {
        font-size: 2rem;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comparison-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff4e00, #ff6b2b, #ff4e00);
    transform-origin: left;
    z-index: 9999;
}/* Properties Section */
.properties-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

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

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 78, 0, 0.1);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px 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.3s ease;
}

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

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.property-badge.sale {
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
}

.property-badge.rent {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.property-content {
    padding: 30px;
}

.property-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d1d1b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.property-location {
    color: #666;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-location i {
    color: #ff4e00;
}

.property-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.property-features i {
    color: #ff4e00;
    font-size: 0.9rem;
}

.property-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.property-price {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ff4e00;
}

.property-size {
    color: #666;
    font-weight: 600;
}

.property-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff4e00, #ff6b2b);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 78, 0, 0.3);
    width: 100%;
}

.property-button:hover {
    background: linear-gradient(135deg, #e03d00, #ff4e00);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 78, 0, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .property-card {
        margin: 0 10px;
    }
    
    .property-features {
        gap: 15px;
    }
    
    .property-details {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .property-price {
        font-size: 1.4rem;
    }
}

/* Image Placeholders */
.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border-radius: 24px;
    border: 1px solid rgba(255, 78, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.hero-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #ff4e00;
    opacity: 0.7;
}

.hero-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
}

/* Hero Image Styles */
.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 78, 0, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    border-radius: 15px;
}

.gallery-image-placeholder i {
    font-size: 3rem;
    color: #ff4e00;
    opacity: 0.7;
}

.gallery-placeholder .gallery-overlay {
    background: rgba(0, 0, 0, 0.6);
}

/* Modern Carousel Styles */
.carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.carousel-slide:hover .carousel-image {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    color: #ff4e00;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    animation: blinkArrow 0.8s infinite;
}

@keyframes blinkArrow {
    0% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        background: rgba(255, 78, 0, 0.95);
        color: white;
        box-shadow: 0 15px 40px rgba(255, 78, 0, 0.8);
    }
    50% {
        opacity: 0.1;
        transform: translateY(-50%) scale(0.8);
        background: rgba(255, 255, 255, 0.9);
        color: #ff4e00;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        background: rgba(255, 78, 0, 0.95);
        color: white;
        box-shadow: 0 15px 40px rgba(255, 78, 0, 0.8);
    }
}

.carousel-arrow:hover {
    background: rgba(255, 78, 0, 0.95);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 78, 0, 0.4);
    animation: none;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Dots Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 78, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot.active {
    background: #ff4e00;
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(255, 78, 0, 0.2);
}

.carousel-dot:hover {
    background: #ff4e00;
    transform: scale(1.1);
}

/* Price Badge Styles */
.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff4e00 0%, #ff6b2e 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(255, 78, 0, 0.3);
    z-index: 20;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.price-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 78, 0, 0.4);
}

.price-amount {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.price-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive - Optimized for better photo display */
@media (max-width: 768px) {
    .carousel-wrapper {
        height: 350px;
        border-radius: 16px;
        margin: 0 5px;
    }
    
    .carousel-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        border-radius: 16px;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #ff4e00;
    }
    
    .price-badge {
        top: 15px;
        right: 15px;
        padding: 10px 14px;
        border-radius: 12px;
    }
    
    .price-amount {
        font-size: 16px;
    }
    
    .price-label {
        font-size: 11px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .image-caption {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 10px;
        backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.8);
        text-align: center;
    }
    
    .carousel-dots {
        padding: 20px 15px;
        gap: 10px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid #ff4e00;
    }
    
    .carousel-dot.active {
        background: #ff4e00;
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(255, 78, 0, 0.8);
    }
    
    .gallery .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .carousel-wrapper {
        height: 280px;
        border-radius: 12px;
        margin: 0 10px;
    }
    
    .carousel-image {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        border-radius: 12px;
    }
    
    .carousel-arrow {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.85);
        border: 2px solid #ff4e00;
        backdrop-filter: blur(15px);
    }
    
    .carousel-prev {
        left: 12px;
    }
    
    .carousel-next {
        right: 12px;
    }
    
    .image-caption {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
        backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.85);
        text-align: center;
    }
    
    .carousel-dots {
        padding: 15px 10px;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 9px;
        height: 9px;
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid #ff4e00;
    }
    
    .carousel-dot.active {
        background: #ff4e00;
        transform: scale(1.4);
        box-shadow: 0 0 12px rgba(255, 78, 0, 0.9);
    }
    
    .gallery .container {
        padding: 0 5px;
    }
}

/* Touch and swipe enhancement */
.carousel-wrapper {
    touch-action: pan-y;
    user-select: none;
}

/* Smooth transitions for better UX */
.carousel-slide {
    will-change: opacity;
}

.carousel-image {
    will-change: transform;
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
    .carousel-wrapper {
        height: 250px;
        margin: 0 5px;
    }
    
    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .carousel-prev {
        left: 8px;
    }
    
    .carousel-next {
        right: 8px;
    }
    
    .image-caption {
        bottom: 8px;
        left: 8px;
        right: 8px;
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Ensure images load properly on all devices */
.carousel-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Improve touch responsiveness */
.carousel-arrow {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    touch-action: manipulation;
}

.carousel-dot {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: 280px;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.whatsapp-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 0.8rem;
        max-width: 220px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float i {
        font-size: 1.1rem;
    }
}

/* Carousel Buttons for Property Pages - SUPER VISIBLE */
.carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 78, 0, 0.95) !important;
    border: 3px solid white !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.8rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    visibility: visible !important;
    backdrop-filter: blur(5px) !important;
    animation: pulseArrow 2s infinite !important;
}

@keyframes pulseArrow {
    0% {
        box-shadow: 0 6px 20px rgba(255, 78, 0, 0.5);
        background: rgba(255, 78, 0, 0.95);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 78, 0, 0.8);
        background: rgba(255, 78, 0, 1);
        transform: translateY(-50%) scale(1.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(255, 78, 0, 0.5);
        background: rgba(255, 78, 0, 0.95);
    }
}

.carousel-btn:hover {
    background: rgba(255, 78, 0, 1) !important;
    transform: translateY(-50%) scale(1.2) !important;
    box-shadow: 0 8px 25px rgba(255, 78, 0, 0.8) !important;
    animation: none !important;
}

.carousel-btn.prev {
    left: 20px !important;
}

.carousel-btn.next {
    right: 20px !important;
}

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

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

.carousel-dot.active {
    background: #ff4e00;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 78, 0, 0.8);
}

/* Mobile adjustments for carousel buttons */
@media (max-width: 768px) {
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .carousel-btn.prev {
        left: 15px;
    }
    
    .carousel-btn.next {
        right: 15px;
    }
    
    .carousel-dots {
        bottom: 15px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .carousel-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Force cache refresh Sat Sep 20 22:40:03 MST 2025 */
/* Force update Sat Sep 20 23:27:42 MST 2025 */
/* Cache buster 1758436392 */
/* Carousel added Sept 22 2025 */
/* BLINKING ARROWS SUPER VISIBLE - Sept 22 2025 - v2.1 */
/* Mobile optimizations - Sept 22 2025 - v2.2 */
/* WhatsApp floating button deployed - Sept 22 2025 - v2.3 */
/* CAROUSEL BUTTONS FIX - Sept 25 2025 - v2.4 */
/* SUPER VISIBLE ARROWS WITH !IMPORTANT - Sept 25 2025 - v2.5 */

/* Carousel Buttons for Culiacan Index Page - SUPER VISIBLE */
.carousel-btn-index {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 78, 0, 0.95) !important;
    border: 2px solid white !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    opacity: 1 !important;
    visibility: visible !important;
    backdrop-filter: blur(3px) !important;
}

.carousel-btn-index:hover {
    background: rgba(255, 78, 0, 1) !important;
    transform: translateY(-50%) scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(255, 78, 0, 0.6) !important;
}

.prev-btn-index {
    left: 10px !important;
}

.next-btn-index {
    right: 10px !important;
}

/* Mobile adjustments for index carousel buttons */
@media (max-width: 768px) {
    .carousel-btn-index {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    
    .prev-btn-index {
        left: 8px !important;
    }
    
    .next-btn-index {
        right: 8px !important;
    }
}

@media (max-width: 480px) {
    .carousel-btn-index {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.9rem !important;
    }
    
    .prev-btn-index {
        left: 5px !important;
    }
    
    .next-btn-index {
        right: 5px !important;
    }
}

/* CULIACAN INDEX CAROUSEL FIX - Sept 25 2025 - v2.6 */

/* REAL CAROUSEL CLASSES USED IN CULIACAN PAGE - FORCE VISIBLE */
.carousel-prev, .carousel-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 78, 0, 0.95) !important;
    border: 3px solid white !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    visibility: visible !important;
    backdrop-filter: blur(5px) !important;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255, 78, 0, 1) !important;
    transform: translateY(-50%) scale(1.2) !important;
    box-shadow: 0 8px 25px rgba(255, 78, 0, 0.8) !important;
}

.carousel-prev {
    left: 15px !important;
}

.carousel-next {
    right: 15px !important;
}

/* FORCE VISIBLE ARROWS - FINAL FIX - Sept 25 2025 - v2.7 */
