/**
 * NusaVertical Dealer - Vertical Specific Styles
 * 
 * Beautiful, responsive design for Dealer Mobil vertical
 *
 * @package NusaVertical\NusaVertical Dealer
 */

/* ================================================================
   CSS VARIABLES - DEALER MOBIL PALETTE
   ================================================================ */
:root {
    --nv-primary: #dc2626;
    --nv-primary-dark: #b91c1c;
    --nv-primary-light: #f87171;
    --nv-primary-bg: #fef2f2;
    --nv-secondary: #1e293b;
    --nv-accent: #f59e0b;

    /* Typography */
    --nv-font-heading: 'Montserrat', sans-serif;
    --nv-font-body: 'Inter', sans-serif;

    /* Gradients */
    --nv-gradient-primary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --nv-gradient-light: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
    --nv-gradient-hero: linear-gradient(135deg, #b91c1c 0%, #dc2626 50%, #f87171 100%);

    /* Shadows */
    --nv-shadow-glow: 0 0 40px #dc262633;
    --nv-shadow-card: 0 4px 24px #dc262615;
    --nv-shadow-hover: 0 12px 40px #dc262625;
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
body {
    font-family: var(--nv-font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--nv-font-heading);
}

/* ================================================================
   HERO SECTIONS
   ================================================================ */

/* Hero Badge */
.nv-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #dc262622;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.nv-hero-tagline {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

.nv-btn-outline-white {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.nv-btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* Split Hero */
.nv-hero-split-section {
    background: var(--nv-gradient-light);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

.nv-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.nv-hero-split-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--nv-gray-900);
}

.nv-hero-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-hero-visual-card {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--nv-shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.nv-hero-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--nv-shadow-hover);
}

.nv-hero-visual-card-1 {
    top: 10%;
    left: 5%;
    z-index: 3;
}

.nv-hero-visual-card-2 {
    top: 40%;
    right: 10%;
    z-index: 2;
}

.nv-hero-visual-card-3 {
    bottom: 10%;
    left: 20%;
    z-index: 1;
}

.nv-hero-visual-icon {
    font-size: 2.5rem;
}

.nv-hero-visual-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nv-gray-700);
}

.nv-hero-visual-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, #dc262622 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Overlay Hero */
.nv-hero-overlay {
    position: relative;
    background: var(--nv-gradient-hero);
    color: #fff;
    padding: 6rem 0 5rem;
    overflow: hidden;
    text-align: center;
}

.nv-hero-overlay-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.nv-hero-overlay h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.nv-hero-overlay .nv-hero-badge {
    background: rgba(255,255,255,0.2);
    color: #fff;
    backdrop-filter: blur(4px);
}

.nv-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    color: #fff;
    line-height: 0;
}

.nv-hero-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* Centered Hero */
.nv-hero-centered {
    position: relative;
    background: var(--nv-gradient-light);
    padding: 5rem 0 4rem;
    overflow: hidden;
    text-align: center;
}

.nv-hero-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#dc262611 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.5;
}

.nv-hero-centered h1 {
    font-size: 3.5rem;
    color: var(--nv-gray-900);
    margin-bottom: 1rem;
}

.nv-hero-centered .nv-hero-badge {
    background: #dc262622;
    color: #dc2626;
}

.nv-hero-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.nv-hero-stat-item {
    text-align: center;
}

.nv-hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    font-family: var(--nv-font-heading);
}

