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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: white;
    color: #0a0a0a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-full {
    width: 100%;
}

/* Colors */
.text-green { color: #3b9600; }
.text-green-dark { color: #1e4d00; }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.logo {
    height: 48px;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

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

.nav-desktop a {
    text-decoration: none;
    color: #525252;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #3b9600;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #0a0a0a;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #0a0a0a;
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 40px;
    background: white;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    text-decoration: none;
    color: #525252;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Hero Section */
.hero-section {
    padding-top: 128px;
    padding-bottom: 48px;
}

.hero-content {
    text-align: center;
    margin-bottom: 48px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e0;
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffc20e;
}

.badge span {
    color: #1e4d00;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 96px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2.4px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 20px;
    color: #525252;
    max-width: 672px;
    margin: 0 auto 32px;
    animation: fadeInUp 1s ease-out;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.btn {
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: #ffc20e;
    color: #1b2b36;
}

.btn-primary:hover {
    background: #e6ad0c;
    transform: scale(1.05);
}

.btn-secondary {
    background: #fffbef;
    color: #1b2b36;
    border: 1px solid #ffc20e;
}

.btn-secondary:hover {
    background: #fff4d6;
    transform: scale(1.05);
}

.btn-yellow {
    background: #ffc20e;
    color: #1b2b36;
}

.hero-image-wrapper {
    position: relative;
    animation: scaleIn 1s ease-out;
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.price-card {
    position: absolute;
    left: -24px;
    top: 290px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
    animation: slideInLeft 1.2s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.price-label {
    font-size: 14px;
    color: #737373;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 30px;
    font-weight: 400;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 16px;
    color: #525252;
}

/* Generations Section */
.generations-section {
    padding: 80px 0;
}

.generations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.section-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.title-underline {
    width: 96px;
    height: 4px;
    background: #3b9600;
    animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 96px; }
}

.content-text {
    margin: 32px 0;
}

.content-text p {
    font-size: 18px;
    color: #525252;
    line-height: 1.6;
    margin-bottom: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.stat-number {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #525252;
}

.generations-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Transparency Section */
.transparency-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, white, #e8f5e0);
}

.section-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-title-center {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-subtitle {
    font-size: 20px;
    color: #525252;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: #e8f5e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #525252;
}

/* Discover Section */
.discover-section {
    padding: 80px 0;
}

.properties-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding: 0 40px 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.properties-scroll::-webkit-scrollbar {
    display: none;
}

.property-card {
    flex-shrink: 0;
    width: 405px;
    height: 507px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.property-card:hover img {
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.property-content {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    color: white;
}

.property-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price-label-small {
    font-size: 14px;
    margin-bottom: 4px;
}

.price-large {
    font-size: 30px;
    font-weight: 400;
}

.property-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.cta-center {
    text-align: center;
    margin-top: 48px;
}

/* Agents Section */
.agents-section {
    padding: 80px 0;
    background: #f9fafb;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.agent-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.agent-card:hover {
    transform: translateY(-10px);
}

.agent-card img {
    width: 100%;
    height: 384px;
    object-fit: cover;
    transition: transform 0.6s;
}

.agent-card:hover img {
    transform: scale(1.05);
}

.agent-info {
    padding: 24px;
}

.featured-badge {
    display: inline-block;
    background: #ffc20e;
    color: #1b2b36;
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.agent-info h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.agent-info p {
    color: #525252;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #1e4d00;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-col h3 {
    color: white;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #16a34a;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title { font-size: 60px; }
    .section-title, .section-title-center { font-size: 48px; }
    .generations-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .agents-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-desktop { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-section { padding-top: 96px; }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 16px; }
    .hero-image img { height: 400px; }
    .price-card { left: 20px; top: 200px; }
    .section-title, .section-title-center { font-size: 36px; }
    .cta-buttons { flex-direction: column; }
    .generations-images { grid-template-columns: 1fr; }
    .image-card img { height: 300px; }
    .features-grid { grid-template-columns: 1fr; }
    .properties-scroll { padding: 0 20px; }
    .property-card { width: 280px; height: 380px; }
    .agents-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 36px; }
}
