/* Premium Minimalistic Design System */
:root {
    /* Brand Colors */
    --primary: #1F4D3A; /* Deep Forest Green */
    --secondary-bg: #F8F6F0; /* Warm Ivory / Soft Cream */
    --accent: #C8A96A; /* Muted Gold */
    --text-primary: #2B2B2B; /* Charcoal Black */
    --text-secondary: #5A5A5A;
    --neutral-gray: #D9D6CF; /* Soft Stone Gray */
    --white: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(43, 43, 43, 0.04);
    --shadow-md: 0 8px 24px rgba(43, 43, 43, 0.08);
    --shadow-lg: 0 16px 40px rgba(43, 43, 43, 0.12);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-secondary {
    background-color: var(--secondary-bg);
}

.bg-primary {
    background-color: var(--primary);
}

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

.text-white {
    color: var(--white);
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

.mt-4 {
    margin-top: 24px;
}

h1, h2, h3, h4 {
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.bg-primary h2, .bg-primary p {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #173b2c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-bg);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--neutral-gray);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--secondary-bg);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 0 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img-new {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--primary);
    font-family: var(--font-main);
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
}

/* Update Hero for Typography and Video */
.video-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.video-hero .container {
    position: relative;
    z-index: 2;
}

.video-hero .hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    color: var(--white);
}

.video-hero .hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: var(--white);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.highlight-piece {
    color: #4AA2E2;
    font-style: italic;
    font-weight: 800;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-ctas.justify-center {
    justify-content: center;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 1000px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.hero-video-wrapper video {
    width: 100%;
    display: block;
}

/* Video inside Offerings Card */
.property-video {
    position: relative;
    height: 250px;
    background: #000;
}

.property-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(to right, var(--white) 50%, var(--secondary-bg) 50%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.subheadline {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.supporting-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-micro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-micro span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.trust-micro i {
    color: var(--accent);
}

.hero-visual {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.opportunity-card-floating {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 320px;
    border: 1px solid var(--secondary-bg);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary-bg);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid var(--neutral-gray);
    border-bottom: 1px solid var(--neutral-gray);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stat .value {
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-bar {
    height: 6px;
    background: var(--secondary-bg);
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Trust Strip */
.trust-strip {
    padding: 30px 0;
    border-bottom: 1px solid var(--secondary-bg);
}

.trust-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

.trust-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Common Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Problem Solution */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--white);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.comparison-card:active {
    transform: scale(0.98);
}

.comparison-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-gray);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.traditional {
    background: var(--white);
    border: 1px solid var(--neutral-gray);
}

.traditional i {
    color: #e74c3c;
    margin-top: 4px;
}

.aamar-land {
    background: var(--primary);
    color: var(--white);
}

.aamar-land h3, .aamar-land li {
    color: var(--white);
}

.aamar-land h3 {
    border-color: rgba(255,255,255,0.2);
}

.aamar-land i {
    color: var(--accent);
    margin-top: 4px;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(31, 77, 58, 0.2); /* primary color with 20% opacity */
    margin-bottom: 20px;
    line-height: 1;
}

.step-card h3 {
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-secondary);
}

/* Opportunities */
.opportunities .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.view-all {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--secondary-bg);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.property-card:active {
    transform: scale(0.98);
}

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

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

.status-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.property-content {
    padding: 30px;
}

.location {
    color: var(--text-secondary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--secondary-bg);
    border-bottom: 1px solid var(--secondary-bg);
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-row span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Calculator */
.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calc-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.calc-input {
    margin-bottom: 24px;
}

.calc-input label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.currency {
    position: absolute;
    left: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

input[type="number"], select {
    width: 100%;
    padding: 16px;
    padding-left: 36px;
    border: 1px solid var(--neutral-gray);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-family: var(--font-main);
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

select {
    padding-left: 16px;
    cursor: pointer;
}

input[type="number"]:focus, select:focus {
    border-color: var(--primary);
}

.calc-result {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed var(--neutral-gray);
}

.calc-result h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 8px 0;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.icon-circle {
    width: 80px;
    height: 80px;
    background: var(--secondary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.benefit-item:hover .icon-circle {
    background: var(--primary);
    color: var(--white);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.quote {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info strong {
    display: block;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Founder */
.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-md);
}

.founder-image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.quote-text {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.founder-name {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--secondary-bg);
}

.founder-name strong {
    display: block;
    font-size: 1.2rem;
}

.founder-name span {
    color: var(--text-secondary);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(rgba(31, 77, 58, 0.95), rgba(31, 77, 58, 0.95)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1200&q=80') center/cover;
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

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

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

.final-cta .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.final-cta .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* Footer */
.footer {
    background: #111111;
    color: var(--white);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 24px;
}

.footer-brand p {
    color: #999;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--neutral-gray);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--neutral-gray);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.trust-badges .badge {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container, .founder-card {
        grid-template-columns: 1fr;
    }
    
    .hero {
        background: var(--secondary-bg);
        padding-top: 120px;
    }
    
    .opportunity-card-floating {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        margin-top: -40px;
        z-index: 10;
    }
    
    .comparison-grid, .calculator-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    
    .steps-grid, .properties-grid, .benefits-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
