:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c59;
    --tertiary-color: #6b9080;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --text-muted: #888;
    --bg-light: #f7f8f7;
    --bg-card: #ffffff;
    --border-light: #e8ede8;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), #e55a2b);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-brand i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.cta-nav {
    color: var(--primary-color);
}

.nav-menu .cta-nav {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.nav-menu .cta-nav:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 80px;
    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="roads" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 10 L 20 10 M 10 0 L 10 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23roads)"/></svg>');
    opacity: 0.4;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .accent {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Visual */
.concept-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-mockup {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
}

.screen {
    background: white;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    padding: 20px;
    color: var(--text-dark);
}

.app-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.app-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.booking-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.booking-card h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.booking-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.rating {
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Concept Section */
.concept-section {
    background: var(--bg-light);
}

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

.concept-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.icon-wrapper.primary {
    background: var(--gradient-primary);
}

.icon-wrapper.secondary {
    background: var(--gradient-accent);
}

.icon-wrapper.tertiary {
    background: linear-gradient(135deg, var(--tertiary-color), var(--secondary-color));
}

.concept-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.concept-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.concept-card ul {
    list-style: none;
    text-align: left;
}

.concept-card li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.concept-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Market Section */
.market-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.market-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.market-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.market-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.market-stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.market-stat p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.market-insights h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.market-insights ul {
    list-style: none;
}

.market-insights li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.market-insights li:last-child {
    border-bottom: none;
}

.market-insights strong {
    color: var(--primary-color);
}

/* Market Visual */
.chart-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.chart-container h4 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.growth-chart {
    display: flex;
    align-items: end;
    gap: 2rem;
    height: 200px;
    justify-content: space-around;
}

.chart-bar {
    background: var(--gradient-primary);
    width: 60px;
    border-radius: 4px 4px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 600;
}

.bar-value {
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.bar-year {
    position: absolute;
    bottom: -30px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.competitive-advantage {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.competitive-advantage h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

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

/* Platform Section */
.platform-section {
    background: var(--bg-light);
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: white;
    border: 2px solid var(--border-light);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    background: var(--gradient-primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.dashboard-preview,
.mobile-preview,
.community-preview {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 280px;
}

.dashboard-header,
.mobile-header,
.community-header {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.dashboard-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

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

.dash-number {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.mobile-screen {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
}

.booking-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: white;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.booking-image {
    font-size: 2rem;
    width: 40px;
    text-align: center;
}

.booking-details {
    display: flex;
    flex-direction: column;
}

.booking-details span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.booking-details span:last-child {
    font-size: 0.8rem;
    color: var(--text-light);
}

.community-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.community-avatar {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.community-content {
    display: flex;
    flex-direction: column;
}

.community-content span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.community-content span:last-child {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Opportunity Section */
.opportunity-section {
    background: var(--bg-light);
}

.opportunity-header {
    text-align: center;
    margin-bottom: 3rem;
}

.opportunity-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.opportunity-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    position: relative;
}

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

.opportunity-card.featured {
    border: 2px solid var(--accent-color);
}

.opportunity-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.opportunity-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.funding-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.opportunity-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.funding-use {
    list-style: none;
    text-align: left;
}

.funding-use li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.funding-use li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Founder Section */
.founder-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.founder-info {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    flex-shrink: 0;
}

.founder-details h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-bio {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.founder-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.founder-credentials span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.founder-credentials i {
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    background: var(--gradient-primary);
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.investment-highlights h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.investment-highlights ul {
    list-style: none;
}

.investment-highlights li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.investment-highlights li:last-child {
    border-bottom: none;
}

.investment-highlights li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.investment-highlights strong {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-brand i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-text {
    text-align: right;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .concept-grid {
        grid-template-columns: 1fr;
    }
    
    .market-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .founder-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
}