/**
 * All2Design.in — Master Custom CSS System (Clean White Professional Theme)
 * Brand Colors: Deep Slate Navy (#0F384C) & Bright Turquoise/Cyan (#00C4CC)
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-body: #FFFFFF;
    --bg-surface: #F8FAFC;
    --bg-surface-alt: #F1F5F9;
    --bg-card: #FFFFFF;
    --bg-dark-accent: #0F384C;

    --text-main: #0F384C;
    --text-heading: #0F384C;
    --text-muted: #64748B;
    --text-subtle: #94A3B8;

    --brand-navy: #0F384C;
    --brand-cyan: #00C4CC;
    --brand-cyan-hover: #00A3AA;
    --brand-blue-accent: #0284C7;

    --border-light: #E2E8F0;
    --border-hover: #00C4CC;

    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    --shadow-sm: 0 2px 8px rgba(15, 56, 76, 0.05);
    --shadow-md: 0 10px 30px rgba(15, 56, 76, 0.08);
    --shadow-glow: 0 10px 40px rgba(0, 196, 204, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--brand-navy);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--brand-cyan);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.text-cyan {
    color: var(--brand-cyan) !important;
}

.text-navy {
    color: var(--brand-navy) !important;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheading-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 196, 204, 0.1);
    border: 1px solid rgba(0, 196, 204, 0.3);
    border-radius: 99px;
    color: var(--brand-navy);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

/* Button System */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, #00A3AA 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 196, 204, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 196, 204, 0.5);
    color: #FFFFFF !important;
}

.btn-navy-custom {
    background: var(--brand-navy);
    color: #FFFFFF !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: 0 4px 15px rgba(15, 56, 76, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-navy-custom:hover {
    transform: translateY(-2px);
    background: #0B2533;
    color: #FFFFFF !important;
}

.btn-outline-custom {
    background: transparent;
    color: var(--brand-navy) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan) !important;
    background: rgba(0, 196, 204, 0.05);
}

/* Top Notification Bar */
.top-strip {
    background: var(--brand-navy);
    color: #FFFFFF;
    padding: 8px 0;
    font-size: 0.85rem;
}

/* Sticky Navbar */
.navbar-custom {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-link-custom {
    color: var(--brand-navy) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--brand-cyan) !important;
}

/* Card System */
.custom-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.custom-card:hover {
    border-color: var(--brand-cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box-cyan {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 196, 204, 0.12);
    border: 1px solid rgba(0, 196, 204, 0.3);
    color: var(--brand-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.icon-box-navy {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(15, 56, 76, 0.08);
    border: 1px solid rgba(15, 56, 76, 0.15);
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Growth Engine Section */
.engine-step-card {
    position: relative;
    padding: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.engine-step-card:hover {
    border-color: var(--brand-cyan);
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
}

.engine-step-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-cyan);
    margin-bottom: 10px;
}

/* Multi-Step Digital Audit Form */
.audit-form-container {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.step-pill {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-pill.active {
    background: var(--brand-cyan);
    color: #FFFFFF;
    border-color: var(--brand-cyan);
}

.custom-input {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    width: 100%;
}

.custom-input:focus {
    outline: none;
    border-color: var(--brand-cyan);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 196, 204, 0.15);
}

/* Mobile Sticky Bar */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid var(--border-light);
    z-index: 1090;
    padding: 10px 16px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .sticky-mobile-bar {
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }
}

/* Scroll Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
