/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */

/* Register page: hide login column, center registration form */
.page-id-393 .col2-set .col-1 {
    display: none !important;
}
.page-id-393 .col2-set {
    display: flex !important;
    justify-content: center !important;
}
.page-id-393 .col2-set .col-2 {
    width: 100% !important;
    max-width: 480px !important;
    float: none !important;
    padding: 0 !important;
}
.page-id-393 .col2-set .col-2 h2 {
    display: none;
}
/* =========================================
   HOMEPAGE LIGHT 2 (page-id-73) — FileDAS Landing
   ========================================= */

/* Hide the default page title */
.page-id-73 .fl-post-header,
.page-id-73 .entry-title,
.page-id-73 header.article-header,
.page-id-73 .page-header,
.page-id-73 .fl-post-title,
.page-id-73 h1.fl-post-title,
.page-id-73 .fl-page-header,
.page-id-73 .fl-page-header-row,
.page-id-73 .post-edit-link {
    display: none !important;
}

/* Full-width override */
.page-id-73 .fl-content,
.page-id-73 .container,
.page-id-73 .fl-page-content {
    max-width: 100% !important;
    padding: 0 !important;
    width: 100% !important;
}

.page-id-73 .fl-content-full,
.page-id-73 .row {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ── CSS Variables ─────────────────────────────── */
.dasaf-home-light {
    --dhl-bg-dark: #f1f5f9;
    --dhl-bg-darker: #f8fafc;
    --dhl-bg-panel: rgba(255, 255, 255, 0.9);
    --dhl-primary: #ea580c;
    --dhl-primary-hover: #c2410c;
    --dhl-secondary: #2563eb;
    --dhl-accent: #059669;
    --dhl-text-main: #0f172a;
    --dhl-text-muted: #475569;
    --dhl-border: rgba(0, 0, 0, 0.1);
    --dhl-font-heading: 'Outfit', sans-serif;
    --dhl-font-body: 'Inter', sans-serif;
    --dhl-transition-fast: 0.15s ease-out;
    --dhl-transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dhl-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --dhl-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
    --dhl-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --dhl-glow-primary: 0 0 20px rgba(234, 88, 12, 0.2);
}

/* ── Base Styles ───────────────────────────────── */
.dasaf-home-light {
    font-family: var(--dhl-font-body);
    background-color: var(--dhl-bg-darker);
    color: var(--dhl-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.dasaf-home-light *,
.dasaf-home-light *::before,
.dasaf-home-light *::after {
    box-sizing: border-box;
}

.dasaf-home-light h1,
.dasaf-home-light h2,
.dasaf-home-light h3,
.dasaf-home-light h4,
.dasaf-home-light h5,
.dasaf-home-light h6 {
    font-family: var(--dhl-font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dhl-text-main);
}

.dasaf-home-light p {
    color: var(--dhl-text-muted);
    margin-bottom: 1rem;
}

.dasaf-home-light a:not(.dhl-btn) {
    color: var(--dhl-primary);
    text-decoration: none;
    transition: color var(--dhl-transition-fast);
}

.dasaf-home-light a:not(.dhl-btn):hover {
    color: var(--dhl-text-main);
}

.dasaf-home-light img {
    max-width: 100%;
    display: block;
}

/* ── Layout Utilities ──────────────────────────── */
.dhl-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.dhl-section-padding {
    padding: 6rem 0;
}

.dhl-text-center {
    text-align: center;
}

.dhl-text-gradient {
    background: linear-gradient(135deg, var(--dhl-primary), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dhl-section-dark {
    background-color: var(--dhl-bg-dark);
}

/* ── Buttons ───────────────────────────────────── */
.dhl-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: var(--dhl-font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--dhl-transition-normal);
    border: none;
}

.dhl-btn-primary {
    background-color: var(--dhl-primary);
    color: #fff;
}

.dhl-btn-primary:hover {
    background-color: var(--dhl-primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--dhl-shadow-md);
    text-decoration: none;
}

.dhl-btn-secondary {
    background-color: transparent;
    border: 1px solid var(--dhl-border);
    color: var(--dhl-text-main);
}

.dhl-btn-secondary:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--dhl-text-main);
}

.dhl-btn-large { padding: 1rem 2rem; font-size: 1.125rem; }
.dhl-btn-small { padding: 0.5rem 1rem; font-size: 0.875rem; }
.dhl-btn-full { width: 100%; }

.dhl-glow-effect { box-shadow: var(--dhl-glow-primary); }
.dhl-glow-effect:hover { box-shadow: 0 0 30px rgba(234, 88, 12, 0.4); }

/* ── Cards ─────────────────────────────────────── */
.dhl-hover-lift {
    transition: transform var(--dhl-transition-normal), box-shadow var(--dhl-transition-normal);
}

.dhl-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--dhl-shadow-lg);
}

/* ── Header ────────────────────────────────────── */
.dhl-site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dhl-border);
    transition: padding var(--dhl-transition-normal);
}

.dhl-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dhl-logo-text {
    font-family: var(--dhl-font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dhl-text-main);
}

.dhl-logo-accent {
    color: var(--dhl-primary);
}

.dhl-main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dhl-main-nav a:not(.dhl-btn) {
    color: var(--dhl-text-muted);
    font-weight: 500;
}

