/* ========================================
   SKF Répar'Tel - New Design Theme
   Bootstrap 5 + Swiper + Font Awesome
   ======================================== */

/* ========================================
   CSS Variables & Base
======================================== */
:root {
    --orange: #ff7700;
    --orange-dark: #e66a00;
    --orange-light: #ff9933;
    --dark: #0d0d0d;
    --dark-card: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: rgba(255, 255, 255, 0.65);
    --gray-light: rgba(255, 255, 255, 0.4);
}

/* Note: Ne pas utiliser de reset * {} car Bootstrap gère les marges/paddings */
.theme-new *,
.theme-new *::before,
.theme-new *::after {
    box-sizing: border-box;
}

.theme-new {
    font-family: 'Manrope', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.theme-new a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-new a:hover {
    color: var(--orange);
}

.theme-new img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Typography
======================================== */
.theme-new h1, .theme-new h2, .theme-new h3, .theme-new h4, .theme-new h5, .theme-new h6 {
    font-weight: 700;
    line-height: 1.2;
}

.theme-new .text-orange {
    color: var(--orange) !important;
}

.theme-new .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.theme-new .section-subtitle {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.theme-new .sep-line {
    width: 80px;
    height: 3px;
    background: var(--orange);
    margin: 1rem auto 1.5rem;
}

/* ========================================
   Buttons
======================================== */
.theme-new .btn-orange {
    background: var(--orange);
    color: var(--dark);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--orange);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.theme-new .btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.theme-new .btn-outline-light {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.theme-new .btn-outline-light:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255, 119, 0, 0.1);
}

/* ========================================
   Navbar
======================================== */
.theme-new .navbar-custom {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 119, 0, 0.1);
}

.theme-new .navbar-brand img {
    height: 50px;
}

.theme-new .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.theme-new .navbar-nav .nav-link:hover,
.theme-new .navbar-nav .nav-link.active {
    color: var(--orange);
}

.theme-new .navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.theme-new .navbar-toggler:focus {
    box-shadow: none;
}

.theme-new .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff7700' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.theme-new .phone-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.theme-new .phone-nav i {
    background: var(--orange);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.9rem;
}

.theme-new .phone-nav span {
    font-weight: 600;
}

/* Navbar Social Icons */
.theme-new .navbar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-right: 1.5rem;
}

.theme-new .navbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.theme-new .navbar-social a:hover {
    background: var(--orange);
    color: var(--dark);
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .theme-new .navbar-social {
        margin-left: auto;
        margin-right: 1rem;
    }
}

/* ========================================
   Hero Section V2 - Enhanced with Animated Effects
======================================== */
.theme-new .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient orbs */
.theme-new .hero::before,
.theme-new .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: heroFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.theme-new .hero::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.theme-new .hero::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

/* Grid pattern overlay */
.theme-new .hero .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,119,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,119,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Hero content wrapper */
.theme-new .hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Hero tagline badge */
.theme-new .hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 119, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(255, 119, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.theme-new .hero-tagline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,119,0,0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

/* Hero title with glow */
.theme-new .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255, 119, 0, 0.2);
}

.theme-new .hero-title .highlight {
    position: relative;
    color: var(--orange);
    text-shadow:
        0 0 10px rgba(255,119,0,0.5),
        0 0 30px rgba(255,119,0,0.3);
}

.theme-new .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Hero blockquote */
.theme-new .hero-quote {
    border-left: 4px solid var(--orange);
    padding-left: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

.theme-new .hero-quote::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Hero stats inline */
.theme-new .hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-new .hero-stat {
    text-align: center;
}

.theme-new .hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.theme-new .hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero image section */
.theme-new .hero-visual {
    position: relative;
    z-index: 2;
}

.theme-new .hero-img {
    border-radius: 1rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(255, 119, 0, 0.15);
}

/* Decorative elements */
.theme-new .hero-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 119, 0, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 4s ease-out infinite;
}

.theme-new .hero-decoration::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 2px solid rgba(255, 119, 0, 0.15);
    border-radius: 50%;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* Scroll indicator */
.theme-new .hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 3;
    animation: bounce 2s infinite;
}

