/* ==========================================================================
   ON HOLD MEDIA GROUP - HOME NEW (MODERN ADVERTISING AGENCY THEME)
   Clean, Sleek, Premium Aesthetic with Full Light / Dark Mode Support
   ========================================================================== */

:root {
    --hn-primary: #2563eb;
    --hn-primary-hover: #1d4ed8;
    --hn-primary-subtle: rgba(37, 99, 235, 0.08);
    --hn-secondary: #0ea5e9;
    --hn-accent: #f59e0b;
    --hn-success: #10b981;
    --hn-dark-bg: #0b132b;
    --hn-card-bg: #ffffff;
    --hn-card-border: rgba(226, 232, 240, 0.8);
    --hn-text-primary: #0f172a;
    --hn-text-muted: #64748b;
    --hn-hero-gradient: linear-gradient(135deg, #0b132b 0%, #1c2541 60%, #1e3a8a 100%);
    --hn-card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --hn-card-shadow-hover: 0 20px 30px -10px rgba(37, 99, 235, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
    --hn-radius-sm: 8px;
    --hn-radius-md: 14px;
    --hn-radius-lg: 20px;
    --hn-radius-pill: 9999px;
}

[data-bs-theme="dark"] {
    --hn-primary: #3b82f6;
    --hn-primary-hover: #60a5fa;
    --hn-primary-subtle: rgba(59, 130, 246, 0.15);
    --hn-secondary: #38bdf8;
    --hn-card-bg: #1e293b;
    --hn-card-border: rgba(51, 65, 85, 0.8);
    --hn-text-primary: #f8fafc;
    --hn-text-muted: #94a3b8;
    --hn-card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    --hn-card-shadow-hover: 0 20px 30px -10px rgba(59, 130, 246, 0.25);
}

/* Typography & Base */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--hn-text-primary);
    background-color: var(--bs-body-bg, #f8fafc);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--hn-text-primary);
}

a {
    color: var(--hn-primary);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    color: var(--hn-primary-hover);
}

/* Modern Sticky Navbar */
.hn-navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hn-card-border);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

[data-bs-theme="dark"] .hn-navbar {
    background: rgba(15, 23, 42, 0.9) !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.hn-navbar-brand img {
    height: 48px;
    width: auto;
    transition: transform 0.2s ease;
}

.hn-navbar-brand:hover img {
    transform: scale(1.02);
}

.hn-nav-link {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--hn-text-primary) !important;
    padding: 0.5rem 0.85rem !important;
    border-radius: var(--hn-radius-sm);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.hn-nav-link i {
    font-size: 0.9rem;
    color: var(--hn-primary);
    opacity: 0.85;
}

.hn-nav-link:hover,
.hn-nav-link.active {
    color: var(--hn-primary) !important;
    background-color: var(--hn-primary-subtle);
}

.hn-dropdown-menu {
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-md);
    box-shadow: var(--hn-card-shadow);
    padding: 0.5rem;
    min-width: 230px;
    background-color: var(--hn-card-bg);
}

.hn-dropdown-item {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.55rem 0.85rem;
    border-radius: var(--hn-radius-sm);
    color: var(--hn-text-primary);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.15s ease;
}

.hn-dropdown-item i {
    width: 18px;
    color: var(--hn-primary);
}

.hn-dropdown-item:hover,
.hn-dropdown-item.active {
    background-color: var(--hn-primary-subtle);
    color: var(--hn-primary);
}

/* Theme Toggle Button */
.hn-theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: var(--hn-radius-pill);
    border: 1px solid var(--hn-card-border);
    background: transparent;
    color: var(--hn-text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hn-theme-toggle:hover {
    background-color: var(--hn-primary-subtle);
    color: var(--hn-primary);
    border-color: var(--hn-primary);
}

/* Modern Sleek Hero Section */
.hn-hero {
    background: var(--hn-hero-gradient);
    color: #ffffff;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hn-hero::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hn-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #38bdf8;
    padding: 0.4rem 1rem;
    border-radius: var(--hn-radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hn-hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.hn-hero-title .text-gradient {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hn-hero-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(241, 245, 249, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hn-hero-video-wrapper {
    position: relative;
    border-radius: var(--hn-radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #000;
}

.hn-hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--hn-radius-lg);
}

/* Sleek Cards */
.hn-card {
    background-color: var(--hn-card-bg);
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-md);
    box-shadow: var(--hn-card-shadow);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.hn-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hn-card-shadow-hover);
    border-color: rgba(37, 99, 235, 0.3);
}

.hn-card-header {
    background: transparent;
    border-bottom: 1px solid var(--hn-card-border);
    padding: 1.25rem 1.5rem;
    font-weight: 700;
}

.hn-card-body {
    padding: 1.5rem;
}

/* Stat Cards */
.hn-stat-card {
    background: var(--hn-card-bg);
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    box-shadow: var(--hn-card-shadow);
}

.hn-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--hn-primary);
    box-shadow: var(--hn-card-shadow-hover);
}