.dhl-main-nav a:not(.dhl-btn):hover {
    color: var(--dhl-primary);
}

/* ── Hero ──────────────────────────────────────── */
.dhl-hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-image: url('https://testautodocs.dependentmedia.com/wp-content/uploads/hero-background-light.png');
    background-size: cover;
    background-position: center;
}

.dhl-hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0.7) 0%, rgba(248, 250, 252, 1) 100%);
    z-index: 1;
}

.dhl-hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dhl-hero-content {
    max-width: 600px;
}

.dhl-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--dhl-secondary);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.dhl-hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.dhl-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.dhl-hero-cta-group {
    display: flex;
    gap: 1rem;
}

.dhl-mockup-container {
    perspective: 1000px;
}

.dhl-floating {
    animation: dhl-float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes dhl-float {
    0% {
        transform: translateY(0px) rotateX(5deg) rotateY(-5deg);
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    }
    50% {
        transform: translateY(-20px) rotateX(8deg) rotateY(-3deg);
        filter: drop-shadow(0 20px 20px rgba(0, 0, 0, 0.15));
    }
    100% {
        transform: translateY(0px) rotateX(5deg) rotateY(-5deg);
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    }
}

/* ── Trust Bar ─────────────────────────────────── */
.dhl-trust-bar {
    background-color: var(--dhl-bg-dark);
    padding: 2rem 0;
    border-top: 1px solid var(--dhl-border);
    border-bottom: 1px solid var(--dhl-border);
}

.dhl-trust-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.dhl-trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--dhl-font-heading);
    font-weight: 600;
}

.dhl-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(234, 88, 12, 0.1);
    color: var(--dhl-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* ── Forms Grid ────────────────────────────────── */
.dhl-section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.dhl-section-header h2 {
    font-size: 2.5rem;
}

.dhl-forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dhl-form-card {
    background: var(--dhl-bg-panel);
    border: 1px solid var(--dhl-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dhl-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.dhl-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.dhl-card-subtitle {
    color: var(--dhl-primary);
    font-family: var(--dhl-font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ── How It Works ──────────────────────────────── */
.dhl-steps-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    position: relative;
}

.dhl-step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dhl-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dhl-primary), #fbbf24);
    color: #fff;
    font-family: var(--dhl-font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--dhl-glow-primary);
}

.dhl-step-content h3 {
    font-size: 1.25rem;
}

.dhl-step-connector {
    flex: 0 0 100px;
    height: 2px;
    background: var(--dhl-border);
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.dhl-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: var(--dhl-bg-panel);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--dhl-border);
}

.dhl-feature-item h4 {
    color: var(--dhl-text-main);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

/* ── Pricing ───────────────────────────────────── */
.dhl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.dhl-pricing-card {
    background: var(--dhl-bg-panel);
    border: 1px solid var(--dhl-border);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.dhl-pricing-card.dhl-highlighted {
    border-color: var(--dhl-primary);
    background: linear-gradient(to bottom, rgba(234, 88, 12, 0.05), var(--dhl-bg-panel));
}

.dhl-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dhl-primary);
    color: #fff;
    font-family: var(--dhl-font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 1rem;
    border-radius: 999px;
    box-shadow: var(--dhl-glow-primary);
}

.dhl-card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--dhl-border);
}

.dhl-card-header h3 {
    font-size: 1.25rem;
    color: var(--dhl-text-muted);
}

.dhl-price {
    font-family: var(--dhl-font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--dhl-text-main);
}

.dhl-price span {
    font-size: 1rem;
    color: var(--dhl-text-muted);
    font-weight: 500;
}

.dhl-features {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
    padding: 0;
}

.dhl-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dhl-features li span {
    color: var(--dhl-text-muted);
}

.dhl-features li span.dhl-accent-color {
    color: var(--dhl-primary);
}

.dhl-pricing-note {
    font-size: 0.875rem;
}

/* ── Footer ────────────────────────────────────── */
.dhl-site-footer {
    background-color: var(--dhl-bg-darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--dhl-border);
}

.dhl-footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.dhl-footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
}

.dhl-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dhl-link-group h4 {
    color: var(--dhl-text-main);
    margin-bottom: 1.5rem;
}

.dhl-link-group a {
    display: block;
    color: var(--dhl-text-muted);
    margin-bottom: 0.75rem;
}

.dhl-link-group a:hover {
    color: var(--dhl-text-main);
}

.dhl-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dhl-border);
    font-size: 0.875rem;
}

/* ── Scroll Animations ─────────────────────────── */
.dhl-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.dhl-fade-in-up.dhl-visible {
    opacity: 1;
    transform: translateY(0);
}

.dhl-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.dhl-scale-in.dhl-visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Responsive ────────────────────────────────── */
@media (max-width: 992px) {
    .dhl-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .dhl-hero-content {
        margin: 0 auto;
    }
    .dhl-hero-cta-group {
        justify-content: center;
    }
    .dhl-steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .dhl-step-connector {
        width: 2px;
        height: 50px;
        margin: 0;
    }
    .dhl-features-list {
        grid-template-columns: 1fr;
    }
    .dhl-footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .dhl-main-nav {
        display: none;
    }
    .dhl-hero h1 {
        font-size: 2.5rem;
    }
    .dhl-footer-links {
        grid-template-columns: 1fr;
    }
}