.theme-new .hero-scroll i {
    font-size: 1.2rem;
    color: var(--orange);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive */
@media (max-width: 991px) {
    .theme-new .hero {
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    .theme-new .hero-title {
        font-size: 2rem;
    }
    .theme-new .hero-tagline {
        font-size: 0.75rem;
    }
    .theme-new .hero-stats {
        justify-content: center;
    }
    .theme-new .hero-quote {
        text-align: left;
    }
    .theme-new .hero-scroll {
        display: none;
    }
    .theme-new .hero::before {
        width: 300px;
        height: 300px;
        top: -50px;
        right: -50px;
    }
    .theme-new .hero::after {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
    }
}

/* ========================================
   Sections
======================================== */
.theme-new section {
    padding: 5rem 0;
    position: relative;
}

.theme-new section:nth-child(odd) {
    background: radial-gradient(ellipse at 85% 0%, rgba(255, 119, 0, 0.05) 0%, transparent 50%);
}

.theme-new section:nth-child(even) {
    background: radial-gradient(ellipse at 15% 100%, rgba(255, 119, 0, 0.05) 0%, transparent 50%);
}

/* ========================================
   Stats Section
======================================== */
.theme-new .stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
}

.theme-new .stat-item p {
    color: var(--gray);
    font-size: 1rem;
}

/* ========================================
   Page Hero (for CMS/Legal pages)
======================================== */
.theme-new .page-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    overflow: hidden;
}

.theme-new .page-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    filter: blur(60px);
    opacity: 0.5;
}

.theme-new .page-hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,119,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,119,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.theme-new .page-hero .container {
    position: relative;
    z-index: 2;
}

.theme-new .page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.theme-new .page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.theme-new .page-hero .breadcrumb-item a:hover {
    color: var(--orange);
}

.theme-new .page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.4);
}

.theme-new .page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

.theme-new .page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 40px rgba(255, 119, 0, 0.2);
}

@media (max-width: 991px) {
    .theme-new .page-hero {
        padding: 120px 0 40px;
    }
}

