/* ================================================================
   EasyProcess Website Styles
   Modern, professional payment platform design
   ================================================================ */

/* ----------------------------------------------------------------
   Cookie Banner Customization (tarteaucitron)
   ---------------------------------------------------------------- */
#tarteaucitronPrivacyUrl,
#tarteaucitronPrivacyUrlDialog {
    display: none !important;
}

/* ----------------------------------------------------------------
   CSS Variables
   ---------------------------------------------------------------- */
:root {
    --ep-primary: #43a7de;
    --ep-primary-dark: #2a8cc4;
    --ep-secondary: #293973;
    --ep-accent: #ffc107;
    --ep-success: #28a745;
    --ep-dark: #1a1a2e;
    --ep-light: #f8f9fa;
    --ep-gray: #6c757d;
    --ep-text: #515050;
    --ep-border: #dee2e6;
}

/* ----------------------------------------------------------------
   Navigation Enhancements
   ---------------------------------------------------------------- */
.nav-cta-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-cta-buttons .btn {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-cta-buttons .btn-outline-primary {
    border: 2px solid var(--ep-primary);
    color: var(--ep-primary);
    background: transparent;
}

.nav-cta-buttons .btn-outline-primary:hover {
    background: var(--ep-primary);
    color: #fff;
}

.nav-cta-buttons .btn-primary {
    background: var(--ep-primary);
    border: 2px solid var(--ep-primary);
    color: #fff;
}

.nav-cta-buttons .btn-primary:hover {
    background: var(--ep-primary-dark);
    border-color: var(--ep-primary-dark);
}

/* ----------------------------------------------------------------
   Hero Section
   ---------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--ep-secondary) 0%, var(--ep-dark) 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/files/easy-process/images/website/hero-bg.webp') center center no-repeat;
    background-size: cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.hero-section .lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
}

.hero-badge i {
    margin-right: 8px;
    color: var(--ep-success);
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.hero-cta .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-hero-primary {
    background: var(--ep-primary);
    color: #fff;
    border: none;
}

.btn-hero-primary:hover {
    background: var(--ep-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 167, 222, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

/* ----------------------------------------------------------------
   Trust Icons Row
   ---------------------------------------------------------------- */
.trust-section {
    padding: 60px 0;
    background: var(--ep-light);
}

.trust-item {
    text-align: center;
    padding: 20px;
}

.trust-item i {
    font-size: 40px;
    color: var(--ep-primary);
    margin-bottom: 15px;
}

.trust-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ep-secondary);
    margin-bottom: 5px;
}

.trust-item p {
    font-size: 14px;
    color: var(--ep-gray);
    margin: 0;
}

/* ----------------------------------------------------------------
   Value Pillars (3-up Grid)
   ---------------------------------------------------------------- */
.pillars-section {
    padding: 100px 0;
}

.pillar-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ep-primary), var(--ep-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pillar-icon i {
    font-size: 32px;
    color: #fff;
}

.pillar-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ep-secondary);
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ep-text);
}

/* Pillar Inline Layout - icon and title on same line */
.pillar-card.pillar-inline .pillar-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pillar-card.pillar-inline .pillar-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right: 20px;
    flex-shrink: 0;
}

.pillar-card.pillar-inline .pillar-icon i {
    font-size: 26px;
}

.pillar-card.pillar-inline h3 {
    margin-bottom: 0;
}

/* ----------------------------------------------------------------
   Feature Highlights (6-up Grid)
   ---------------------------------------------------------------- */
.features-section {
    padding: 100px 0;
    background: var(--ep-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--ep-secondary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--ep-gray);
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: rgba(67, 167, 222, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--ep-primary);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ep-secondary);
    margin-bottom: 10px;
}

/* Feature Inline Layout - icon and title on same line */
.feature-item.feature-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    height: 100%;
}

.feature-item.feature-inline .feature-icon {
    margin-bottom: 0;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-item.feature-inline h4 {
    flex: 1;
    margin-bottom: 0;
    line-height: 1.4;
    display: flex;
    align-items: center;
    min-height: 50px;
}

.feature-item.feature-inline p {
    flex-basis: 100%;
    margin-top: 15px;
}

/* Equal height feature rows */
.row.feature-row,
.features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.row.feature-row > [class*="col-"],
.features-section .row > [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.row.feature-row .feature-item,
.features-section .row .feature-item {
    height: 100%;
    width: 100%;
    margin-bottom: 0;
}

.feature-item p {
    font-size: 14px;
    color: var(--ep-text);
    margin: 0;
}

/* ----------------------------------------------------------------
   CTA Banner
   ---------------------------------------------------------------- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--ep-primary) 0%, var(--ep-primary-dark) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-section .btn {
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    background: #fff;
    color: var(--ep-primary);
    border: none;
}

.cta-section .btn:hover {
    background: var(--ep-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------------------------------------
   Page Header (Inner Pages)
   ---------------------------------------------------------------- */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--ep-secondary) 0%, var(--ep-dark) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/files/easy-process/images/website/hero-bg.webp') center center no-repeat;
    background-size: cover;
    opacity: 0.1;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header .lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ----------------------------------------------------------------
   Content Sections
   ---------------------------------------------------------------- */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: var(--ep-light);
}