.nv-hero-stat-label {
    font-size: 0.875rem;
    color: var(--nv-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Default gradient hero */
.nv-home-hero:not(.nv-hero-split-section):not(.nv-hero-overlay):not(.nv-hero-centered) {
    background: var(--nv-gradient-hero);
    color: #fff;
    padding: 5rem 0;
}

.nv-home-hero:not(.nv-hero-split-section):not(.nv-hero-overlay):not(.nv-hero-centered) h1 {
    color: #fff;
    font-size: 3.5rem;
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.nv-section-header {
    margin-bottom: 3rem;
}

.nv-section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.nv-section-header p {
    color: var(--nv-gray-500);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.nv-section-eyebrow {
    display: inline-block;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.nv-section-eyebrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #dc2626;
    border-radius: 2px;
}

/* ================================================================
   FEATURES
   ================================================================ */
.nv-feature-item {
    position: relative;
    overflow: hidden;
}

.nv-feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--nv-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nv-feature-item:hover::before {
    transform: scaleX(1);
}

.nv-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 1.25rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.nv-feature-item:hover .nv-feature-icon {
    background: var(--nv-gradient-primary);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--nv-shadow-glow);
}

/* ================================================================
   STATS / COUNTER
   ================================================================ */
.nv-stats-counter {
    background: var(--nv-gradient-primary);
    color: #fff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.nv-stats-counter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.nv-stats-counter .nv-stat-item {
    position: relative;
    z-index: 1;
}

.nv-stats-counter .nv-stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--nv-font-heading);
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.nv-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.nv-about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.nv-about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--nv-gray-700);
}

.nv-check-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.nv-about-visual {
    position: relative;
    min-height: 350px;
}

.nv-about-card {
    position: absolute;
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--nv-shadow-card);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.nv-about-card-main {
    top: 10%;
    left: 10%;
    width: 60%;
    z-index: 2;
}

.nv-about-card-float {
    bottom: 15%;
    right: 5%;
    width: 50%;
    text-align: center;
    z-index: 1;
    background: var(--nv-gradient-primary);
    color: #fff;
}

.nv-about-card-stat {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.nv-about-card-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.nv-about-card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.nv-about-card h3 {
    margin-bottom: 0.5rem;
}

.nv-about-card p {
    font-size: 0.875rem;
    color: var(--nv-gray-500);
    margin-bottom: 0;
}

/* ================================================================
   PROGRAMS (Timeline-style)
   ================================================================ */
.nv-programs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nv-program-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    box-shadow: var(--nv-shadow-sm);
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

.nv-program-item:hover {
    box-shadow: var(--nv-shadow-hover);
    transform: translateX(4px);
}

.nv-program-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc262633;
    font-family: var(--nv-font-heading);
    transition: color 0.3s ease;
}

.nv-program-item:hover .nv-program-number {
    color: #dc2626;
}

.nv-program-content h3 {
    margin-bottom: 0.25rem;
}

.nv-program-content p {
    color: var(--nv-gray-500);
    margin-bottom: 0;
    font-size: 0.875rem;
}

.nv-program-icon {
    font-size: 2rem;
}

/* ================================================================
   PRICING CARDS
   ================================================================ */
.nv-pricing-card {
    position: relative;
    background: #fff;
    border: 2px solid var(--nv-gray-200);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.nv-pricing-card:hover {
    border-color: #dc2626;
    box-shadow: var(--nv-shadow-hover);
    transform: translateY(-4px);
}

.nv-pricing-popular {
    border-color: #dc2626;
    background: var(--nv-gradient-light);
    transform: scale(1.05);
}

.nv-pricing-popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.nv-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nv-gradient-primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nv-pricing-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--nv-gray-900);
}

.nv-pricing-price {
    margin-bottom: 1.5rem;
}

.nv-pricing-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    font-family: var(--nv-font-heading);
}

.nv-pricing-period {
    font-size: 0.875rem;
    color: var(--nv-gray-500);
}

.nv-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.nv-pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--nv-gray-600);
    border-bottom: 1px solid var(--nv-gray-100);
}

.nv-pricing-features li:last-child {
    border-bottom: none;
}

.nv-btn-block {
    display: flex;
    width: 100%;
}

/* ================================================================
   TEAM CARDS
   ================================================================ */
.nv-team-card {
    text-align: center;
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: var(--nv-shadow-sm);
    border: 1px solid var(--nv-gray-200);
    transition: all 0.3s ease;
}

.nv-team-card:hover {
    box-shadow: var(--nv-shadow-hover);
    transform: translateY(-4px);
}

.nv-team-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--nv-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--nv-font-heading);
    box-shadow: 0 4px 20px #dc262640;
}