/* ========================================
   Cards
======================================== */
.theme-new .card-dark {
    background: var(--dark-card);
    border: 1px solid rgba(255, 119, 0, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.theme-new .card-dark:hover {
    border-color: rgba(255, 119, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 119, 0, 0.1);
}

.theme-new .card-dark .icon-wrap {
    width: 70px;
    height: 70px;
    background: rgba(255, 119, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.theme-new .card-dark .icon-wrap i {
    font-size: 1.75rem;
    color: var(--orange);
}

.theme-new .card-dark:hover .icon-wrap {
    background: rgba(255, 119, 0, 0.2);
    transform: scale(1.1);
}

.theme-new .card-dark h4 {
    color: var(--orange);
    margin-bottom: 1rem;
}

.theme-new .card-dark p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* ========================================
   Steps
======================================== */
.theme-new .step-number {
    width: 4rem;
    height: 4rem;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

@media (min-width: 992px) {
    .theme-new .step-number {
        width: 5rem;
        height: 5rem;
        font-size: 2.5rem;
    }
}

.theme-new .step-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.theme-new .step-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========================================
   Reviews
======================================== */
.theme-new .review-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 119, 0, 0.15);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
}

.theme-new .review-stars {
    color: var(--orange);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.theme-new .review-text {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.theme-new .review-author {
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 500;
}

.theme-new .review-image {
    border-radius: 1rem;
    overflow: hidden;
}

.theme-new .review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* ========================================
   Partners Swiper
======================================== */
.theme-new .partners-swiper {
    padding: 2rem 0;
}

.theme-new .partners-swiper .swiper-slide img {
    opacity: 0.65;
    transition: opacity 0.3s ease;
    border-radius: 0.5rem;
    max-height: 150px;
    object-fit: contain;
}

.theme-new .partners-swiper .swiper-slide:hover img {
    opacity: 1;
}

/* ========================================
   Footer
======================================== */
.theme-new footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 119, 0, 0.1);
    padding: 4rem 0 2rem;
}

.theme-new .footer-title {
    color: var(--orange);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.theme-new .footer-links {
    list-style: none;
    padding: 0;
}

.theme-new .footer-links li {
    margin-bottom: 0.75rem;
}

.theme-new .footer-links a {
    color: var(--gray);
    transition: all 0.3s ease;
}

.theme-new .footer-links a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.theme-new .footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.theme-new .footer-contact i {
    color: var(--orange);
    width: 20px;
}

.theme-new .footer-social a {
    color: var(--gray);
    font-size: 1.25rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.theme-new .footer-social a:hover {
    color: var(--orange);
    transform: translateY(-3px);
}

.theme-new .footer-bottom {
    border-top: 1px solid rgba(255, 119, 0, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Footer Articles (Blog) */
.theme-new .footer-article {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-new .footer-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.theme-new .footer-article:first-child {
    padding-top: 0;
}

.theme-new .footer-article-image {
    width: 70px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-new .footer-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.theme-new .footer-article:hover .footer-article-image img {
    transform: scale(1.1);
}

.theme-new .footer-article-content {
    flex: 1;
    min-width: 0;
}

.theme-new .footer-article-date {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.theme-new .footer-article-date i {
    margin-right: 0.25rem;
    color: var(--orange);
}

.theme-new .footer-article-title {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.theme-new .footer-article-title a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.theme-new .footer-article-title a:hover {
    color: var(--orange);
}

/* ========================================
   Scroll to Top
======================================== */
.theme-new #scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.theme-new #scrollToTop.visible {
    opacity: 1;
    visibility: visible;
}

.theme-new #scrollToTop:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
}

/* ========================================
   Animations
======================================== */
.theme-new .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ========================================
   Utilities
======================================== */
.theme-new .bg-dark-card {
    background: var(--dark-card);
}

.theme-new .border-orange {
    border-color: rgba(255, 119, 0, 0.3) !important;
}

.theme-new .list-check {
    list-style: none;
    padding: 0;
}

.theme-new .list-check li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.theme-new .list-check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--orange);
}

/* ========================================
   Menu Burger Toggle
======================================== */
.theme-new .menu-toggle {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid rgba(255, 119, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
    position: relative;
}

.theme-new .menu-toggle:hover {
    border-color: var(--orange);
    background: rgba(255, 119, 0, 0.1);
}

.theme-new .menu-toggle .line {
    width: 22px;
    height: 2px;
    background: var(--orange);
    transition: all 0.3s ease;
}

.theme-new .menu-toggle.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.theme-new .menu-toggle.active .line:nth-child(2) {
    opacity: 0;
}

.theme-new .menu-toggle.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Fullscreen Menu Overlay
======================================== */
.theme-new .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.theme-new .menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.theme-new .menu-overlay-content {
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.theme-new .menu-overlay.active .menu-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.theme-new .menu-overlay-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.theme-new .menu-overlay-nav li {
    margin-bottom: 1.5rem;
}

.theme-new .menu-overlay-nav a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.theme-new .menu-overlay-nav a:hover {
    color: var(--orange);
}

.theme-new .menu-overlay-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.theme-new .menu-overlay-nav a:hover::after {
    width: 100%;
}

.theme-new .menu-overlay-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid rgba(255, 119, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-new .menu-overlay-close:hover {
    border-color: var(--orange);
    background: rgba(255, 119, 0, 0.1);
    transform: rotate(90deg);
}

.theme-new .menu-overlay-close i {
    font-size: 1.5rem;
    color: var(--orange);
}

.theme-new .menu-overlay-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.theme-new .menu-overlay-social a {
    font-size: 1.5rem;
    color: var(--gray);
}

.theme-new .menu-overlay-social a:hover {
    color: var(--orange);
}

/* ========================================
   Hero Swiper
======================================== */
.theme-new .hero-swiper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 119, 0, 0.15);
    position: relative;
}

.theme-new .hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    aspect-ratio: 4 / 3;
}

.theme-new .hero-swiper .swiper-pagination {
    bottom: 15px;
}

.theme-new .hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.theme-new .hero-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
    width: 30px;
    border-radius: 6px;
}

.theme-new .hero-swiper .swiper-button-next,
.theme-new .hero-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(13, 13, 13, 0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.theme-new .hero-swiper .swiper-button-next:hover,
.theme-new .hero-swiper .swiper-button-prev:hover {
    background: var(--orange);
}

.theme-new .hero-swiper .swiper-button-next::after,
.theme-new .hero-swiper .swiper-button-prev::after {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: bold;
}

@media (max-width: 991px) {
    .theme-new .hero-swiper .swiper-slide img {
        min-height: 300px;
    }
    .theme-new .menu-overlay-nav a {
        font-size: 1.5rem;
    }
}

/* ========================================
   Section-specific adjustments for new theme
======================================== */
.theme-new section + section {
    border-top: 1px solid rgba(255, 119, 0, 0.1);
}

/* Section zone image */
.theme-new .section-zone .card-zone-image {
    min-height: 280px;
    border-radius: 1rem;
    overflow: hidden;
}

.theme-new .section-zone .card-zone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 280px;
}

/* ========================================
   404 Page
======================================== */
.theme-new .error-404-number {
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 119, 0, 0.3);
    text-shadow: 0 0 60px rgba(255, 119, 0, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.theme-new .error-404-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-new .error-404-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-new .error-404-list li:last-child {
    border-bottom: none;
}

/* ========================================
   Contact Page
======================================== */
.theme-new .contact-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    overflow: hidden;
}

.theme-new .contact-hero::before,
.theme-new .contact-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: contactFloat 8s ease-in-out infinite;
}

.theme-new .contact-hero::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff7700 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.theme-new .contact-hero::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff9933 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
}

@keyframes contactFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.theme-new .contact-hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,119,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,119,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.theme-new .contact-hero .container {
    position: relative;
    z-index: 2;
}

.theme-new .contact-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 119, 0, 0.2);
}

.theme-new .contact-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ff7700;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 119, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(255, 119, 0, 0.1);
}

/* Contact info cards */
.theme-new .contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-new .contact-info-card:hover {
    background: rgba(255, 119, 0, 0.08);
    border-color: rgba(255, 119, 0, 0.4);
    transform: translateY(-5px);
}

.theme-new .contact-info-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff7700 0%, #ff9933 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.3);
}