.hn-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--hn-radius-md);
    background: var(--hn-primary-subtle);
    color: var(--hn-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.hn-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--hn-text-primary);
    margin-bottom: 0.35rem;
}

.hn-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--hn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Pillars */
.hn-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--hn-radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.hn-icon-blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.hn-icon-cyan { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }
.hn-icon-amber { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.hn-icon-emerald { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.hn-icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }

/* Testimonials Carousel */
.hn-testimonial-card {
    background: var(--hn-card-bg);
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--hn-card-shadow);
    position: relative;
}

.hn-testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--hn-text-primary);
    margin-bottom: 1.5rem;
}

.hn-testimonial-author {
    font-weight: 700;
    color: var(--hn-text-primary);
    margin-bottom: 0.15rem;
}

.hn-testimonial-company {
    font-size: 0.875rem;
    color: var(--hn-text-muted);
}

.hn-stars {
    color: #fbbf24;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Voice Talent Roster */
.hn-vt-card {
    background: var(--hn-card-bg);
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--hn-card-shadow);
    transition: all 0.25s ease;
}

.hn-vt-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hn-card-shadow-hover);
    border-color: var(--hn-primary);
}

.hn-vt-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    border: 4px solid var(--hn-card-bg);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.hn-audio-player {
    width: 100%;
    margin: 1rem 0;
    border-radius: var(--hn-radius-pill);
}

/* Pricing / Packages */
.hn-pricing-card {
    background: var(--hn-card-bg);
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-lg);
    padding: 2.25rem 2rem;
    position: relative;
    box-shadow: var(--hn-card-shadow);
    transition: all 0.25s ease;
}

.hn-pricing-card.featured {
    border-color: var(--hn-primary);
    box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.2);
    transform: scale(1.02);
}

.hn-pricing-card.featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.hn-pricing-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--hn-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: var(--hn-radius-pill);
    letter-spacing: 0.05em;
}

.hn-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--hn-text-primary);
    line-height: 1;
    margin: 1.25rem 0;
}

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

.hn-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.hn-feature-list li {
    padding: 0.45rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--hn-text-primary);
}

.hn-feature-list li i {
    color: var(--hn-success);
    font-size: 0.9rem;
}

/* ROI / My Numbers Calculator */
.hn-calc-box {
    background: var(--hn-card-bg);
    border: 1px solid var(--hn-card-border);
    border-radius: var(--hn-radius-lg);
    padding: 2rem;
    box-shadow: var(--hn-card-shadow);
}

.hn-calc-result-box {
    background: linear-gradient(135deg, #0b132b 0%, #1e3a8a 100%);
    color: #ffffff;
    border-radius: var(--hn-radius-md);
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(11, 19, 43, 0.3);
}

.hn-calc-result-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1.1;
}

/* Forms & Inputs */
.hn-form-control,
.form-control,
.form-select {
    border-radius: var(--hn-radius-sm);
    border: 1px solid var(--hn-card-border);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    background-color: var(--hn-card-bg);
    color: var(--hn-text-primary);
    transition: all 0.2s ease;
}

.hn-form-control:focus,
.form-control:focus,
.form-select:focus {
    border-color: var(--hn-primary);
    box-shadow: 0 0 0 3px var(--hn-primary-subtle);
    background-color: var(--hn-card-bg);
    color: var(--hn-text-primary);
}

/* Buttons */
.btn-hn-primary {
    background-color: var(--hn-primary);
    border-color: var(--hn-primary);
    color: #ffffff;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: var(--hn-radius-sm);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-hn-primary:hover {
    background-color: var(--hn-primary-hover);
    border-color: var(--hn-primary-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

.btn-hn-outline {
    background: transparent;
    border: 1.5px solid var(--hn-card-border);
    color: var(--hn-text-primary);
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: var(--hn-radius-sm);
    transition: all 0.2s ease;
}

.btn-hn-outline:hover {
    border-color: var(--hn-primary);
    color: var(--hn-primary);
    background-color: var(--hn-primary-subtle);
}

/* Modern Footer */
.hn-footer {
    background-color: #0b132b;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hn-footer a {
    color: #94a3b8;
    transition: all 0.2s ease;
}

.hn-footer a:hover {
    color: #38bdf8;
    padding-left: 3px;
}

.hn-footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.hn-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hn-footer-links li {
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
}

.hn-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.hn-social-btn:hover {
    background: var(--hn-primary);
    color: #ffffff !important;
    transform: translateY(-2px);
    padding-left: 0 !important;
}

/* Callouts & Highlights */
.hn-callout {
    border-left: 4px solid var(--hn-primary);
    background: var(--hn-primary-subtle);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--hn-radius-sm) var(--hn-radius-sm) 0;
    margin: 1.5rem 0;
}

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

.hn-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}
