/* Landing Page Component Styles */

/* Header Section */
.header-section {
    background: white;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar-cta .cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

/* Mobile menu active state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu dropdown */
@media (max-width: 768px) {
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #e5e5e5;
        border-top: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 1000;
    }
    
    .navbar-menu.mobile-menu-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: flex;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        width: 100%;
    }
    
    .nav-link:hover {
        background: #f8f9fa;
    }
    
    .navbar-cta {
        padding: 15px 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    .navbar-cta .cta-button {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
    }
}

/* Header Background Variants */
.header-section.bg-white {
    background: white;
}

.header-section.bg-light {
    background: #f8f9fa;
}

.header-section.bg-dark {
    background: #343a40;
}

.header-section.bg-dark .nav-link,
.header-section.bg-dark .mobile-menu-toggle span {
    color: white;
}

.header-section.bg-transparent {
    background: transparent;
    border-bottom: none;
}

/* Hero Section */
.hero-section {
    background: white;
    color: #333;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.hero-content {
    text-align: left;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.1;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.6;
}

.hero-section .cta-button {
    font-size: 1.1rem;
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Background Variants */
.hero-section.bg-white {
    background: white;
}

.hero-section.bg-light {
    background: #f8f9fa;
}

.hero-section.bg-gradient-blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-section.bg-gradient-blue h1,
.hero-section.bg-gradient-blue p {
    color: white;
}

.hero-section.bg-gradient-sunset {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.hero-section.bg-gradient-sunset h1,
.hero-section.bg-gradient-sunset p {
    color: white;
}

.hero-section.bg-gradient-ocean {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.hero-section.bg-gradient-ocean h1,
.hero-section.bg-gradient-ocean p {
    color: white;
}

.hero-section.bg-gradient-forest {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.hero-section.bg-gradient-forest h1,
.hero-section.bg-gradient-forest p {
    color: white;
}

/* Trust Badges */
.trust-badges {
    background: #f8f9fa;
}

.trust-badges h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #6c757d;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.logo-item {
    height: 60px;
    opacity: 0.7;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

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

/* Benefits Section */
.benefits-section {
    background: white;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: start;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #6c757d;
    line-height: 1.7;
}

/* Process Steps */
.process-section {
    background: #f8f9fa;
}

.process-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}


.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #6c757d;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
    background: white;
    text-align: center;
}

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

.testimonial-quote {
    font-size: 1.75rem;
    font-style: italic;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 700;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.testimonial-company {
    color: var(--primary-color);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.2s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Footer */
.footer-section {
    background: #343a40;
    color: white;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    margin: 0 auto 20px auto;
}

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

.footer-text {
    color: #adb5bd;
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #495057;
    color: #adb5bd;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .brand-logo {
        height: 35px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .benefits-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logos-grid {
        gap: 30px;
    }
    
    .logo-item {
        height: 50px;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
    }
    
    .process-step {
        padding: 30px 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Call-to-Action Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 15px 30px;
}

.cta-section .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Preview Mode Classes - Force mobile styles for preview */
.preview-mobile .navbar-menu {
    display: none;
}

.preview-mobile .mobile-menu-toggle {
    display: flex;
}

.preview-mobile .brand-logo {
    height: 35px;
}

.preview-mobile .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}

.preview-mobile .hero-content {
    text-align: center;
}

.preview-mobile .hero-section h1 {
    font-size: 2.5rem;
}

.preview-mobile .hero-section p {
    font-size: 1.1rem;
}

.preview-mobile .hero-img {
    height: 300px;
}

.preview-mobile .benefits-grid,
.preview-mobile .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
}

.preview-mobile .logos-grid {
    gap: 30px;
}

.preview-mobile .logo-item {
    height: 50px;
}

.preview-mobile .testimonial-quote {
    font-size: 1.5rem;
}

.preview-mobile .process-step {
    padding: 30px 15px;
}

.preview-mobile .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.preview-mobile .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

/* Preview Tablet Mode */
.preview-tablet .benefits-grid,
.preview-tablet .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.preview-tablet .hero-grid {
    gap: 40px;
}

.preview-tablet .logos-grid {
    gap: 35px;
}
