/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #71c9ae;
    --primary-dark: #49af90;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

body {
    font-family: system-ui;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter'sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-login {
    background: transparent;
    color: var(--dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.tagline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-subtitle {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.dashboard-preview {
    position: relative;
}

.dashboard-preview img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.25rem;
}

.card-1 {
    top: -20px;
    left: -20px;
    animation-delay: 0.5s;
}

.card-2 {
    bottom: 20px;
    right: -20px;
    animation-delay: 1s;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.text-center {
    text-align: center;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #cbeae1, #99d6c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.audience-icon i {
    color: var(--primary);
    font-size: 2rem;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.trust-stat {
    text-align: center;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Calculator Section */
.calculator-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.calculator {
    margin-top: 2rem;
}

.calc-input {
    margin-bottom: 2rem;
}

.calc-input label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.calc-input input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background: var(--gray-light);
    border-radius: 4px;
    outline: none;
}

.calc-input input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--primary-dark);
    border-radius: 50%;
    cursor: pointer;
}

.calc-input span {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.calc-result {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
}

.result-box {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.result-label {
    font-size: 0.875rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.btn-cta {
    background: white;
    color: var(--primary);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.btn-cta:hover {
    background: var(--gray-light);
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Tablets */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
    }

    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .result-box {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 60px 0;
    }

    .calculator-card {
        padding: 1.5rem;
    }
}


/*----------pricing page ---*/


/* =====================
   Hero section
===================== */
.pricing-hero {
    margin-top: 80px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.pricing-hero p {
    margin-bottom: 10px;
}

/* =====================
   All included
===================== */
.all-included {
    background: #ffffff;
}

.all-included h3 {
    text-align: center;
    margin-bottom: 20px;
}

.included-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.included-features span {
    background: #eef2ff;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.included-features i {
    color: var(--primary);
    margin-right: 6px;
}

/* =====================
   Pricing grid
===================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

/* =====================
   Pricing cards
===================== */
.pricing-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.price-description {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #6b7280;
}

/* =====================
   Popular plan
===================== */
.pricing-card.popular {
    border: 2px solid var(--primary-dark);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
}

/* =====================
   Features list
===================== */
.pricing-features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.pricing-features i {
    color: #22c55e;
    margin-right: 8px;
}

/* =====================
   Buttons
===================== */


/* =====================
   Free trial
===================== */
.free-trial-card {
    background: var(--primary);
    margin-top: 60px;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.free-trial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.free-trial-card p {
    color: #ffffffe0;
    margin-bottom: 20px;
}

/* =====================
   Mobile tweaks
===================== */
@media (max-width: 600px) {
    .pricing-hero h2 {
        font-size: 1.6rem;
    }

    .pricing-card.popular {
        transform: none;
    }
}

/*-----feature page ---*/

/* =====================
   Category header
===================== */
.category-header {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.category-header i {
    font-size: 1.6rem;
    color: var(--primary);
}

.category-header h2 {
    font-size: 1.5rem;
}

/* =====================
   Feature list grid
===================== */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* =====================
   Feature cards
===================== */
.feature-detail {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 14px rgba(0, 0, 0, 0.12);
}

.feature-detail h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.feature-detail p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* =====================
   AI benefit highlight
===================== */
.ai-benefit {
    grid-column: span 2;
    background: #eef2ff;
    border-left: 4px solid var(--primary-dark);
    padding: 18px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ai-benefit i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 3px;
}

.ai-benefit p {
    font-size: 0.9rem;
    color: #1f2937;
}

/* =====================
   Mobile adjustments
===================== */
@media (max-width: 768px) {

    .ai-benefit {
        grid-column: span 1;
    }
}

/*--------about page----*/


/* About content */
.about-content {
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
}

/* Each column */
.about-box {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    align-content: center;
}

/* Headings */
.about-box h2 {
    margin-bottom: 0.75rem;
    color: #1f2937;
}

/* Text */
.about-box p {
    color: #4b5563;
    line-height: 1.6;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}


/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.18);
    align-content: center;
    text-align: center;
}

.mv-card h2 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.mv-card p {
    color: #4b5563;
    line-height: 1.7;
}

.mv-card i {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .mission-vision {
        grid-template-columns: 1fr;
    }
}


/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    margin-bottom: 8px;
    color: var(--primary);
}

/* Stats */
.stats-section {
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.2rem;
    color: var(--primary-dark);
}

.stat-box p {
    color: #6b7280;
}



/* Responsive */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.6rem;
    }
}

/*-------blog page -----*/


/* =====================
   Blog list
===================== */
.blog-list {
    background: #ffffff;
}

.blog-list .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .blog-list .container {
        grid-template-columns: repeat(auto-fit, minmax(278px, 1fr));
    }
}

/* =====================
   Blog card
===================== */
.blog-card {
    background: #f9fafb;
    padding: 28px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-card h3 a {
    color: #111827;
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: #10b981;
}

.blog-card p {
    color: #4b5563;
    margin-bottom: 18px;
    flex-grow: 1;
}


/*------cntact page -----*/

.contact-form-section {
    background: #ffffff;
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: flex-start;
}

/* =====================
   Form
===================== */
.contact-form {
    background: #f9fafb;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #374151;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* =====================
   Contact details
===================== */
.contact-details {
    padding: 20px;
}

.contact-details h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #444;
}

.contact-details i {
    color: #10b981;
    /* primary blue */
    font-size: 16px;
    min-width: 20px;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* =====================
   Responsive
===================== */
@media (max-width: 900px) {
    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
}

/*----faq page--------*/
/* FAQ Styles */
.faq-list {
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 15px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #10b981;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.faq-answer p {
    margin: 15px 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/*--------login page ------*/

.login-page {
    min-height: 100vh;
    display: flex;
}

/* LEFT PANEL */
.login-left {
    flex: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.login-logo {
    margin-bottom: 30px;
    text-align: center;
}

.login-card h2 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
    margin-bottom: 30px;
}

.login-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #374151;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 0.9rem;
}

.input-wrapper input {
    width: 100%;
    padding: 11px 12px 11px 38px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.login-options {
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.login-options a {
    text-decoration: none;
    color: #2563eb;
    font-weight: 500;
}

.btn-log {
    width: 100%;
    padding: 11px;
    background: #10b981;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

.btn-log:hover {
    background: #0a8a5f;
}

.signup-text {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 22px;
    color: #6b7280;
}

.signup-text a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

/* RIGHT PANEL */
.login-right {
    flex: 1;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-right-content {
    max-width: 420px;
}

.login-right h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.login-right p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .login-page {
        flex-direction: column;
    }

    .login-right {
        display: none;
    }

    .login-left {
        padding: 30px 20px;
    }
}