﻿:root {
    /* Pine Green Colors */
    --primary-color: #01796f;
    --secondary-color: #2e8b57;
    --accent-color: #66cdaa;
    --bg-primary: #ffffff;
    --bg-secondary: #f0f9f7;
    --text-primary: #064e3b;
    --text-secondary: #047857;
    --border-color: #d1fae5;
    --shadow-color: rgba(1, 121, 111, 0.12);
}

[data-theme="dark"] {
    /* Pure Dark Mode */
    --primary-color: #6b7280;
    --secondary-color: #4b5563;
    --accent-color: #60a5fa;
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --text-primary: #f0f6fc;
    --text-secondary: #8b949e;
    --border-color: #30363d;
    --shadow-color: rgba(0, 0, 0, 0.4);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8rem 0 5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

    .page-header::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 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center center;
        background-size: cover;
        opacity: 0.3;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .hero-stat:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.25);
    }

.hero-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-stat-label {
    font-size: 1.1rem;
    color: white;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Categories */
.feature-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px var(--shadow-color);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--accent-color), transparent);
    border-radius: 10px;
    padding: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    border: 1px solid var(--accent-color);
}

/* Villa Details Section */
.villa-details {
    background: var(--bg-primary);
    padding: 5rem 0;
}

.detail-box {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

    .detail-box:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
    }

.detail-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.detail-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Safety Section */
.safety-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 0;
    color: white;
    position: relative;
}

    .safety-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 70%, rgba(102, 205, 170, 0.2) 0%, transparent 50%);
        z-index: 1;
    }

    .safety-section .container {
        position: relative;
        z-index: 2;
    }

.safety-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

    .safety-badge i {
        font-size: 2rem;
        color: #ffd700;
    }

/* Call to Action */
.cta-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
    text-align: center;
}

.cta-box {
    background: var(--bg-primary);
    border-radius: 30px;
    padding: 4rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    margin: 0.5rem;
}

    .btn-cta:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px var(--shadow-color);
    }

.btn-outline-cta {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .btn-outline-cta:hover {
        background: var(--primary-color);
        color: white;
    }

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stat {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .detail-number {
        font-size: 3rem;
    }

    .cta-box {
        padding: 2.5rem;
        margin: 0 1rem;
    }
}