.theme-new .contact-info-card .icon-wrap i {
    font-size: 1.5rem;
    color: #fff;
}

.theme-new .contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.theme-new .contact-info-card p,
.theme-new .contact-info-card li {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.theme-new .contact-info-card a {
    color: #ff7700;
    transition: color 0.3s;
}

.theme-new .contact-info-card a:hover {
    color: #ff9933;
}

/* Form section */
.theme-new .contact-form-section {
    padding: 5rem 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 119, 0, 0.05) 0%, transparent 50%);
}

.theme-new .form-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 119, 0, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.theme-new .form-card .form-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.theme-new .form-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
}

.theme-new .form-card .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ff7700;
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.15);
    color: #fff;
}

.theme-new .form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.theme-new .form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.theme-new .form-card .invalid-feedback {
    color: #ff6b6b;
}

.theme-new .form-card .btn-submit {
    background: linear-gradient(135deg, #ff7700 0%, #ff9933 100%);
    color: #000;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.theme-new .form-card .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.4);
}

/* Captcha styling */
.theme-new .captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.theme-new .captcha-question {
    background: rgba(255, 119, 0, 0.1);
    border: 1px solid rgba(255, 119, 0, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    color: #ff7700;
    font-weight: 600;
    white-space: nowrap;
}

.theme-new .captcha-wrapper .form-control {
    flex: 1;
    min-width: 120px;
}

/* Success message */
.theme-new .alert-success-custom {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    color: #5dd879;
}

/* Social buttons */
.theme-new .social-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.theme-new .social-contact-btn.google {
    background: rgba(66, 133, 244, 0.15);
    border: 1px solid rgba(66, 133, 244, 0.4);
    color: #4285f4;
}

.theme-new .social-contact-btn.google:hover {
    background: rgba(66, 133, 244, 0.25);
    transform: translateY(-2px);
}

.theme-new .social-contact-btn.facebook {
    background: rgba(24, 119, 242, 0.15);
    border: 1px solid rgba(24, 119, 242, 0.4);
    color: #1877f2;
}

.theme-new .social-contact-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .theme-new .contact-hero {
        padding: 140px 0 60px;
        text-align: center;
    }
    .theme-new .form-card {
        padding: 1.5rem;
    }
}

/* ========================================
   Intro Hero (About Page)
======================================== */
.theme-new .intro-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    margin-top: 70px;
}

.theme-new .intro-hero::before,
.theme-new .intro-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: introFloat 8s ease-in-out infinite;
}

.theme-new .intro-hero::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff7700 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.theme-new .intro-hero::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff9933 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -4s;
}

@keyframes introFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.theme-new .intro-hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,119,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,119,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.theme-new .intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 3rem 1.5rem;
}

.theme-new .intro-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow:
        0 0 10px rgba(255,119,0,0.5),
        0 0 30px rgba(255,119,0,0.3),
        0 0 60px rgba(255,119,0,0.2);
    margin-bottom: 0.5rem;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(255,119,0,0.5), 0 0 30px rgba(255,119,0,0.3), 0 0 60px rgba(255,119,0,0.2); }
    50% { text-shadow: 0 0 20px rgba(255,119,0,0.8), 0 0 40px rgba(255,119,0,0.5), 0 0 80px rgba(255,119,0,0.3); }
}

