/* ========================================
   FOR TENANTS PAGE STYLES
   ======================================== */

/* Hero Section */
.tenant-hero {
    padding: 40px 20px;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    border-radius: 30px;
    margin: 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #7cb342;
    position: relative;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i,
.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #b9ff66 0%, #a8e65c 100%);
    color: #000;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #000;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #000;
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Key Features Section */
.key-features-section {
    padding: 100px 20px;
}

.key-features-section .container,
.how-it-works-section .container,
.benefits-section .container,
.cta-section .container,
.footer .container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #000;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1 1 280px;
    max-width: 350px;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 0 #000;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b9ff66 0%, #a8e65c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 3px solid #000;
}

.feature-icon i {
    font-size: 32px;
    color: #000;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.step-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
    text-align: center;
    transition: all 0.4s ease;
    flex: 1 1 250px;
    max-width: 300px;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 0 #000;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #b9ff66 0%, #a8e65c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin: 0 auto 20px;
    border: 3px solid #000;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 20px;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
    text-align: center;
    transition: all 0.4s ease;
    flex: 1 1 250px;
    max-width: 300px;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 0 #000;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #b9ff66 0%, #a8e65c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #000;
}

.benefit-icon i {
    font-size: 32px;
    color: #000;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #b9ff66;
    margin-bottom: 16px;
}

.cta-content>p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    font-size: 16px;
    color: #b9ff66;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-note i {
    font-size: 20px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
    width: 100%;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #b9ff66;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.footer-section a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-section a:hover {
    color: #b9ff66;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* Responsive */
@media (max-width: 1000px) {

    .tenant-hero .container,
    .hero-grid {
        max-width: 100vw;
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .key-features-section .container,
    .how-it-works-section .container,
    .benefits-section .container {
        padding: 0;
        max-width: 100vw;
    }

    .features-grid,
    .steps-grid,
    .benefits-grid {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .feature-card,
    .step-card,
    .benefit-card {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .features-grid,
    .steps-grid,
    .benefits-grid {
        flex-direction: column;
    }

    .feature-card,
    .step-card,
    .benefit-card {
        max-width: 100%;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {

    .features-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .tenant-hero {
        margin: 0;
        border-radius: 0;
        padding: 0;
    }

    .hero-grid {
        padding: 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 18px;
    }

    .features-grid,
    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Medium screens - 2 columns for footer */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}