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

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #000;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #f5f5f5;
    z-index: 1000;
    border-bottom: 1px solid #000;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #666;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.gallery-hall {
    text-align: center;
    position: relative;
    z-index: 2;
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card-spotlight {
    position: absolute;
    width: 200px;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.card-spotlight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 15%;
    background: linear-gradient(45deg, #c0c0c0, #e5e5e5);
    animation-delay: 2s;
}

.card-3 {
    top: 40%;
    left: 70%;
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 40px;
}

.glass-btn {
    background: #000;
    border: 2px solid #000;
    padding: 15px 30px;
    border-radius: 50px;
    color: #f5f5f5;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glass-btn:hover {
    background: #f5f5f5;
    color: #000;
    transform: translateY(-2px);
}

.glass-btn.large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

/* Stats Spotlight */
.stats-spotlight {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 80px 50px;
    background: #f5f5f5;
}

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

.stat-item::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Gallery */
.product-gallery {
    padding: 100px 50px;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #000;
}

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

.product-card {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    background: #000;
    color: #f5f5f5;
}

.card-image {
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 180px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.lifestyle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: inherit;
}

.product-card p {
    color: inherit;
    margin-bottom: 20px;
}

.card-benefits {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-benefits span {
    background: #000;
    color: #f5f5f5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.product-card:hover .card-benefits span {
    background: #f5f5f5;
    color: #000;
}

/* 360° Finance Explorer */
.finance-explorer {
    padding: 100px 50px;
    background: #f5f5f5;
    text-align: center;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    perspective: 1000px;
}

.carousel-card {
    transition: all 0.5s ease;
    opacity: 0.6;
    transform: scale(0.8) rotateY(20deg);
}

.carousel-card.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.card-3d {
    width: 200px;
    height: 120px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.card-3d.gold {
    background: linear-gradient(45deg, #d4af37, #ffd700);
}

.card-3d.silver {
    background: linear-gradient(45deg, #c0c0c0, #e5e5e5);
}

.card-3d.blue {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6);
}

.carousel-controls {
    margin-top: 30px;
}

.carousel-controls button {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-controls button:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Comparison Wall */
.comparison-wall {
    padding: 100px 50px;
    background: #f5f5f5;
}

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

.comparison-card {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.comparison-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #f5f5f5;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.comparison-card h3 {
    margin: 20px 0;
    font-size: 1.3rem;
}

.comparison-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.comparison-stats div {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    color: #000;
}

/* Curator's Picks */
.curators-picks {
    padding: 100px 50px;
    background: #f5f5f5;
}

.editorial-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 50px;
}

.lifestyle-image {
    height: 300px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.editorial-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.editorial-content p {
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
}

.apply-btn {
    background: #000;
    color: #f5f5f5;
    border: 2px solid #000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #f5f5f5;
    color: #000;
    transform: translateY(-2px);
}

/* Closing Section */
.closing-section {
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.spotlight-card {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

.premium-card-glow {
    width: 250px;
    height: 150px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    border-radius: 15px;
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 100px rgba(212, 175, 55, 0.5); }
    to { box-shadow: 0 0 150px rgba(212, 175, 55, 0.8); }
}

.closing-content {
    position: relative;
    z-index: 2;
    margin-top: 200px;
}

.closing-content h2 {
    font-size: 2.5rem;
    color: #f5f5f5;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: #f5f5f5;
    padding: 50px 20px 20px;
    border-top: 2px solid #000;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #000;
}

.footer-section p {
    color: #000;
    margin-bottom: 8px;
}

.footer-section a {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #666;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #000;
    color: #000;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-links .active {
    color: #d4af37;
    font-weight: 600;
}

/* New Page Styles */
.page-hero {
    padding: 120px 20px 80px;
    background: #f5f5f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #000;
}

.page-hero p {
    font-size: 1.2rem;
    color: #000;
}

/* Explore Page */
.explore-categories {
    padding: 80px 20px;
    background: #f5f5f5;
}

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

.category-card {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.category-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.category-stats span {
    background: #000;
    color: #f5f5f5;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.featured-products {
    padding: 80px 20px;
    background: #f5f5f5;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.product-item {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.explore-btn {
    background: #000;
    color: #f5f5f5;
    border: 2px solid #000;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
}

/* Compare Page */
.comparison-tool {
    padding: 80px 20px;
    background: #f5f5f5;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: #000;
    color: #f5f5f5;
}

.feature-column, .product-column {
    padding: 20px;
    text-align: center;
}

.product-column img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e5e5;
}

.feature-name {
    padding: 15px 20px;
    background: #f5f5f5;
    font-weight: 600;
    color: #000;
}

.feature-value {
    padding: 15px 20px;
    text-align: center;
}

.comparison-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 20px 0;
}

.comparison-actions .apply-btn {
    margin: 0 20px;
}

.loan-comparison {
    padding: 80px 20px;
    background: #f5f5f5;
}

.loan-comparison h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

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

.loan-card {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
}

.loan-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.loan-details {
    margin: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.label {
    color: #666;
}

.value {
    font-weight: 600;
    color: #000;
}

.compare-btn {
    background: transparent;
    border: 2px solid #000;
    color: #000;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compare-btn:hover {
    background: #000;
    color: #f5f5f5;
}

/* Apply Page */
.application-form {
    padding: 80px 20px;
    background: #f5f5f5;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    margin-bottom: 10px;
}

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

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

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 1rem;
    background: #f5f5f5;
    color: #000;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #666;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label a {
    color: #d4af37;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    background: #000;
    color: #f5f5f5;
    border: 2px solid #000;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #f5f5f5;
    color: #000;
}

.application-benefits {
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
}

.benefits-grid {
    display: grid;
    gap: 25px;
    margin-top: 25px;
}

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

.benefit-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.contact-section {
    padding: 80px 20px;
    background: #000;
    color: #f5f5f5;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-item a {
    color: #f5f5f5;
    text-decoration: none;
}

/* Legal Pages */
.legal-page {
    padding: 120px 20px 80px;
    background: #f5f5f5;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f5f5f5;
    border: 2px solid #000;
    border-radius: 20px;
    padding: 50px;
}

.legal-container h1 {
    margin-bottom: 10px;
    color: #000;
}

.last-updated {
    color: #000;
    margin-bottom: 30px;
    font-style: italic;
}

.legal-content h2 {
    margin: 30px 0 15px;
    color: #000;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #000;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f5f5f5;
    border: 2px solid #000;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 15px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-spotlight {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-track {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}