.theme-new .intro-tagline {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ff7700;
    padding: 0.5rem 1.5rem;
    border: 2px solid #ff7700;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.theme-new .intro-tagline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,119,0,0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

.theme-new .intro-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.theme-new .intro-description strong {
    color: #ff7700;
}

.theme-new .intro-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.theme-new .intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,119,0,0.3);
    border-radius: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.theme-new .intro-badge:hover {
    background: rgba(255,119,0,0.15);
    border-color: #ff7700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,119,0,0.2);
}

.theme-new .intro-badge i {
    color: #ff7700;
    font-size: 1rem;
}

.theme-new .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.theme-new .scroll-indicator i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .theme-new .intro-hero { min-height: 80vh; }
    .theme-new .intro-tagline { font-size: 0.85rem; letter-spacing: 0.1em; }
    .theme-new .intro-description { font-size: 1.1rem; }
    .theme-new .intro-badges { gap: 0.75rem; }
    .theme-new .intro-badge { font-size: 0.75rem; padding: 0.5rem 1rem; }
}

/* ========================================
   Gallery Page (Repairs)
======================================== */
.theme-new .gallery-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    overflow: hidden;
}

.theme-new .gallery-hero::before,
.theme-new .gallery-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: galleryFloat 8s ease-in-out infinite;
}

.theme-new .gallery-hero::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff7700 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.theme-new .gallery-hero::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff9933 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -4s;
}

@keyframes galleryFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.theme-new .gallery-hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,119,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,119,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.theme-new .gallery-hero .container {
    position: relative;
    z-index: 2;
}

.theme-new .gallery-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ff7700;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 119, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(255, 119, 0, 0.1);
}

.theme-new .gallery-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 119, 0, 0.2);
}

/* Filters Section */
.theme-new .gallery-filters {
    padding: 2rem 0;
    background: rgba(26, 26, 26, 0.5);
    border-bottom: 1px solid rgba(255, 119, 0, 0.1);
    position: sticky;
    top: 70px;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.theme-new .filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.theme-new .filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.theme-new .filter-btn:hover {
    background: rgba(255, 119, 0, 0.15);
    border-color: rgba(255, 119, 0, 0.4);
    color: #ff7700;
}

.theme-new .filter-btn.active {
    background: linear-gradient(135deg, #ff7700 0%, #ff9933 100%);
    border-color: #ff7700;
    color: #000;
    font-weight: 600;
}

.theme-new .filter-btn .count {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.theme-new .filter-btn.active .count {
    background: rgba(0, 0, 0, 0.3);
}

/* Mobile filter */
.theme-new .mobile-filter-select {
    display: none;
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 119, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
}

.theme-new .mobile-filter-select:focus {
    outline: none;
    border-color: #ff7700;
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.15);
}

.theme-new .mobile-filter-select option {
    background: #1a1a1a;
    color: #fff;
}

@media (max-width: 768px) {
    .theme-new .filter-buttons { display: none; }
    .theme-new .mobile-filter-select { display: block; }
    .theme-new .gallery-filters { top: 60px; }
}

/* Gallery Section */
.theme-new .gallery-section {
    padding: 4rem 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 119, 0, 0.03) 0%, transparent 50%);
}

.theme-new .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Gallery Item */
.theme-new .gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 119, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.theme-new .gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 119, 0, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.theme-new .gallery-item-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.theme-new .gallery-item:hover .gallery-item-image img {
    transform: scale(1.1);
}

.theme-new .gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.theme-new .gallery-item-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 119, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.theme-new .gallery-item:hover .gallery-item-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.theme-new .gallery-item-info {
    padding: 1rem 1.25rem;
}

.theme-new .gallery-item-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 119, 0, 0.15);
    border-radius: 20px;
    color: #ff7700;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.theme-new .gallery-item-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Lightbox */
.theme-new .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.theme-new .lightbox.active {
    display: flex;
}

.theme-new .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.theme-new .lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.theme-new .lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.theme-new .lightbox-close:hover {
    color: #ff7700;
}

.theme-new .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 119, 0, 0.8);
    border: none;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-new .lightbox-nav:hover {
    background: #ff7700;
    transform: translateY(-50%) scale(1.1);
}

.theme-new .lightbox-prev { left: -70px; }
.theme-new .lightbox-next { right: -70px; }

