/* 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);
}

/* 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;
}

.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 */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .main-image {
        height: 300px;
    }
    
    .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;
    }
    
    .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;
}