.nv-team-role {
    display: block;
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.nv-team-desc {
    color: var(--nv-gray-500);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ================================================================
   MENU (Restoran)
   ================================================================ */
.nv-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.nv-menu-category h3 {
    color: #dc2626;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc262633;
}

.nv-menu-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px dashed var(--nv-gray-200);
}

.nv-menu-info {
    flex: 1;
}

.nv-menu-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.nv-menu-desc {
    font-size: 0.875rem;
    color: var(--nv-gray-500);
    margin-bottom: 0;
}

.nv-menu-dots {
    flex: 1;
    border-bottom: 2px dotted var(--nv-gray-300);
    margin: 0 0.5rem;
    transform: translateY(-4px);
}

.nv-menu-price {
    font-weight: 700;
    color: #dc2626;
    font-family: var(--nv-font-heading);
    white-space: nowrap;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.nv-testimonials-section {
    background: var(--nv-gray-50);
}

.nv-testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--nv-shadow-sm);
    border: 1px solid var(--nv-gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.nv-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-size: 4rem;
    color: #dc262622;
    font-family: Georgia, serif;
    line-height: 1;
}

.nv-testimonial-card:hover {
    box-shadow: var(--nv-shadow-hover);
    transform: translateY(-2px);
}

.nv-testimonial-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.nv-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--nv-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* ================================================================
   GALLERY
   ================================================================ */
.nv-gallery-section {
    background: var(--nv-gray-50);
}

.nv-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.nv-gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.nv-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nv-gallery-item:hover img {
    transform: scale(1.1);
}

.nv-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #b91c1ccc, transparent);
    color: #fff;
    padding: 1.5rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nv-gallery-item:hover .nv-gallery-overlay {
    opacity: 1;
}

.nv-gallery-overlay h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}

.nv-gallery-placeholder {
    background: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nv-gallery-placeholder-inner {
    font-size: 3rem;
    opacity: 0.3;
}

/* ================================================================
   SCHEDULE / TIMELINE
   ================================================================ */
.nv-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.nv-schedule-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--nv-shadow-sm);
    border-left: 4px solid #dc2626;
    transition: all 0.3s ease;
}

.nv-schedule-item:hover {
    box-shadow: var(--nv-shadow-md);
    transform: translateX(4px);
}

.nv-schedule-date {
    text-align: center;
    min-width: 60px;
}

.nv-schedule-day {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #dc2626;
    font-family: var(--nv-font-heading);
    line-height: 1;
}

.nv-schedule-month {
    font-size: 0.75rem;
    color: var(--nv-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nv-schedule-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.nv-schedule-content h4 a {
    color: var(--nv-gray-900);
}

.nv-schedule-content p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--nv-gray-500);
}

.nv-schedule-arrow {
    color: #dc2626;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.nv-schedule-item:hover .nv-schedule-arrow {
    transform: translateX(4px);
}

/* ================================================================
   CATALOG / PRODUCTS
   ================================================================ */
.nv-catalog-card {
    height: 100%;
}

.nv-card-image-placeholder {
    background: var(--nv-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.3;
}

/* ================================================================
   CTA SECTION
   ================================================================ */
.nv-cta-section {
    position: relative;
    background: var(--nv-gradient-primary);
    overflow: hidden;
    padding: 4rem 0;
}

.nv-cta-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.nv-cta-section .nv-container {
    position: relative;
    z-index: 1;
}

.nv-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ================================================================
   BUTTONS ENHANCEMENT
   ================================================================ */
.nv-btn-primary {
    background: var(--nv-gradient-primary);
    border: none;
    box-shadow: 0 2px 8px #dc262633;
}

.nv-btn-primary:hover {
    box-shadow: 0 4px 16px #dc262655;
    transform: translateY(-1px);
}

.nv-btn-outline {
    color: #dc2626;
    border-color: #dc2626;
}

.nv-btn-outline:hover {
    background: #dc2626;
    border-color: #dc2626;
}

/* ================================================================
   NAVIGATION ENHANCEMENT
   ================================================================ */
.nv-nav a:hover,
.nv-nav .current-menu-item a {
    color: #dc2626;
    background: #fef2f2;
}

/* ================================================================
   CARDS ENHANCEMENT
   ================================================================ */
.nv-card {
    border-radius: 1rem;
}

.nv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--nv-shadow-hover);
}

