/* Manubolu 3.0 — Component Styles (Clean Corporate) */

/* Card/Panel Component — No glassmorphism */
.glass-panel {
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-ios);
    box-shadow: var(--surface-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-3px);
    box-shadow: var(--surface-shadow-lg);
}

/* Sticky Navigation */
.glass-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--surface-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.glass-nav.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Buttons — Clean, professional */
.btn-ios {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-ios-primary {
    background: var(--primary-green);
    color: white;
}

.btn-ios-primary:hover {
    background: #166534;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 128, 61, 0.2);
}

.btn-ios-glass {
    background: var(--surface-white);
    border: 1px solid var(--surface-border);
    color: var(--text-dark);
}

.btn-ios-glass:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* Typography Helpers */
.text-gradient {
    color: var(--primary-dark);
    /* No gradient effect — solid colour for professionalism */
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Containers */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}