/* ====================== */
/* LANDING PAGE STYLES    */
/* ====================== */

/* Landing Page Layout */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #2d5a27 0%, #3d6b35 100%);
    color: white;
    overflow-x: hidden;
}

/* Reset any potential stacking issues */
.landing-page * {
    box-sizing: border-box;
}

.landing-page body {
    margin: 0;
    padding: 0;
}



/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 6rem; /* Adjusted for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    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"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 150px 150px;
    animation: float 25s ease-in-out infinite;
    opacity: 0.6;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,193,7,0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge i {
    color: #ffc107;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.1;
}

.title-highlight {
    color: #ffc107;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Auth Buttons */
.hero-auth-mobile {
    display: none;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    justify-content: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-height: 44px;
    border: 2px solid transparent;
    flex: 1;
    max-width: 140px;
}

.hero-auth-btn.login-btn {
    background: linear-gradient(135deg, #2d5a27 0%, #3d6b35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.hero-auth-btn.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.hero-auth-btn.register-btn {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-auth-btn.register-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffc107;
    display: block;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-arrow {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.hero-scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-primary {
    background: white;
    color: #2d5a27;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
    color: #2d5a27;
}

/* Hero Background Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white"/><circle cx="80" cy="20" r="2" fill="white"/><circle cx="50" cy="50" r="3" fill="white"/><circle cx="20" cy="80" r="2" fill="white"/><circle cx="80" cy="80" r="2" fill="white"/></svg>');
    background-size: 100px 100px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-5px) rotate(-1deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #333;
    padding: 6rem 2rem;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(45, 90, 39, 0.05) 0%, transparent 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2d5a27, #3d6b35);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.2);
}

.section-title {
    font-size: 2.8rem;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(45, 90, 39, 0.1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2d5a27, #ffc107);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card.featured {
    background: linear-gradient(135deg, #2d5a27 0%, #3d6b35 100%);
    color: white;
    transform: scale(1.05);
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-description {
    color: white;
}

.feature-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d5a27, #ffc107);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.3);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.feature-badge {
    background: #ffc107;
    color: #2d5a27;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.feature-title {
    font-size: 1.4rem;
    color: #2d5a27;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
    width: 20px;
    height: 20px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #ffc107;
}

.feature-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5a27;
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.feature-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    background: rgba(45, 90, 39, 0.1);
    color: #2d5a27;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1e3f1a 0%, #2d5a27 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.stats-pattern {
    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"><circle cx="25" cy="25" r="2" fill="rgba(255,193,7,0.1)"/><circle cx="75" cy="25" r="1.5" fill="rgba(255,193,7,0.08)"/><circle cx="50" cy="50" r="2.5" fill="rgba(255,193,7,0.12)"/><circle cx="25" cy="75" r="2" fill="rgba(255,193,7,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,193,7,0.08)"/></svg>');
    background-size: 200px 200px;
    animation: float 30s ease-in-out infinite reverse;
    opacity: 0.3;
}

.stats-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-header .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.stats-header .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 193, 7, 0.4);
}

.stat-card.featured {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-color: rgba(255, 193, 7, 0.4);
    transform: scale(1.05);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffc107;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffc107;
    display: inline-block;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.5);
    line-height: 1;
}

.stat-plus,
.stat-percent {
    font-size: 2rem;
    font-weight: 700;
    color: #ffc107;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: white;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.stat-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffc107;
    color: #2d5a27;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial-section {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 40px;
    height: 40px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d5a27;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 1.2rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.author-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Section */
.landing-page .footer-section {
    background: linear-gradient(135deg, #1a4d1a 0%, #2d5a27 50%, #4a7c59 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.landing-page .footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-page .footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Company Section */
.landing-page .footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.landing-page .footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.landing-page .footer-logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 193, 7, 0.3));
}

.landing-page .footer-logo .logo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    letter-spacing: -0.5px;
}

.landing-page .footer-logo .logo-text span {
    font-size: 0.85rem;
    color: #ffc107;
    font-weight: 500;
}

.landing-page .footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.landing-page .footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.landing-page .footer-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-page .footer-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
}

.landing-page .footer-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
}

