/* CSS Variables */
:root {
    --primary-color: #2E7D32;
    --secondary-color: #F5F5DC;
    --accent-color: #FF8C00;
    --text-dark: #333;
    --text-light: #FFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
    --gradient-accent: linear-gradient(135deg, #FF8C00 0%, #FF9800 100%);
    --gradient-hero: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(76, 175, 80, 0.8) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-hero),
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo-text:hover {
    color: var(--accent-color);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    animation: heroEntrance 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.hero-title-line1 {
    display: block;
    animation: titleSlideInLeft 1.2s ease-out 0.3s both;
    position: relative;
}

.hero-title-line2 {
    display: block;
    animation: titleSlideInRight 1.2s ease-out 0.6s both;
    position: relative;
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 152, 0, 0.3);
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 4s infinite;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    animation: subtitleFloat 4s ease-in-out infinite;
    position: relative;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: underlineGlow 2s ease-in-out infinite alternate;
    border-radius: 2px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
    position: relative;
    z-index: 100;
    border: 2px solid transparent;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-strong);
    transition: var(--transition);
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Highlights Section */
.highlights {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.highlights::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e0e0e0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e0e0e0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e0e0e0" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e0e0e0" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e0e0e0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    padding: 45px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: rgba(46, 125, 50, 0.2);
}

.highlight-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    transition: var(--transition);
    position: relative;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.highlight-card:hover .highlight-icon::before {
    opacity: 0.2;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(46, 125, 50, 0.4);
}

.highlight-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.highlight-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-choose-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-choose-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    font-weight: 500;
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.contact-method i {
    font-size: 1.2rem;
    width: 20px;
}

/* Lead Form */
.lead-form {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ccc;
    font-size: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-contact i {
    width: 20px;
}

/* Social Media Section */
.social-media {
    text-align: center;
    margin: 30px 0;
    padding: 30px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.social-media h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #444;
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* Facebook Hover Effect */
.social-link[href*="facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
}

/* Instagram Hover Effect */
.social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

/* YouTube Hover Effect */
.social-link[href*="youtube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
}

.social-link span {
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #999;
}

/* Sticky Call Bar */
.sticky-call-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1b5e20 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-bottom: 3px solid var(--accent-color);
    min-height: 70px;
}

.sticky-call-bar.show {
    transform: translateY(0);
}

.sticky-call-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.sticky-call-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sticky-call-text {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.sticky-call-phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.sticky-call-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    animation: pulse 2s infinite;
}

.sticky-call-button:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    color: white;
}

.sticky-call-button i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 152, 0, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    background: #1b5e20;
    transform: translateY(-2px);
}

.back-to-top.show {
    display: flex;
}

