/* ========================================
   Bootstrap 5 Professional Restaurant Theme
   Premium Fine Dining Experience
   ======================================== */

:root {
    /* Primary Colors */
    --bs-primary: #6f42c1;
    --bs-secondary: #ffd700;
    --bs-success: #28a745;
    --bs-danger: #dc3545;
    --bs-warning: #ffc107;
    --bs-info: #17a2b8;
    --bs-light: #f8f9fa;
    --bs-dark: #1a1a1a;

    /* Restaurant Theme Colors */
    --restaurant-gold: #ffd700;
    --restaurant-gold-dark: #cc6600;
    --restaurant-purple: #6f42c1;
    --restaurant-dark: #0f0f0f;
    --restaurant-light: #f9f8f6;
    --restaurant-accent: #e91e63;
    --restaurant-cream: #ede9df;

    /* Accent colors */
    --accent-coral: #ff6b6b;
    --accent-teal: #20b2aa;

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

html, body {
    font-family: var(--font-sans);
    color: #333;
    background: #fff;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

p {
    line-height: 1.8;
    color: #555;
}

/* ========================================
   NAVIGATION & HEADER
   ======================================== */

.navbar {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 3px solid #ffd700;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.navbar-logo-svg {
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.2));
}

.navbar-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ffe55c);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ffd700 !important;
}

.dropdown-menu {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid #ffd700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.dropdown-item {
    color: #fff;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.15), transparent);
    color: #ffd700;
    padding-left: 1.75rem;
}

.contact-link {
    gap: 0.5rem;
    font-weight: 600 !important;
}

.phone-icon {
    color: #ffd700;
    font-size: 1.1rem;
}

.phone-number {
    color: #ffd700;
}

/* ========================================
   HERO SECTION
   ======================================== */

section.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #6f42c1 100%);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

section.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

section.hero h1 {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

section.hero .hero-accent {
    color: #ffd700;
    display: inline-block;
    position: relative;
}

section.hero .hero-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, transparent);
    border-radius: 2px;
}