/* Footer Columns */
.landing-page .footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.landing-page .footer-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffc107;
    margin: 0 0 1rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.landing-page .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ffc107, transparent);
    border-radius: 1px;
}

.landing-page .footer-title i {
    font-size: 1rem;
    color: #ffc107;
}

.landing-page .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-page .footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.landing-page .footer-link:hover {
    color: #ffc107;
    padding-left: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
}

.landing-page .footer-link i {
    width: 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.landing-page .footer-link:hover i {
    color: #ffc107;
}

/* Contact Section */
.landing-page .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.landing-page .contact-item i {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.landing-page .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.landing-page .contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.landing-page .contact-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* Social Media */
.landing-page .footer-social {
    margin-top: 1.5rem;
}

.landing-page .footer-social h5 {
    font-size: 0.9rem;
    color: #ffc107;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.landing-page .social-links {
    display: flex;
    gap: 0.75rem;
}

.landing-page .social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.3) 0%, rgba(45, 90, 39, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.landing-page .social-link:hover {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
    border-color: #4a7c59;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.4);
}

/* ====================== */
/* FOOTER BOTTOM - SIMPLE */
/* ====================== */

.landing-page .footer-bottom {
    background: linear-gradient(135deg,#1a4d1a 0%, #2d5a27 50%, #4a7c59 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.landing-page .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.landing-page .copyright {
    flex: 1;
}

.landing-page .copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.landing-page .sub-copyright {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-top: 0.25rem;
}

.landing-page .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.landing-page .bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.landing-page .bottom-link:hover {
    color: #ffc107;
}



/* ====================== */
/* RESPONSIVE DESIGN      */
/* ====================== */

/* Large Desktop */
@media (min-width: 1200px) {
    .footer-content {
        max-width: 1400px;
    }
    
    .footer-links {
        gap: 3rem;
    }
    
    .footer-link {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .footer-info {
        font-size: 1.1rem;
        max-width: 800px;
    }
    
    .footer-logo h3 {
        font-size: 2rem;
    }
    
    .footer-logo img {
        width: 200px;
        height: 100px;
    }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
    .footer-links {
        gap: 2.5rem;
    }
    
    .footer-link {
        font-size: 1rem;
    }
}

/* Tablet and Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Show mobile auth buttons */
    .hero-auth-mobile {
        display: flex;
        margin-top: 1.5rem;
        gap: 0.85rem;
        max-width: 320px;
    }
    
    .hero-auth-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        min-height: 44px;
        gap: 0.4rem;
        max-width: 120px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card.featured {
        transform: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-card.featured {
        transform: none;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Footer Mobile Styles - Compact */
    .landing-page .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .landing-page .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .landing-page .footer-company {
        align-items: center;
        text-align: center;
        order: 1;
    }
    
    .landing-page .footer-logo {
        margin-bottom: 0.75rem;
    }
    
    .landing-page .footer-logo img {
        width: 150px;
        height: 80px;
    }
    
    .landing-page .footer-logo .logo-text h3 {
        font-size: 1rem;
    }
    
    .landing-page .footer-logo .logo-text span {
        font-size: 0.7rem;
    }
    
    .landing-page .footer-company .footer-description {
        font-size: 0.8rem;
        line-height: 1.4;
        max-width: 300px;
        margin: 0 auto 1rem;
    }
    
    .landing-page .footer-column {
        align-items: center;
        text-align: center;
        order: 2;
    }
    
    .landing-page .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .landing-page .footer-title i {
        font-size: 0.9rem;
    }
    
    .landing-page .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .landing-page .footer-contact {
        align-items: center;
        max-width: 280px;
        gap: 0.6rem;
    }
    
    .landing-page .contact-item {
        justify-content: flex-start;
        text-align: left;
        max-width: 260px;
        padding: 0.5rem;
    }
    
    .landing-page .contact-item i {
        font-size: 0.85rem;
        width: 28px;
        height: 28px;
    }
    
    .landing-page .contact-label {
        font-size: 0.7rem;
    }
    
    .landing-page .contact-value {
        font-size: 0.8rem;
    }
    
    .landing-page .footer-social {
        margin-top: 0.75rem;
    }
    
    .landing-page .footer-social h5 {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .landing-page .social-links {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .landing-page .social-link {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    /* Footer Bottom Mobile - Compact */
    .landing-page .footer-bottom {
        padding: 1.25rem 0;
        margin-top: 1.5rem;
    }
    
    .landing-page .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .landing-page .copyright p {
        font-size: 0.75rem;
    }
    
    .landing-page .sub-copyright {
        font-size: 0.7rem;
    }
    
    .landing-page .footer-bottom-links {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .landing-page .bottom-link {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-section {
        padding: 3rem 1rem;
    }
    
    .stats-section {
        padding: 3rem 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Mobile auth buttons for small screens */
    .hero-auth-mobile {
        margin-top: 1.25rem;
        gap: 0.75rem;
        max-width: 280px;
    }
    
    .hero-auth-btn {
        padding: 0.65rem 0.9rem;
        font-size: 0.8rem;
        min-height: 42px;
        border-radius: 8px;
        gap: 0.35rem;
        max-width: 110px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer Small Mobile - Very Compact */
    .landing-page .footer-section {
        padding: 1.5rem 0 0.75rem;
    }
    
    .landing-page .footer-content {
        padding: 0 0.75rem;
    }
    
    .landing-page .footer-main {
        gap: 1.25rem;
    }
    
    .landing-page .footer-logo {
        margin-bottom: 0.6rem;
    }
    
    .landing-page .footer-logo img {
        width: 150px;
        height: 80px;
    }
    
    .landing-page .footer-logo .logo-text h3 {
        font-size: 0.9rem;
    }
    
    .landing-page .footer-logo .logo-text span {
        font-size: 0.65rem;
    }
    
    .landing-page .footer-company .footer-description {
        font-size: 0.75rem;
        max-width: 280px;
        margin-bottom: 0.85rem;
        line-height: 1.35;
    }
    
    .landing-page .footer-title {
        font-size: 0.85rem;
        margin-bottom: 0.65rem;
    }
    
    .landing-page .footer-title i {
        font-size: 0.85rem;
    }
    
    .landing-page .footer-contact {
        gap: 0.5rem;
        max-width: 260px;
    }
    
    .landing-page .contact-item {
        padding: 0.4rem;
        max-width: 240px;
    }
    
    .landing-page .contact-item i {
        font-size: 0.8rem;
        width: 26px;
        height: 26px;
    }
    
    .landing-page .contact-label {
        font-size: 0.65rem;
    }
    
    .landing-page .contact-value {
        font-size: 0.75rem;
    }
    
    .landing-page .footer-social {
        margin-top: 0.65rem;
    }
    
    .landing-page .footer-social h5 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .landing-page .social-links {
        gap: 0.5rem;
    }
    
    .landing-page .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .landing-page .footer-stat {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .landing-page .footer-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .landing-page .footer-stat .stat-label {
        font-size: 0.85rem;
        margin-top: 0;
    }
    
    .landing-page .social-links {
        gap: 0.5rem;
    }
    
    .landing-page .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .landing-page .footer-bottom {
        padding: 1rem 0;
    }
    
    .landing-page .footer-bottom-content {
        padding: 0 0.5rem;
    }
    
    .landing-page .copyright p {
        font-size: 0.8rem;
    }
    
    .landing-page .sub-copyright {
        font-size: 0.75rem !important;
    }
    
    .landing-page .bottom-link {
        font-size: 0.8rem;
    }
    
    .landing-page .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .landing-page .footer-stat {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .landing-page .footer-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .landing-page .footer-stat .stat-label {
        font-size: 0.85rem;
        margin-top: 0;
    }
    
    .landing-page .social-links {
        gap: 0.5rem;
    }
    
    .landing-page .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero-section {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        margin-bottom: 1.25rem;
    }
    
    /* Mobile auth buttons for very small screens */
    .hero-auth-mobile {
        margin-top: 1rem;
        gap: 0.6rem;
        max-width: 260px;
    }
    
    .hero-auth-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        min-height: 40px;
        border-radius: 8px;
        gap: 0.3rem;
        max-width: 100px;
    }
    
    .features-section,
    .stats-section {
        padding: 2rem 0.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    /* Footer Very Small Mobile - Ultra Compact */
    .landing-page .footer-section {
        padding: 1.25rem 0 0.6rem;
    }
    
    .landing-page .footer-content {
        padding: 0 0.5rem;
    }
    
    .landing-page .footer-main {
        gap: 1rem;
    }
    
    .landing-page .footer-logo {
        margin-bottom: 0.5rem;
    }
    
    .landing-page .footer-logo img {
        width: 150px;
        height: 80px;
    }
    
    .landing-page .footer-logo .logo-text h3 {
        font-size: 0.85rem;
    }
    
    .landing-page .footer-logo .logo-text span {
        font-size: 0.6rem;
    }
    
    .landing-page .footer-company .footer-description {
        font-size: 0.7rem;
        max-width: 260px;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .landing-page .footer-title {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .landing-page .footer-title i {
        font-size: 0.8rem;
    }
    
    .landing-page .footer-contact {
        gap: 0.45rem;
        max-width: 240px;
    }
    
    .landing-page .contact-item {
        padding: 0.35rem;
        max-width: 220px;
    }
    
    .landing-page .contact-item i {
        font-size: 0.75rem;
        width: 24px;
        height: 24px;
    }
    
    .landing-page .contact-label {
        font-size: 0.6rem;
    }
    
    .landing-page .contact-value {
        font-size: 0.7rem;
    }
    
    .landing-page .footer-social {
        margin-top: 0.6rem;
    }
    
    .landing-page .footer-social h5 {
        font-size: 0.75rem;
        margin-bottom: 0.45rem;
    }
    
    .landing-page .social-links {
        gap: 0.45rem;
    }
    
    .landing-page .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    /* Footer Bottom */
    .landing-page .footer-bottom {
        padding: 0.85rem 0;
        margin-top: 1rem;
    }
    
    .landing-page .footer-bottom-content {
        gap: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .landing-page .copyright p {
        font-size: 0.65rem;
    }
    
    .landing-page .sub-copyright {
        font-size: 0.6rem !important;
    }
    
    .landing-page .footer-bottom-links {
        gap: 0.6rem;
    }
    
    .landing-page .bottom-link {
        font-size: 0.6rem;
    }
    
    .landing-page .footer-links {
        max-width: 250px;
        gap: 0.25rem;
    }
    
    .landing-page .contact-item {
        max-width: 250px;
    }
    
    .landing-page .contact-value {
        font-size: 0.75rem;
    }
    
    .landing-page .contact-label {
        font-size: 0.7rem;
    }
    
    .landing-page .social-links {
        gap: 0.4rem;
    }
    
    .landing-page .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .landing-page .footer-bottom {
        padding: 1rem 0;
    }
    
    .landing-page .footer-bottom-content {
        padding: 0 0.5rem;
    }
    
    .landing-page .copyright p {
        font-size: 0.75rem;
    }
    
    .landing-page .sub-copyright {
        font-size: 0.7rem !important;
    }
    
    .landing-page .bottom-link {
        font-size: 0.75rem;
    }
}

/* ====================== */
/* ANIMATIONS & EFFECTS   */
/* ====================== */

/* Fade in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects */
.feature-card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Loading animation */
.loading {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.loaded {
    opacity: 1;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-btn:focus,
.footer-link:focus {
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero-background,
    .cta-buttons {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .landing-page {
        background: white;
        color: black;
    }
    
    .hero-title,
    .section-title,
    .feature-title {
        color: #2d5a27 !important;
    }
}

/* ====================== */
/* AUTH SECTION STYLES    */
/* ====================== */

/* Auth Section */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 2rem; /* Adjusted for fixed header */
    position: relative;
    overflow: hidden;
}

.auth-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.auth-particles {
    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"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.12)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 150px 150px;
    animation: float 25s ease-in-out infinite;
    opacity: 0.6;
}

.auth-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255,193,7,0.1) 0%, transparent 70%);
}

.auth-container {
    max-width: 500px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    transition: all 0.3s ease;
}

.auth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.auth-logo img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(45, 90, 39, 0.3));
}

.auth-logo .logo-text h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #2d5a27 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auth-logo .logo-text span {
    font-size: 0.9rem;
    color: #3d6b35 !important;
    font-weight: 500;
}

.auth-title {
    font-size: 1.8rem;
    color: #2d5a27;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.auth-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-label i {
    color: #2d5a27;
    width: 16px;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 0.85rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    min-height: 50px;
}

.form-control:focus {
    outline: none;
    border-color: #2d5a27;
    box-shadow: 0 0 0 4px rgba(45, 90, 39, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-hint {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Auth Form Button (for login/register forms) */
.auth-form .auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.auth-form .auth-btn.primary {
    background: linear-gradient(135deg, #2d5a27 0%, #3d6b35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.auth-form .auth-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
}

.auth-form .auth-btn.primary:active {
    transform: translateY(0);
}

.auth-form .auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: none;
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: pre-line;
}

.alert.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.alert.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-footer p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.auth-link {
    color: #2d5a27;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #1e3f1a;
    text-decoration: underline;
}

.auth-divider {
    position: relative;
    margin: 1rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.auth-divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: #999;
    font-size: 0.85rem;
    position: relative;
    z-index: 1;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.back-home:hover {
    color: #2d5a27;
    background: rgba(45, 90, 39, 0.05);
}

/* Auth Responsive Design */
@media (max-width: 768px) {
    .auth-section {
        padding: 2rem 0.75rem 1rem;
    }
    
    .auth-card {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .auth-header {
        margin-bottom: 1rem;
    }
    
    .auth-logo {
        gap: 0.4rem;
        margin-bottom: 0.7rem;
    }
    
    .auth-logo img {
        width: 150px;
        height: 80px;
    }
    
    .auth-logo .logo-text h1 {
        font-size: 1rem;
    }
    
    .auth-logo .logo-text span {
        font-size: 0.65rem;
    }
    
    .auth-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        gap: 0.3rem;
    }
    
    .auth-badge i {
        font-size: 0.65rem;
    }
    
    .auth-title {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
    }
    
    .auth-subtitle {
        font-size: 0.7rem;
        line-height: 1.25;
    }
    
    .auth-form {
        gap: 0.7rem;
    }
    
    .form-group {
        gap: 0.3rem;
    }
    
    .form-label {
        font-size: 0.75rem;
    }
    
    .form-label i {
        font-size: 0.75rem;
        width: 12px;
    }
    
    .form-control {
        padding: 0.5rem 0.65rem;
        font-size: 0.75rem;
        min-height: 38px;
        border-radius: 8px;
    }
    
    .auth-form .auth-btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
        min-height: 38px;
        border-radius: 8px;
    }
    
    .alert {
        padding: 0.55rem 0.65rem;
        font-size: 0.7rem;
        border-radius: 8px;
        margin-bottom: 0.7rem;
    }
    
    .auth-footer {
        margin-top: 1rem;
        padding-top: 1rem;
        gap: 0.6rem;
    }
    
    .auth-footer p,
    .auth-link {
        font-size: 0.7rem;
    }
    
    .auth-divider {
        margin: 0.6rem 0;
    }
    
    .auth-divider span {
        font-size: 0.65rem;
        padding: 0 0.6rem;
    }
    
    .auth-btn.secondary {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-height: 38px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 1.5rem 0.5rem 0.75rem;
    }
    
    .auth-card {
        padding: 0.85rem;
        border-radius: 8px;
    }
    
    .auth-header {
        margin-bottom: 0.85rem;
    }
    
    .auth-logo {
        gap: 0.35rem;
        margin-bottom: 0.6rem;
    }
    
    .auth-logo img {
        width: 150px;
        height: 80px;
    }
    
    .auth-logo .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .auth-logo .logo-text span {
        font-size: 0.6rem;
    }
    
    .auth-badge {
        font-size: 0.6rem;
        padding: 0.25rem 0.5rem;
        gap: 0.25rem;
    }
    
    .auth-badge i {
        font-size: 0.6rem;
    }
    
    .auth-title {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .auth-subtitle {
        font-size: 0.65rem;
        line-height: 1.25;
    }
    
    .auth-form {
        gap: 0.6rem;
    }
    
    .form-group {
        gap: 0.25rem;
    }
    
    .form-label {
        font-size: 0.7rem;
    }
    
    .form-label i {
        font-size: 0.7rem;
        width: 11px;
    }
    
    .form-control {
        padding: 0.45rem 0.6rem;
        font-size: 0.7rem;
        min-height: 36px;
        border-radius: 6px;
    }
    
    textarea.form-control {
        min-height: 55px;
    }
    
    .form-hint {
        font-size: 0.6rem;
    }
    
    .auth-form .auth-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        min-height: 36px;
        gap: 0.4rem;
        border-radius: 6px;
    }
    
    .alert {
        padding: 0.5rem 0.6rem;
        font-size: 0.65rem;
        border-radius: 6px;
        margin-bottom: 0.6rem;
    }
    
    .auth-footer {
        margin-top: 0.85rem;
        padding-top: 0.85rem;
        gap: 0.5rem;
    }
    
    .auth-footer p {
        font-size: 0.65rem;
    }
    
    .auth-link {
        font-size: 0.65rem;
    }
    
    .auth-divider {
        margin: 0.5rem 0;
    }
    
    .auth-divider span {
        font-size: 0.6rem;
        padding: 0 0.5rem;
    }
    
    .auth-btn.secondary {
        padding: 0.45rem 0.7rem;
        font-size: 0.7rem;
        min-height: 36px;
        gap: 0.35rem;
        border-radius: 6px;
    }
    
    .back-home {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 360px) {
    .auth-section {
        padding: 1.25rem 0.4rem 0.6rem;
    }
    
    .auth-card {
        padding: 0.7rem;
        border-radius: 6px;
    }
    
    .auth-header {
        margin-bottom: 0.7rem;
    }
    
    .auth-logo {
        gap: 0.3rem;
        margin-bottom: 0.5rem;
    }
    
    .auth-logo img {
        width: 150px;
        height: 80px;
    }
    
    .auth-logo .logo-text h1 {
        font-size: 0.85rem;
    }
    
    .auth-logo .logo-text span {
        font-size: 0.55rem;
    }
    
    .auth-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.45rem;
        gap: 0.2rem;
    }
    
    .auth-title {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .auth-subtitle {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .auth-form {
        gap: 0.5rem;
    }
    
    .form-group {
        gap: 0.2rem;
    }
    
    .form-label {
        font-size: 0.65rem;
    }
    
    .form-label i {
        font-size: 0.65rem;
        width: 10px;
    }
    
    .form-control {
        padding: 0.4rem 0.55rem;
        font-size: 0.65rem;
        min-height: 34px;
        border-radius: 6px;
    }
    
    textarea.form-control {
        min-height: 50px;
    }
    
    .form-hint {
        font-size: 0.55rem;
    }
    
    .auth-form .auth-btn {
        padding: 0.45rem 0.7rem;
        font-size: 0.7rem;
        min-height: 34px;
        gap: 0.35rem;
        border-radius: 6px;
    }
    
    .alert {
        padding: 0.45rem 0.55rem;
        font-size: 0.6rem;
        border-radius: 6px;
        margin-bottom: 0.5rem;
    }
    
    .auth-footer {
        margin-top: 0.7rem;
        padding-top: 0.7rem;
        gap: 0.45rem;
    }
    
    .auth-footer p {
        font-size: 0.6rem;
    }
    
    .auth-link {
        font-size: 0.6rem;
    }
    
    .auth-divider {
        margin: 0.45rem 0;
    }
    
    .auth-divider span {
        font-size: 0.55rem;
        padding: 0 0.45rem;
    }
    
    .auth-btn.secondary {
        padding: 0.4rem 0.6rem;
        font-size: 0.65rem;
        min-height: 34px;
        gap: 0.3rem;
        border-radius: 6px;
    }
    
    .back-home {
        font-size: 0.6rem;
        padding: 0.2rem 0.45rem;
    }
}
    
    .auth-title {
        font-size: 1.1rem;
    }
    
    .form-control {
        padding: 0.625rem;
    }
    
    /* Keep the same padding for auth-btn on very small screens */
}
/* ====================== */
/* LOGIN PAGE STYLES      */
/* ====================== */

/* Auth Content Layout */
.auth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    width: 100%;
}

/* Auth Badge */
.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

/* Auth Info Section */
.auth-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #ffc107;
}

.info-card h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Secondary Auth Button */
.auth-btn.secondary {
    background: transparent;
    color: #666;
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    align-self: center;
    max-width: fit-content;
}

.auth-btn.secondary:hover {
    background: rgba(45, 90, 39, 0.05);
    border-color: rgba(45, 90, 39, 0.2);
    color: #2d5a27;
    transform: translateY(-1px);
}

/* Active Auth Button */
.auth-btn.active {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.mobile-auth-btn.active {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

/* Auth Text */
.auth-text {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Login Page Responsive Design */
@media (max-width: 992px) {
    .auth-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }
    
    .auth-info {
        order: -1;
        flex-direction: row;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .info-card {
        padding: 1.5rem;
        flex: 1;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .info-card h3 {
        font-size: 1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .auth-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .info-card h3 {
        font-size: 0.95rem;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .auth-content {
        gap: 1.5rem;
    }
    
    .auth-info {
        padding: 0.5rem 0;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .info-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .info-card p {
        font-size: 0.75rem;
    }
    
    .auth-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Single Column Layout for Register Page and Login Page */
.auth-container:not(:has(.auth-content)) {
    max-width: 600px;
}

.auth-container:not(:has(.auth-content)) .auth-card {
    width: 100%;
    padding: 3.5rem;
}

/* Wider login form */
@media (min-width: 768px) {
    .auth-container:not(:has(.auth-content)) {
        max-width: 650px;
    }
    
    .auth-container:not(:has(.auth-content)) .auth-card {
        padding: 4rem;
    }
}

@media (min-width: 992px) {
    .auth-container:not(:has(.auth-content)) {
        max-width: 700px;
    }
    
    .auth-container:not(:has(.auth-content)) .auth-card {
        padding: 4.5rem;
    }
}
/* ====================== */
/* LANDING PAGE HEADER    */
/* ====================== */

/* Override header styles for landing page to prevent stacking */
.landing-page header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 39, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0;
    transition: margin-left 0.3s ease;
}

.landing-page .header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}

.landing-page .hamburger-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.landing-page .hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.landing-page .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .logo-img {
    width: 200px;
    height: 100px;
    border-radius: 4px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    object-fit: contain;
}

.landing-page .logo-text {
    display: flex;
    flex-direction: column;
}

.landing-page .logo-text h1 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: white;
}

.landing-page .logo-text span {
    font-size: 0.8rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.landing-page .profile-dropdown {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

/* Auth buttons styling untuk landing page */
.landing-page .header-auth {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-page .auth-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.landing-page .login-btn {
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.landing-page .login-btn:hover,
.landing-page .login-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.landing-page .register-btn {
    background: #ffc107;
    color: #1e3f1a;
    border: 1px solid #ffc107;
}

.landing-page .register-btn:hover,
.landing-page .register-btn.active {
    background: #e0a800;
    border-color: #e0a800;
}

/* Landing page sidebar menu styling */
.landing-page .sidebar {
    background: rgba(30, 63, 26, 0.95);
    backdrop-filter: blur(10px);
}

.landing-page .sidebar-header {
    background: rgba(45, 90, 39, 0.8);
}

.landing-page .menu-item {
    color: rgba(255, 255, 255, 0.9);
}

.landing-page .menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffc107;
}

.landing-page .menu-item i {
    color: rgba(255, 255, 255, 0.7);
}

.landing-page .menu-item:hover i {
    color: #ffc107;
}

/* ====================== */
/* SIDEBAR DESKTOP TOGGLE */
/* ====================== */

/* Sidebar base styles for landing pages */
.landing-page .sidebar {
    position: fixed;
    top: 64px;
    left: 0;
    width: 260px;
    height: calc(100vh - 64px);
    background: rgba(30, 63, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
}

.landing-page .sidebar.active {
    transform: translateX(0);
}

.landing-page .sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(45, 90, 39, 0.8);
}

.landing-page .sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .sidebar-logo img {
    width: 200px;
    height: 100px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    object-fit: contain;
}

.landing-page .sidebar-logo h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.landing-page .close-sidebar {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .close-sidebar:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.landing-page .sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.landing-page .menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 2px 0;
}

.landing-page .menu-item:hover,
.landing-page .menu-item:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #ffc107;
    border-left-color: #ffc107;
}

.landing-page .menu-item.active {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border-left-color: #ffc107;
}

.landing-page .menu-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.landing-page .menu-item:hover i,
.landing-page .menu-item.active i {
    color: #ffc107;
}

.landing-page .menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 1.5rem;
}

.landing-page .sidebar-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page .user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.landing-page .user-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.landing-page .user-details p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Overlay for mobile */
.landing-page .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.landing-page .overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Desktop sidebar toggle - content shifting */
@media (min-width: 769px) {
    .landing-page .hamburger-btn {
        display: flex;
    }
    
    .landing-page .sidebar {
        transform: translateX(-100%);
    }
    
    .landing-page .sidebar.active {
        transform: translateX(0);
    }
    
    /* Content shifting for desktop */
    .landing-page.sidebar-open .hero-section,
    .landing-page.sidebar-open .features-section,
    .landing-page.sidebar-open .stats-section,
    .landing-page.sidebar-open .auth-section,
    .landing-page.sidebar-open .footer-section {
        margin-left: 260px;
        transition: margin-left 0.3s ease;
    }
    
    .landing-page .hero-section,
    .landing-page .features-section,
    .landing-page .stats-section,
    .landing-page .auth-section,
    .landing-page .footer-section {
        margin-left: 0;
        transition: margin-left 0.3s ease;
    }
    
    /* Header adjustment for desktop */
    .landing-page.sidebar-open header {
        margin-left: 260px;
        transition: margin-left 0.3s ease;
    }
    
    .landing-page header {
        margin-left: 0;
        transition: margin-left 0.3s ease;
    }
    
    /* Hide overlay on desktop */
    .landing-page .overlay {
        display: none;
    }
    
    /* Show close button on desktop when sidebar is active */
    .landing-page .sidebar.active .close-sidebar {
        display: flex;
    }
    
    /* Ensure smooth content transitions */
    .landing-page * {
        box-sizing: border-box;
    }
}

/* Mobile sidebar behavior */
@media (max-width: 768px) {
    .landing-page .header-auth {
        display: none;
    }
    
    .landing-page .hamburger-btn {
        display: flex !important;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .landing-page header {
        padding: 0.75rem 1rem;
    }
    
    .landing-page .header-container {
        justify-content: center;
        padding: 0 3rem; /* Add padding to prevent logo from overlapping with hamburger */
    }
    
    .landing-page .logo-img {
        width: 150px;
        height: 80px;
    }
    
    .landing-page .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .landing-page .logo-text span {
        font-size: 0.75rem;
    }
    
    .landing-page .profile-dropdown {
        display: none; /* Hide profile dropdown on mobile since header-auth is hidden */
    }
    
    .landing-page .sidebar {
        width: 280px;
        transform: translateX(-100%);
    }
    
    .landing-page .sidebar.active {
        transform: translateX(0);
    }
    
    /* No content shifting on mobile - use overlay */
    .landing-page .hero-section,
    .landing-page .features-section,
    .landing-page .stats-section,
    .landing-page .auth-section,
    .landing-page .footer-section {
        margin-left: 0 !important;
    }
    
    .landing-page header {
        margin-left: 0 !important;
    }
    
    /* Show overlay on mobile */
    .landing-page .overlay {
        display: block;
    }
    
    /* Always show close button on mobile */
    .landing-page .close-sidebar {
        display: flex;
    }
    
    /* Prevent body scroll when sidebar is open on mobile */
    .landing-page.sidebar-open {
        overflow: hidden;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .landing-page .header-container {
        padding: 0 2.5rem; /* Reduce padding on very small screens */
    }
    
    .landing-page .hamburger-btn {
        left: 0.5rem; /* Adjust hamburger position */
    }
    
    .landing-page .logo-text h1 {
        font-size: 1rem;
    }
    
    .landing-page .logo-text span {
        font-size: 0.7rem;
    }
    
    .landing-page .logo-img {
        width: 150px;
        height: 80px;
    }
}