.content-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ep-secondary);
    margin-bottom: 20px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--ep-secondary);
    margin-bottom: 15px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ep-text);
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--ep-text);
}

.content-section ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: var(--ep-success);
}

/* ----------------------------------------------------------------
   Solution Cards
   ---------------------------------------------------------------- */
.solution-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.solution-card-img {
    height: 200px;
    overflow: hidden;
}

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

.solution-card-body {
    padding: 30px;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ep-secondary);
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 15px;
    color: var(--ep-text);
    margin-bottom: 20px;
}

/* ----------------------------------------------------------------
   Pricing Section
   ---------------------------------------------------------------- */
.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ep-secondary);
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--ep-primary);
    margin-bottom: 10px;
}

.pricing-card .price span {
    font-size: 18px;
    color: var(--ep-gray);
}

.pricing-list {
    text-align: left;
    margin: 30px 0;
}

.pricing-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--ep-border);
}

/* ----------------------------------------------------------------
   FAQ Section
   ---------------------------------------------------------------- */
.faq-section {
    padding: 80px 0;
}

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

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--ep-secondary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--ep-light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 25px 20px;
    color: var(--ep-text);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ----------------------------------------------------------------
   Footer Styles
   ---------------------------------------------------------------- */
.footer-bg-dark {
    background: var(--ep-dark);
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--ep-primary);
    text-decoration: none;
}

.footer-links-inline li {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
}

.footer-trust-badges .badge {
    font-weight: 400;
    padding: 6px 12px;
}

.badge-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-copyright-text {
    font-size: 13px;
}

/* ----------------------------------------------------------------
   Developer Section
   ---------------------------------------------------------------- */
.code-block {
    background: #1e1e1e;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    color: #d4d4d4;
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 14px;
}

.api-endpoint {
    background: var(--ep-light);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.api-method {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    margin-right: 15px;
}

.api-method.get {
    background: #28a745;
    color: #fff;
}

.api-method.post {
    background: #007bff;
    color: #fff;
}

.api-path {
    font-family: monospace;
    color: var(--ep-secondary);
}

/* ----------------------------------------------------------------
   Responsive Styles
   ---------------------------------------------------------------- */
@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section .lead {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .nav-cta-buttons {
        display: none;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .pillars-section,
    .features-section,
    .content-section {
        padding: 60px 0;
    }
    
    .pillar-card {
        margin-bottom: 30px;
    }
    
    .footer-widget .row > div {
        margin-bottom: 30px;
    }
}

/* ----------------------------------------------------------------
   How It Works Section
   ---------------------------------------------------------------- */
.how-it-works {
    padding: 80px 0;
    background: var(--ep-light);
}

.step-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ep-primary);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ep-secondary);
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: var(--ep-text);
}

/* Arrow between steps */
.step-item::after {
    content: '\f061';
    font-family: 'FontAwesome';
    position: absolute;
    right: -15px;
    top: 50px;
    font-size: 24px;
    color: var(--ep-primary);
}

.step-item:last-child::after {
    display: none;
}

@media (max-width: 767px) {
    .step-item::after {
        display: none;
    }
}

/* ----------------------------------------------------------------
   Image with Text Sections
   ---------------------------------------------------------------- */
.img-text-section {
    padding: 80px 0;
}

.img-text-section img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.img-text-content {
    padding: 20px 0;
}

.img-text-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ep-secondary);
    margin-bottom: 20px;
}

.img-text-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ep-text);
    margin-bottom: 20px;
}

/* ----------------------------------------------------------------
   Payment Methods Grid
   ---------------------------------------------------------------- */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.payment-method {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 150px;
}

.payment-method i {
    font-size: 36px;
    color: var(--ep-primary);
    margin-bottom: 15px;
}

.payment-method h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ep-secondary);
    margin-bottom: 5px;
}

.payment-method p {
    font-size: 13px;
    color: var(--ep-gray);
    margin: 0;
}

/* ----------------------------------------------------------------
   Contact Form Section
   ---------------------------------------------------------------- */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ep-secondary);
}

.contact-form-wrapper label {
    font-weight: 600;
    color: var(--ep-secondary);
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper .form-control {
    border: 2px solid var(--ep-border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--ep-primary);
    box-shadow: 0 0 0 3px rgba(67, 167, 222, 0.15);
    outline: none;
}

.contact-form-wrapper .form-control::placeholder {
    color: #adb5bd;
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper .btn-primary {
    background: var(--ep-primary);
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
    background: var(--ep-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 167, 222, 0.3);
}

.contact-info-item .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(67, 167, 222, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .contact-icon i {
    font-size: 20px;
    color: var(--ep-primary);
}

.contact-info-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ep-secondary);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--ep-text);
    font-size: 15px;
}

.contact-info-item a {
    color: var(--ep-primary);
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Alert styles for contact form */
.contact-form-wrapper .alert {
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.contact-form-wrapper .alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.contact-form-wrapper .alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}