.theme-new .lightbox-caption {
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.theme-new .lightbox-caption .category {
    color: #ff7700;
    font-weight: 600;
}

@media (max-width: 768px) {
    .theme-new .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    .theme-new .lightbox-prev { left: 10px; }
    .theme-new .lightbox-next { right: 10px; }
}

/* Empty state */
.theme-new .gallery-empty {
    text-align: center;
    padding: 5rem 2rem;
}

.theme-new .gallery-empty i {
    font-size: 4rem;
    color: rgba(255, 119, 0, 0.3);
    margin-bottom: 1.5rem;
}

/* Stats */
.theme-new .gallery-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.theme-new .gallery-stat {
    text-align: center;
}

.theme-new .gallery-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff7700;
}

.theme-new .gallery-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 991px) {
    .theme-new .gallery-hero {
        padding: 140px 0 60px;
        text-align: center;
    }
    .theme-new .gallery-stats {
        gap: 2rem;
    }
    .theme-new .gallery-stat-value {
        font-size: 2rem;
    }
}

/* ========================================
   Blog Styles
======================================== */

/* Blog Hero */
.theme-new .blog-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    overflow: hidden;
}

.theme-new .blog-hero::before,
.theme-new .blog-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blogFloat 8s ease-in-out infinite;
}

.theme-new .blog-hero::before {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #ff7700 0%, transparent 70%);
    top: -100px;
    right: -50px;
}

.theme-new .blog-hero::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ff9933 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation-delay: -4s;
}

@keyframes blogFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.theme-new .blog-hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,119,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,119,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.theme-new .blog-hero .container {
    position: relative;
    z-index: 2;
}

.theme-new .blog-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.theme-new .blog-tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ff7700;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 119, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    background: rgba(255, 119, 0, 0.1);
}

.theme-new .blog-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 119, 0, 0.3);
}

/* Breadcrumb Custom */
.theme-new .breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-new .breadcrumb-custom li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.theme-new .breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.theme-new .breadcrumb-custom li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.theme-new .breadcrumb-custom li a:hover {
    color: #ff7700;
}

.theme-new .breadcrumb-custom li.active {
    color: #ff7700;
}

/* Blog Section */
.theme-new .blog-section {
    padding: 5rem 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255, 119, 0, 0.03) 0%, transparent 50%);
}

/* Blog Card */
.theme-new .blog-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 119, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.theme-new .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 119, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.theme-new .blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.theme-new .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-new .blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.theme-new .blog-card-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ff7700;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    text-transform: uppercase;
}

.theme-new .blog-card-body {
    padding: 1.5rem;
    flex: 1;
}

.theme-new .blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.theme-new .blog-card-category {
    color: #ff7700;
    text-decoration: none;
    transition: color 0.3s;
}

.theme-new .blog-card-category:hover {
    color: #ff9933;
}

.theme-new .blog-card-category i,
.theme-new .blog-card-time i {
    margin-right: 0.3rem;
}

.theme-new .blog-card-time {
    color: rgba(255, 255, 255, 0.5);
}

.theme-new .blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.theme-new .blog-card-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.theme-new .blog-card-title a:hover {
    color: #ff7700;
}

.theme-new .blog-card-excerpt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.theme-new .blog-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.theme-new .blog-card-link {
    color: #ff7700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.theme-new .blog-card-link:hover {
    color: #ff9933;
}

.theme-new .blog-card-link i {
    margin-left: 0.3rem;
    transition: transform 0.3s;
}

.theme-new .blog-card-link:hover i {
    transform: translateX(5px);
}

