/* CSS Variables for White and Yellow Theme */
:root {
    --primary-color: #FFD700; /* Yellow */
    --primary-dark: #FFC000; /* Darker Yellow */
    --secondary-color: #FFFFFF; /* White */
    --accent-color: #FFA500; /* Orange Yellow */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --nav-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding-top: var(--nav-height);
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-link {
    display:flex;
    align-items:center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
}

.logo span {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-tagline {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.4;
}

.opportunity-highlight {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.sub-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    text-align: center;
}

.readiness-info {
    margin-bottom: 2rem;
}

.platform-readiness {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 30px;
    display: inline-block;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    height: 400px;
    min-width: 280px;
    width: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    /* Use local banner image as default hero background */
    background-image: url('../assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), transparent);
    z-index: 1;
}

/* If any script injects an <img> inside .hero-image prefer the CSS background (hide injected img) */
/* Hide injected images only if they conflict with CSS background */
.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-content {
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .logo-img {
        height: 40px;
    }
    
    .main-tagline {
        font-size: 1.2rem;
    }
    
    .sub-text {
        font-size: 1.1rem;
    }
    
    .platform-readiness {
        font-size: 1rem;
    }
    
    .opportunity-highlight {
        padding: 1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        min-width: auto;
        height: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-bottom: 2rem;
        flex: none;
    }
}

/* General Section Styles */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.bg-light {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

/* Business Model Section */
.business-model {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.model-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.model-card:hover {
    transform: translateY(-10px);
}

.model-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.model-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.model-card p {
    color: var(--text-light);
}

/* Investment Section */
.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.subscribe-section {
    background: linear-gradient(135deg, rgba(255,215,0,0.1) 0%, rgba(255,255,255,0.1) 100%);
}

.subscribe-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2.5rem;
    text-align: center;
}

.input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.input-group input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-right: none;
    border-radius: 50px 0 0 50px;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
}

.input-group button {
    border-radius: 0 50px 50px 0;
    border: 2px solid var(--primary-color);
    padding: 0 1.5rem;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--text-dark);
}

/* FAQ Page Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.3);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-dark);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding: 1.5rem 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* Blog Page Styles */
.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.blog-post {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin: 0 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.post-date {
    font-size: 14px;
    color: var(--text-light);
}

.post-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 15px;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-image img:hover {
    transform: scale(1.05);
}

.no-image-placeholder {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1.2rem;
}

.post-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.subscribe-section,
.recent-posts,
.categories {
    padding: 1.5rem;
    border-radius: 15px;
}

.recent-posts ul,
.categories ul {
    list-style: none;
    padding: 0;
}

.recent-posts li,
.categories li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.recent-posts li:last-child,
.categories li:last-child {
    border-bottom: none;
}

.recent-posts a,
.categories a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-posts a:hover,
.categories a:hover {
    color: var(--primary-color);
}

/* Investment Inquiry Section */
.investment-inquiry {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
}

.investment-inquiry h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.investment-inquiry p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.investment-highlights {
    margin: 1.5rem 0;
}

.highlight-item {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    padding-left: 1rem;
    position: relative;
}

.highlight-item::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.highlight-item span {
    font-weight: 500;
}

.investment-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Legal Pages Styles */
.terms-content,
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section,
.privacy-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 15px;
}

.terms-section h3,
.privacy-section h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.terms-section p,
.privacy-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Contact Page Styles */
.social-links h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
}

.social-icons a:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-section {
    margin-top: 3rem;
    text-align: center;
}

.map-placeholder {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    display: inline-block;
}

.subscribe-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    padding: 0 1rem;
}