/* Mobile Responsive for Sticky Call Bar */
@media (max-width: 767px) {
    .sticky-call-bar {
        padding: 12px 15px;
        min-height: 80px;
    }
    
    .sticky-call-content {
        flex-direction: row;
        gap: 8px;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .sticky-call-info {
        flex-direction: column;
        gap: 2px;
        flex: 1;
        min-width: 0;
    }
    
    .sticky-call-text {
        font-size: 0.8rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .sticky-call-phone {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .sticky-call-button {
        padding: 8px 16px;
        font-size: 0.9rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .sticky-call-button span {
        display: none;
    }
    
    .sticky-call-button i {
        font-size: 1.1rem;
    }
    
    .back-to-top {
        bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo-img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
        gap: 10px;
        margin-bottom: 18px;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 28px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .cta-button {
        position: static;
    }
    
    .sticky-call-content {
        flex-direction: row;
        gap: 20px;
    }
    
    .sticky-call-info {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .sticky-call-text {
        font-size: 1.1rem;
    }
    
    .sticky-call-phone {
        font-size: 1.3rem;
    }
}

@media (min-width: 1024px) {
    .logo-img {
        height: 70px;
    }
    
    .logo-text {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: inherit;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .cta-button {
        padding: 18px 36px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .container {
        padding: 0 40px;
    }
}

/* Mobile specific logo styling */
@media (max-width: 767px) {
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo {
        gap: 10px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes titleSlideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotateY(-15deg);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-20px) rotateY(-5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes titleSlideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) rotateY(15deg);
    }
    50% {
        opacity: 0.7;
        transform: translateX(20px) rotateY(5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes subtitleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes underlineGlow {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--accent-color);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 15px var(--accent-color);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.testimonials::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e0e0e0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(46, 125, 50, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: rgba(46, 125, 50, 0.2);
}

.testimonial-card:hover::before {
    opacity: 0.2;
    transform: scale(1.1);
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
}

.testimonial-author h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 1px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Property Gallery Section */
.property-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.property-gallery::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="gallery-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23e0e0e0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-pattern)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.gallery-slideshow {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.gallery-slides {
    position: relative;
    width: 100%;
    height: 600px;
}

.gallery-slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide.active {
    display: block;
    animation: slideIn 0.8s ease-in-out;
}

.gallery-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}

.gallery-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.gallery-slide:hover .gallery-image {
    transform: scale(1.02);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 50px 40px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.gallery-caption h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
}

.gallery-caption p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.gallery-prev, .gallery-next {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.gallery-prev:hover, .gallery-next:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
}

.gallery-dots {
    text-align: center;
    padding: 25px 0;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.dot {
    height: 14px;
    width: 14px;
    margin: 0 8px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active, .dot:hover {
    background-color: var(--primary-color);
    transform: scale(1.3);
    border-color: var(--accent-color);
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateX(30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.pricing-content {
    max-width: 1200px;
    margin: 0 auto;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.price-calculation {
    margin-top: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.plot-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    display: block;
}

.urgency-text {
    background: #ff4444;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    text-align: left;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #333;
    font-weight: 500;
}

.pricing-cta {
    padding: 20px 30px 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.pricing-btn {
    padding: 12px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.pricing-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.pricing-btn.primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.pricing-btn.secondary {
    background: #25D366;
    color: white;
}

.pricing-btn.secondary:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.investment-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(46, 125, 50, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: white;
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.pricing-card {
    background: white;
    padding: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-strong);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0 5px;
}

.unit {
    font-size: 1.2rem;
    color: #666;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.pricing-btn {
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.pricing-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 480px;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: white;
    margin-top: -10px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.blog-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    height: 2.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.blog-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
    height: 4.5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
}

.blog-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
    padding: 12px 20px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    text-align: center;
    display: block;
    width: 100%;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.blog-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.exit-popup.show {
    display: flex;
}

.exit-popup-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.exit-popup h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.exit-popup p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.exit-popup-form input,
.exit-popup-form textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.exit-popup-form input:focus,
.exit-popup-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.exit-popup-form textarea {
    min-height: 80px;
}

.exit-popup-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.exit-popup-form button:hover {
    background: #e67e00;
}

.exit-popup-note {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
}

/* Animated Plants Styles */
.animated-plants {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}


/* Floating Leaves */
.floating-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-leaf {
    position: absolute;
    width: 20px;
    height: 15px;
    background: linear-gradient(135deg, #1e5f1e 0%, #2d7d2d 30%, #4caf50 70%, #66bb6a 100%);
    border-radius: 0 100% 0 100%;
    animation: float 10s ease-in-out infinite;
    opacity: 0.8;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border: 1px solid rgba(46, 125, 50, 0.2);
}


.floating-leaf.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-leaf.leaf-2 {
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.floating-leaf.leaf-3 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.floating-leaf.leaf-4 {
    top: 30%;
    left: 70%;
    animation-delay: 3s;
}

.floating-leaf.leaf-5 {
    top: 70%;
    left: 85%;
    animation-delay: 4s;
}

.floating-leaf.leaf-6 {
    top: 50%;
    left: 5%;
    animation-delay: 5s;
}

.floating-leaf.leaf-7 {
    top: 25%;
    left: 50%;
    animation-delay: 6s;
}

.floating-leaf.leaf-8 {
    top: 75%;
    left: 25%;
    animation-delay: 7s;
}

/* Flying Butterfly */
.butterfly {
    position: absolute;
    top: 30%;
    left: 20%;
    width: 50px;
    height: 50px;
    animation: butterflyFly 25s ease-in-out infinite;
    z-index: 5;
}

.butterfly-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: butterflyFlutter 0.6s ease-in-out infinite alternate;
    transform-origin: center;
}



@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-15px) rotate(12deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-25px) rotate(0deg) scale(1.05);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-15px) rotate(-12deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes butterflyFly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    10% {
        transform: translate(100px, -50px) rotate(10deg);
    }
    20% {
        transform: translate(200px, 20px) rotate(-5deg);
    }
    30% {
        transform: translate(300px, -30px) rotate(15deg);
    }
    40% {
        transform: translate(400px, 40px) rotate(-10deg);
    }
    50% {
        transform: translate(500px, -20px) rotate(8deg);
    }
    60% {
        transform: translate(400px, 60px) rotate(-12deg);
    }
    70% {
        transform: translate(300px, -40px) rotate(6deg);
    }
    80% {
        transform: translate(200px, 30px) rotate(-8deg);
    }
    90% {
        transform: translate(100px, -60px) rotate(12deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes butterflyFlutter {
    0% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.05) rotate(2deg);
    }
    50% {
        transform: scale(1.1) rotate(0deg);
    }
    75% {
        transform: scale(1.05) rotate(-2deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}




/* Ensure content is above plants */
.hero,
.property-highlights,
.testimonials,
.property-gallery,
.pricing,
.contact,
.footer {
    position: relative;
    z-index: 10;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .animated-plants {
        display: none; /* Hide on mobile for better performance */
    }
    
    .floating-leaf {
        width: 12px;
        height: 10px;
    }
    
    .butterfly {
        width: 35px;
        height: 35px;
    }
}

/* Performance Optimization */
.animated-plants {
    will-change: transform, opacity;
}

.floating-leaf,
.butterfly {
    will-change: transform;
}

/* Responsive Design for New Sections */
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Article Modal */
.article-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.article-modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-strong);
    animation: modalSlideIn 0.3s ease-out;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

#articleContent {
    padding: 40px;
}

.article-header {
    margin-bottom: 30px;
}

.article-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.article-body {
    line-height: 1.8;
    color: #333;
}

.article-body h3 {
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    font-size: 1.4rem;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