.theme-new .blog-card-stats {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.theme-new .blog-card-stats i {
    margin-right: 0.3rem;
    color: rgba(255, 119, 0, 0.6);
}

/* Sidebar Sticky */
.theme-new .sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Sidebar Widgets */
.theme-new .sidebar-widget {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 119, 0, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.theme-new .sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ff7700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-new .sidebar-widget-title i {
    color: #ff7700;
}

/* Categories Widget */
.theme-new .sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-new .sidebar-categories li {
    margin-bottom: 0.5rem;
}

.theme-new .sidebar-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.theme-new .sidebar-categories li a:hover,
.theme-new .sidebar-categories li.active a {
    background: rgba(255, 119, 0, 0.15);
    color: #ff7700;
}

.theme-new .sidebar-categories li a i {
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s;
}

.theme-new .sidebar-categories li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Recent Articles Widget */
.theme-new .sidebar-article {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-new .sidebar-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.theme-new .sidebar-article:first-child {
    padding-top: 0;
}

.theme-new .sidebar-article-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-new .sidebar-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.theme-new .sidebar-article:hover .sidebar-article-image img {
    transform: scale(1.1);
}

.theme-new .sidebar-article-content {
    flex: 1;
    min-width: 0;
}

.theme-new .sidebar-article-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.theme-new .sidebar-article-date i {
    margin-right: 0.3rem;
    color: #ff7700;
}

.theme-new .sidebar-article-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.theme-new .sidebar-article-title a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.theme-new .sidebar-article-title a:hover {
    color: #ff7700;
}

/* Tags Widget */
.theme-new .sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.theme-new .sidebar-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.theme-new .sidebar-tag:hover,
.theme-new .sidebar-tag.active {
    background: rgba(255, 119, 0, 0.15);
    border-color: rgba(255, 119, 0, 0.4);
    color: #ff7700;
}

/* Pagination */
.theme-new .pagination-wrapper {
    display: flex;
    justify-content: center;
}

.theme-new .pagination-wrapper .pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.theme-new .pagination-wrapper .pagination li a,
.theme-new .pagination-wrapper .pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.theme-new .pagination-wrapper .pagination li a:hover {
    background: rgba(255, 119, 0, 0.15);
    border-color: rgba(255, 119, 0, 0.4);
    color: #ff7700;
}

.theme-new .pagination-wrapper .pagination li.active span,
.theme-new .pagination-wrapper .pagination li.active a {
    background: #ff7700;
    border-color: #ff7700;
    color: #000;
}

/* Article Detail Page */
.theme-new .article-hero {
    position: relative;
    padding: 160px 0 60px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    overflow: hidden;
}

.theme-new .article-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 119, 0, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.theme-new .article-hero .grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,119,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,119,0,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.theme-new .article-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 119, 0, 0.15);
    border: 1px solid rgba(255, 119, 0, 0.4);
    border-radius: 50px;
    color: #ff7700;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.theme-new .article-category-badge:hover {
    background: rgba(255, 119, 0, 0.25);
    color: #ff9933;
}

.theme-new .article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.theme-new .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.theme-new .article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-new .article-meta-item i {
    color: #ff7700;
}

/* Article Content */
.theme-new .article-content-section {
    padding: 4rem 0;
}

.theme-new .article-featured-image {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.theme-new .article-featured-image img {
    width: 100%;
    height: auto;
}

.theme-new .article-body {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 119, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.theme-new .article-body h2,
.theme-new .article-body h3,
.theme-new .article-body h4 {
    color: #fff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.theme-new .article-body h2:first-child,
.theme-new .article-body h3:first-child {
    margin-top: 0;
}

.theme-new .article-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.theme-new .article-body ul,
.theme-new .article-body ol {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.theme-new .article-body li {
    margin-bottom: 0.5rem;
}

.theme-new .article-body a {
    color: #ff7700;
    text-decoration: underline;
}

.theme-new .article-body a:hover {
    color: #ff9933;
}

.theme-new .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.theme-new .article-body blockquote {
    border-left: 4px solid #ff7700;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

/* Article Keywords */
.theme-new .article-keywords {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-new .article-keywords h6 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.theme-new .keyword-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 119, 0, 0.1);
    border: 1px solid rgba(255, 119, 0, 0.3);
    border-radius: 20px;
    color: #ff7700;
    font-size: 0.8rem;
    text-decoration: none;
    margin: 0.25rem;
    transition: all 0.3s;
}

.theme-new .keyword-badge:hover {
    background: rgba(255, 119, 0, 0.2);
    color: #ff9933;
}

/* Like Button */
.theme-new .like-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.15) 0%, rgba(255, 119, 0, 0.05) 100%);
    border: 2px solid rgba(255, 119, 0, 0.4);
    border-radius: 50px;
    color: #ff7700;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-new .like-button:hover:not(:disabled) {
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.25) 0%, rgba(255, 119, 0, 0.1) 100%);
    border-color: #ff7700;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.2);
}

.theme-new .like-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.theme-new .like-button img {
    filter: invert(50%) sepia(100%) saturate(1000%) hue-rotate(360deg);
}