section.hero .lead {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

/* ========================================
   BUTTONS & CTA
   ======================================== */

.btn {
    font-weight: 700;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a32a3 0%, #4a2590 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.4);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(135deg, #ffd700 0%, #ffe55c 100%);
    color: #1a1a1a;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffe55c 0%, #fff176 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 700;
}

.btn-outline-light:hover {
    background: #fff;
    color: #6f42c1;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

/* ========================================
   CARDS & COMPONENTS
   ======================================== */

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(111, 66, 193, 0.2);
}

.card-header {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    border: none;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 50%;
}

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

.card-title {
    font-family: var(--font-serif);
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Feature Icons */
.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffd700;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.card:hover .feature-icon {
    background: rgba(255, 215, 0, 0.25);
    transform: scale(1.1);
}

/* Staff Cards - Enhanced */
.staff-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeInUp 0.6s ease-out forwards;
}

.staff-card:hover {
    transform: translateY(-15px) rotateY(0deg);
    box-shadow: 0 20px 50px rgba(111, 66, 193, 0.3);
}

.staff-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.staff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.staff-card:hover .staff-image {
    transform: scale(1.12);
}

.staff-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(111, 66, 193, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
    text-align: center;
    color: #fff;
}

.staff-card:hover .staff-overlay {
    opacity: 1;
}

.staff-info {
    padding: 2rem;
    background: #fff;
}

.staff-name {
    font-family: var(--font-serif);
    color: #6f42c1;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.staff-role {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.staff-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   SECTIONS & BACKGROUNDS
   ======================================== */

section {
    padding: 80px 0;
}

section.alt-bg {
    background: linear-gradient(135deg, #f9f8f6 0%, #f0ede8 100%);
}

section.alt-bg h2 {
    color: #1a1a1a;
}

section.dark-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

section.dark-bg h2,
section.dark-bg h3 {
    color: #fff;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffe55c);
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* ========================================
   GALLERIES & IMAGES
   ======================================== */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 300px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(111, 66, 193, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-icon {
    font-size: 2.5rem;
    color: #ffd700;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #ffd700;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(111, 66, 193, 0.15);
}

.testimonial-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-role {
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #aaa;
    padding: 60px 0 20px;
    border-top: 3px solid #ffd700;
}

footer h5 {
    color: #ffd700;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section {
    margin-bottom: 3rem;
}

.footer-section p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #ffd700;
    margin-left: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-links a:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-3px);
    border-color: #ffd700;
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #777;
}

.powered-by {
    color: #ffd700;
    font-weight: 700;
}

/* ========================================
   FORMS
   ======================================== */

.form-control,
.form-select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* ========================================
   UTILITIES
   ======================================== */

.text-gold {
    color: #ffd700 !important;
}

.text-purple {
    color: #6f42c1 !important;
}

.bg-gold {
    background: #ffd700 !important;
}

.bg-purple {
    background: #6f42c1 !important;
}

.shadow-lg-custom {
    box-shadow: 0 15px 50px rgba(111, 66, 193, 0.15) !important;
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (max-width: 1200px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 991px) {
    section.hero {
        padding: 80px 0;
        min-height: 500px;
    }

    section.hero h1 {
        font-size: 2.8rem;
    }

    section.hero .lead {
        font-size: 1.2rem;
    }

    .navbar-text {
        font-size: 1.2rem;
    }

    .navbar-logo {
        height: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    section.hero {
        padding: 60px 0;
        min-height: 400px;
    }

    section.hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    section.hero .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .staff-image-wrapper {
        height: 300px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }

    .divider {
        width: 60px;
    }

    .gallery-item {
        height: 250px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 40px 0;
    }

    section.hero {
        padding: 50px 0;
        min-height: 350px;
    }

    section.hero h1 {
        font-size: 1.8rem;
    }

    section.hero .lead {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .navbar-text {
        font-size: 1rem;
    }

    .navbar-logo {
        height: 35px;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .staff-image-wrapper {
        height: 250px;
    }

    .gallery-item {
        height: 200px;
    }

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

    .staff-info {
        padding: 1.5rem;
    }

    footer {
        padding: 40px 0 15px;
    }

    footer h5 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   MEDIA GALLERY & VIDEO SUPPORT
   ======================================== */

.media-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 16/9;
    background: #000;
}

.media-gallery-item img,
.media-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.media-gallery-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(111, 66, 193, 0.3);
}

.media-gallery-item:hover img,
.media-gallery-item:hover video {
    transform: scale(1.12);
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(111, 66, 193, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    gap: 1rem;
}

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

.media-icon {
    font-size: 3.5rem;
    color: #ffd700;
}

.media-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    max-width: 90%;
}

.video-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(111, 66, 193, 0.9);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 20;
}

.media-gallery-item:hover .play-button {
    background: #ffd700;
    transform: translate(-50%, -50%) scale(1.15);
}

/* ========================================
   BANNER IMAGE DIMENSIONS
   ======================================== */

.banner-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffd700;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.banner-preview-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.banner-preview-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   ENHANCED CARD ANIMATIONS
   ======================================== */

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #fff;
    animation: fadeInUp 0.6s ease-out forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(111, 66, 193, 0.25);
}

.card-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.2) rotate(-5deg);
}

/* ========================================
   FORM ENHANCEMENTS
   ======================================== */

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 0.85rem 1.15rem;
    font-family: var(--font-sans);
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.form-control::placeholder {
    color: #999;
    opacity: 0.7;
}

.form-control:focus,
.form-select:focus {
    border-color: #6f42c1;
    background-color: #fff;
    box-shadow: 0 0 0 0.3rem rgba(111, 66, 193, 0.15);
}

.form-label {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label-required::after {
    content: '*';
    color: #dc3545;
    font-weight: 700;
}

.form-section {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.form-section:hover {
    border-color: #6f42c1;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.08);
}

.form-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #6f42c1;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title i {
    font-size: 1.5rem;
    color: #ffd700;
}

/* ========================================
   TOGGLE SWITCH ENHANCEMENTS
   ======================================== */

.form-check-input {
    width: 2rem;
    height: 1.15rem;
    border-radius: 10px;
    border: 2px solid #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    background-position: left center;
}

.form-check-input:checked {
    background-color: #6f42c1;
    border-color: #6f42c1;
    box-shadow: 0 0 0 0.3rem rgba(111, 66, 193, 0.15);
}

.form-check-input:focus {
    border-color: #6f42c1;
    box-shadow: 0 0 0 0.3rem rgba(111, 66, 193, 0.25);
}

.form-check-label {
    cursor: pointer;
    font-weight: 500;
    margin-left: 0.5rem;
    user-select: none;
}

/* ========================================
   IMAGE PREVIEW ENHANCEMENTS
   ======================================== */

.image-preview-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    margin: 1.5rem 0;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-preview {
    max-width: 100%;
    max-height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin-bottom: 1rem;
}

.image-info {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    text-align: left;
}

.image-info-label {
    font-weight: 600;
    color: #333;
}

/* ========================================
   FILE INPUT ENHANCEMENTS
   ======================================== */

.file-input-wrapper {
    position: relative;
}

.file-input-label {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.file-input-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(111, 66, 193, 0.3);
}

input[type="file"] {
    display: none;
}

/* ========================================
   PROFESSIONAL TEXT STYLES
   ======================================== */

.page-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
    text-align: justify;
}

.section-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.3), rgba(111, 66, 193, 0.1));
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-weight: 600;
    color: #6f42c1;
}
