/* CSS Variables for Brand Colors */
:root {
    --accent-green: #C3BE2C;
    --accent-green-light: #D4CF3D;
    --accent-green-dark: #A8A324;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #F8F5ED 0%, #E8F5E8 100%);
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.pattern-house,
.pattern-tree,
.pattern-bike {
    position: absolute;
    font-size: 2rem;
    color: var(--accent-green);
    animation: float 6s ease-in-out infinite;
}

.pattern-house:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.pattern-house:nth-child(2) { top: 20%; right: 15%; animation-delay: 2s; }
.pattern-tree:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
.pattern-tree:nth-child(4) { top: 60%; right: 10%; animation-delay: 1s; }
.pattern-bike:nth-child(5) { bottom: 20%; right: 30%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Main Container */
.container {
    display: flex;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    gap: 3rem;
}

/* Left Section - Content */
.content-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    max-width: 600px;
    padding: 2rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    animation: pulse 2s ease-in-out infinite;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: -0.02em;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Typography */
.main-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-primary {
    color: #333;
}

.text-accent {
    color: var(--accent-green);
}

.subheading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.features-list i {
    color: var(--accent-green);
    font-size: 0.9rem;
}

/* Areas Section */
.areas-section {
    margin-bottom: 2.5rem;
}

.areas-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.area-item {
    background: rgba(195, 190, 44, 0.1);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-size: 0.9rem;
    border: 2px solid rgba(195, 190, 44, 0.2);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgba(195, 190, 44, 0.2);
    transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    background: var(--accent-green);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(195, 190, 44, 0.3);
}

.cta-button:hover {
    background: var(--accent-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(195, 190, 44, 0.4);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Footer Note */
.footer-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Right Section - Phone Mockup */
.phone-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.phone-image {
    width: 100%;
    height: auto;
    max-width: 450px;
    border-radius: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-green);
    margin: 0;
}

.footer-description {
    color: #CCC;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(195, 190, 44, 0.1);
    color: var(--accent-green);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(195, 190, 44, 0.2);
}

.social-link:hover {
    background: var(--accent-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(195, 190, 44, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.9rem;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }
    
    .phone-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .phone-image {
        max-width: 320px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .content-wrapper {
        padding: 1rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .subheading {
        font-size: 1.2rem;
    }
    
    .phone-image {
        max-width: 280px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #95C11F;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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