.theme-new .like-badge {
    background: #ff7700;
    color: #000;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Social Share */
.theme-new .article-share {
    background: rgba(255, 119, 0, 0.1);
    border: 1px solid rgba(255, 119, 0, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.theme-new .article-share h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.theme-new .social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.theme-new .social-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.theme-new .social-share-btn.facebook { background: #1877f2; }
.theme-new .social-share-btn.twitter { background: #1da1f2; }
.theme-new .social-share-btn.pinterest { background: #e60023; }
.theme-new .social-share-btn.linkedin { background: #0a66c2; }

.theme-new .social-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* Blog Responsive */
@media (max-width: 991px) {
    .theme-new .blog-hero,
    .theme-new .article-hero {
        padding: 140px 0 60px;
        text-align: center;
    }

    .theme-new .blog-hero-title {
        font-size: 2.5rem;
    }

    .theme-new .article-meta {
        justify-content: center;
    }

    .theme-new .article-body {
        padding: 1.5rem;
    }

    .theme-new .sidebar-sticky {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 576px) {
    .theme-new .blog-card-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .theme-new .article-share .social-share-buttons {
        flex-wrap: wrap;
    }
}

/* ========================================
   Modal Dark Theme
======================================== */
.modal-dark .modal-content {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 119, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 119, 0, 0.1);
    color: var(--white);
}

.modal-dark .modal-header {
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.15) 0%, rgba(255, 119, 0, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 119, 0, 0.2);
    padding: 1.25rem 1.5rem;
}

.modal-dark .modal-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.modal-dark .modal-title img {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(1500%) hue-rotate(360deg) brightness(103%) contrast(106%);
}

.modal-dark .btn-close {
    filter: invert(1) brightness(0.8);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.modal-dark .btn-close:hover {
    opacity: 1;
}

.modal-dark .modal-body {
    padding: 1.5rem;
}

.modal-dark .modal-body p {
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.modal-dark .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
}

.modal-dark .form-control::placeholder {
    color: var(--gray-light);
}

.modal-dark .form-control:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 119, 0, 0.15);
    color: var(--white);
    outline: none;
}

.modal-dark .form-label {
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-dark .form-control-plaintext {
    background-color: rgba(255, 119, 0, 0.15);
    border: 1px solid rgba(255, 119, 0, 0.3);
    border-radius: 10px;
    color: var(--orange);
    font-weight: 600;
    padding: 0.875rem 1rem;
}

.modal-dark .was-validated .form-control:valid,
.modal-dark .form-control.is-valid {
    border-color: #22c55e;
    background-color: rgba(34, 197, 94, 0.1);
}

.modal-dark .was-validated .form-control:invalid,
.modal-dark .form-control.is-invalid {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.modal-dark .btn-medium {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border: none;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 700;
    padding: 0.875rem 1.5rem;
    transition: all 0.3s ease;
}

.modal-dark .btn-medium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 119, 0, 0.3);
}

.modal-dark textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* ========================================
   PDF Viewer Modal
======================================== */
#pdfModal .modal-content {
    height: 90vh;
    display: flex;
    flex-direction: column;
}
#pdfModal .modal-header {
    flex-shrink: 0;
}
#pdfModal .modal-header .modal-title {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.pdf-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .4rem 1rem;
    background: rgba(0,0,0,.3);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
}
.pdf-nav-btn {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    border-radius: 4px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
    font-size: .8rem;
}
.pdf-nav-btn:hover {
    background: rgba(255,119,0,.2);
    border-color: rgba(255,119,0,.4);
    color: #ff7700;
}
.pdf-page-info {
    color: rgba(255,255,255,.6);
    font-size: .85rem;
    min-width: 80px;
    text-align: center;
}
.pdf-zoom-select {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    border-radius: 4px;
    padding: .25rem .5rem;
    font-size: .8rem;
    cursor: pointer;
}
.pdf-zoom-select option {
    background: #1a1a2e;
    color: #fff;
}
#pdfViewerBody {
    flex: 1;
    overflow: auto;
    background: #525659;
    position: relative;
}
.pdf-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
#pdfCanvasWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px;
}
#pdfCanvasWrapper canvas {
    box-shadow: 0 2px 8px rgba(0,0,0,.4);
    background: #fff;
    max-width: 100%;
}
@media (max-width: 767.98px) {
    #pdfModal .modal-content { height: 100vh; border-radius: 0; }
    .pdf-toolbar { gap: .5rem; padding: .3rem .5rem; }
    .pdf-zoom-select { display: none; }
    #pdfModal .modal-header .btn-medium { font-size: .75rem; padding: .35rem .75rem; }
}