.investment-text h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.investment-text ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.investment-text li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.investment-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.investment-image {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.investment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.investment-image img:hover {
    transform: scale(1.03);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    padding: 2rem;
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    width: 20px;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: rgba(255,255,255,0.95) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 1rem center/18px;
    color: var(--text-dark);
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-origin: content-box;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Tweak button inside contact form */
.contact-form .btn-primary {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
}

/* Make form elements more spacious on larger screens */
@media (min-width: 992px) {
    .contact-form {
        padding: 2.5rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1.1rem;
    }
}

.contact-form .btn {
    width: auto;
    margin-top: 1rem;
}

.form-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #ff9500);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 10px;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 15px;
}

.footer-section a:hover::before {
    opacity: 1;
    left: 5px;
}

.social-media {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
}

.social-icon:hover {
    color: var(--text-dark);
    transform: translateY(-5px);
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon:hover i {
    color: var(--text-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.footer-dark {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .footer-section h3::after,
    .footer-section h4::after {
        display: none;
    }
}

/* Toast Notification */
.toast-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.toast-message.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background: white;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        z-index: 1050;
        height: calc(100vh - var(--nav-height));
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 5rem;
    }
    
    .hero-content {
        margin-bottom: 3rem;
        max-width: 100%;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        transform: none;
        top: auto;
    }
    
    .about-content,
    .investment-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image,
    .investment-image {
        height: 300px;
    }
    
    .section {
        padding: 3rem 1rem;
    }

    /* Ensure content sits below fixed navbar on small screens */
    .section {
        padding-top: calc(var(--nav-height) + 1rem);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    /* Header & nav tweaks for small screens */
    .logo h2 {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .nav-menu {
        gap: 1rem;
        padding: 1.2rem 0;
    }

    .nav-link {
        font-size: 1.15rem;
        display: block;
        padding: 0.8rem 0;
        margin: 0.25rem 2rem;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(255, 215, 0, 0.3);
    }

    .hamburger {
        z-index: 1100;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .subscribe-form-container {
        padding: 1.5rem;
    }
    
    .input-group {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
    
    .input-group input {
        border: 2px solid var(--primary-color);
        border-radius: 50px;
        margin-bottom: 10px;
        padding: 12px;
    }
    
    .input-group button {
        border-radius: 50px;
        padding: 0.8rem 1.5rem;
        width: 100%;
        margin-top: 10px;
    }
    
    .subscribe-note {
        font-size: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .blog-content {
        grid-template-columns: 1fr; /* Stack blog content and sidebar on mobile */
    }
}

.sale-frame {
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(9, 9, 16, 0.06);
}

.sale-frame::before {
    display: none;
}

.sale-frame > .about-content {
    position: relative;
    z-index: 2;
}

.sale-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.sale-image {
    min-height: 260px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
}

.sale-list {
    margin: 0;
    display: block;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.sale-card {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sale-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(9,9,16,0.08);
}

.sale-card .icon {
    font-size: 1.25rem;
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(255,215,0,0.95), rgba(255,185,0,0.9));
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 0.75rem;
}

.sale-card h4 {
    margin: 0 0 0.35rem 0;
    color: var(--text-dark);
}

.sale-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.sale-final {
    margin-top: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.sale-item:hover {
    transform: none;
    box-shadow: none;
    background: none;
}

.sale-item h4 {
    color: #333;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    position: static;
    padding-left: 0;
}

.sale-item h4::before {
    content: "•";
    color: #FFD700;
    position: static;
    left: auto;
    font-size: 1.2rem;
    line-height: 1;
    margin-right: 0.5rem;
}

.sale-item p {
    color: #666;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    padding-left: 0;
}

.sale-final {
    margin-top: 1rem;
    padding: 0;
    background: none;
    border-radius: 0;
    border-left: none;
    text-align: left;
    font-size: 1rem;
    font-weight: normal;
    color: #333;
    line-height: 1.5;
    position: static;
    z-index: 2;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .sale-list {
        display: block;
    }
    
    .sale-item {
        min-width: auto;
    }

    .sale-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .sale-image {
        min-height: 180px;
        margin-top: 1rem;
    }
}

/* Extra small screens: prioritize logo image and compact nav */
@media (max-width: 480px) {
    /* Keep the title visible on small screens and increase sizes for readability */
    .logo h2 { display: block; font-size: 1.15rem; font-weight: 700; }
    .logo-img { height: 44px; }
    .nav-container { padding: 0 0.75rem; }
    .nav-menu { padding: 1rem 0; }
    .nav-link { font-size: 1.2rem; padding: 0.8rem 0; }
    /* Increase overall base font for tiny screens */
    body { font-size: 16px; }
    /* Make hero title a bit smaller but still readable on very small screens */
    .hero-content h1 { font-size: 2.2rem; }
    .hero-image { height: 180px; margin-bottom: 1.5rem; flex: none; }
}