/* RecEzy Page Styles */
.recezy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    padding: 120px 0 60px;
    margin-top: 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-top: 0;
}

.hero-title .text-dark {
    display: block;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-desc br {
    margin-bottom: 0.5rem;
}

.product-badge {
    display: inline-block;
    background: var(--recezy-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(172, 13, 26, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(120, 137, 254, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(120, 137, 254, 0.1);
    border-color: var(--recezy-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-text p {
    color: var(--text-light);
}

/* Demo Section */
.demo-section {
    padding: 120px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.demo-content {
    max-width: 800px;
    margin: 0 auto;
}

.demo-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.demo-form {
    margin-top: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--recezy-primary);
    outline: none;
}

@media (max-width: 992px) {
    .recezy-hero .container,
    .benefits-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .benefits-list {
        align-items: center;
    }

    .benefit-item {
        text-align: left;
        max-width: 500px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 850px) {
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .recezy-hero {
        padding: 90px 0 40px;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .demo-content h2 {
        font-size: 2.4rem;
    }
}

/* Add active state for dropdown item */
.dropdown-item.active {
    background: rgba(172, 13, 26, 0.05);
}

.dropdown-item.active h4 {
    color: var(--primary);
}

/* Update link styles for proper navigation */
.nav-item a[href^="/#"] {
    cursor: pointer;
}

/* Logo link styles */
.logo a {
    display: block;
    height: 100%;
}

.logo a img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Update color variables */
:root {
    --recezy-primary: #7889FE;
    --recezy-secondary: #7A87FE;
    --recezy-gradient: linear-gradient(135deg, #7889FE 0%, #7A87FE 100%);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero-title .text-dark {
    display: block;
    color: var(--text-dark);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn.primary {
    background: var(--recezy-primary);
    color: white;
}

.btn.primary:hover {
    background: var(--recezy-secondary);
    transform: translateY(-2px);
}

.btn.outline {
    border: 2px solid var(--recezy-primary);
    color: var(--recezy-primary);
    background: transparent;
}

.btn.outline:hover {
    background: var(--recezy-primary);
    color: white;
    transform: translateY(-2px);
}

/* Dashboard Section */
.dashboard {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.dashboard-wrapper {
    position: relative;
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1800px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.dashboard-image {
    width: 100%;
    padding: 0;
}

.dashboard-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(120, 137, 254, 0.15);
    transform: scale(1.1);
}

.notification-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(120, 137, 254, 0.1);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    transform: translateX(0);
    transition: all 0.3s ease;
    border: 1px solid rgba(120, 137, 254, 0.1);
    min-height: 100px;
}

.notification-card:hover {
    transform: translateX(10px);
    border-color: var(--recezy-primary);
    box-shadow: 0 15px 40px rgba(120, 137, 254, 0.2);
}

.dashboard-notifications.right .notification-card:hover {
    transform: translateX(-10px);
}

.notification-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 137, 254, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
}

.notification-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.notification-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1600px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr 3.5fr 1fr;
    }
}

@media (max-width: 1400px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr 3fr 1fr;
    }
}

@media (max-width: 1200px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .dashboard-image img {
        transform: scale(1);
    }

    .dashboard-notifications {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .dashboard-notifications {
        grid-template-columns: 1fr;
    }

    .dashboard-wrapper {
        padding: 0 1rem;
    }
}

/* Update all lord-icon colors */
lord-icon {
    colors: primary:#7889FE,secondary:#7A87FE;
}

/* Update accent text color */
.accent-text {
    color: var(--recezy-primary);
}

/* Section Navigation Styles */
.section-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: var(--white);
    padding: 0.75rem;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(120, 137, 254, 0.15);
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-indicator {
    width: 8px;
    height: 8px;
    background: var(--recezy-primary);
    opacity: 0.3;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-label {
    position: absolute;
    right: calc(100% + 10px);
    white-space: nowrap;
    background: var(--recezy-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.nav-item:hover .nav-indicator,
.nav-item.active .nav-indicator {
    opacity: 1;
    transform: scale(1.2);
}

.nav-item:hover .nav-label {
    opacity: 1;
    transform: translateX(0);
}

.nav-item.active {
    background: rgba(120, 137, 254, 0.1);
    border-radius: 100px;
}

/* Footer with RecEzy colors */
.footer {
    background: linear-gradient(135deg, #6477FE 0%, #7889FE 100%);
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-links-column a {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.footer-links-column a:hover {
    padding-left: 10px;
    color: white;
}

.footer-links-column a.active {
    color: white;
    font-weight: 500;
}

.footer-links-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
    opacity: 0;
}

.footer-links-column a:hover::before {
    width: 5px;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Add Meet Eko section styles */
.meet-eko {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.meet-eko::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(120, 137, 254, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.meet-eko-content {
    max-width: 1200px;
    margin: 0 auto;
}

.eko-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.eko-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--recezy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eko-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.eko-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.eko-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(120, 137, 254, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(120, 137, 254, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.eko-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--recezy-primary);
    box-shadow: 0 20px 40px rgba(120, 137, 254, 0.15);
}

.eko-icon {
    background: rgba(120, 137, 254, 0.1);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eko-feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.eko-feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive styles */
@media (max-width: 992px) {
    .eko-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .eko-intro h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .eko-feature-card {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        text-align: center;
    }

    .eko-icon {
        margin: 0 auto;
    }
}

/* Add this to override the default contact button styles */
.navbar .contact-btn {
    background: var(--recezy-primary);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(120, 137, 254, 0.2);
}

.navbar .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 137, 254, 0.3);
    background: var(--recezy-secondary);
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .recezy-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .hero-desc {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
} 