.nv-card-badge {
    background: #fef2f2;
    color: #dc2626;
}

/* ================================================================
   FOOTER ENHANCEMENT
   ================================================================ */
.nv-footer-social a:hover {
    background: #dc2626;
}

/* ================================================================
   GUTENBERG BLOCKS
   ================================================================ */
.wp-block-button__link {
    background: #dc2626;
}

.wp-block-button__link:hover {
    background: #b91c1c;
}

blockquote {
    border-left-color: #dc2626;
}

.nv-widget-title {
    border-bottom-color: #dc2626;
}

/* ================================================================
   PAGE HEADER
   ================================================================ */
.nv-page-header {
    background: var(--nv-gradient-primary);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .nv-hero-split {
        grid-template-columns: 1fr;
    }

    .nv-hero-visual {
        display: none;
    }

    .nv-about-grid {
        grid-template-columns: 1fr;
    }

    .nv-menu-grid {
        grid-template-columns: 1fr;
    }

    .nv-pricing-popular {
        transform: scale(1);
    }

    .nv-hero-split-section h1,
    .nv-hero-overlay h1,
    .nv-hero-centered h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nv-hero-split-section,
    .nv-hero-overlay,
    .nv-hero-centered {
        padding: 3rem 0;
    }

    .nv-hero-split-section h1,
    .nv-hero-overlay h1,
    .nv-hero-centered h1 {
        font-size: 2rem;
    }

    .nv-hero-stats-bar {
        gap: 1.5rem;
    }

    .nv-hero-stat-number {
        font-size: 1.75rem;
    }

    .nv-section-header h2 {
        font-size: 1.75rem;
    }

    .nv-stats-counter .nv-stat-number {
        font-size: 2rem;
    }

    .nv-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nv-program-item {
        grid-template-columns: auto 1fr;
    }

    .nv-program-icon {
        display: none;
    }

    .nv-schedule-item {
        grid-template-columns: auto 1fr;
    }

    .nv-schedule-arrow {
        display: none;
    }

    .nv-cta-actions {
        flex-direction: column;
    }

    .nv-cta-actions .nv-btn {
        width: 100%;
    }

    .nv-menu-item {
        flex-wrap: wrap;
    }

    .nv-menu-dots {
        display: none;
    }

    .nv-home-hero-actions {
        flex-direction: column;
    }

    .nv-home-hero-actions .nv-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nv-gallery-grid {
        grid-template-columns: 1fr;
    }

    .nv-hero-visual-card {
        padding: 1rem;
    }

    .nv-hero-visual-icon {
        font-size: 1.5rem;
    }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes nv-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes nv-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nv-feature-item,
.nv-team-card,
.nv-pricing-card,
.nv-testimonial-card {
    animation: nv-fade-in-up 0.6s ease-out;
}

.nv-hero-visual-card-1 { animation: nv-float 4s ease-in-out infinite; }
.nv-hero-visual-card-2 { animation: nv-float 5s ease-in-out infinite 0.5s; }
.nv-hero-visual-card-3 { animation: nv-float 4.5s ease-in-out infinite 1s; }

/* Scroll reveal */
@media (prefers-reduced-motion: no-preference) {
    .nv-feature-item,
    .nv-card,
    .nv-team-card,
    .nv-pricing-card,
    .nv-testimonial-card,
    .nv-program-item,
    .nv-schedule-item {
        opacity: 0;
        animation: nv-fade-in-up 0.6s ease-out forwards;
    }

    .nv-feature-item:nth-child(1) { animation-delay: 0.1s; }
    .nv-feature-item:nth-child(2) { animation-delay: 0.2s; }
    .nv-feature-item:nth-child(3) { animation-delay: 0.3s; }
    .nv-feature-item:nth-child(4) { animation-delay: 0.4s; }
    .nv-feature-item:nth-child(5) { animation-delay: 0.5s; }
    .nv-feature-item:nth-child(6) { animation-delay: 0.6s; }
}

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--nv-gray-100);
}

::-webkit-scrollbar-thumb {
    background: #dc262655;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #dc2626;
}
