/* Base setup & CSS Variables for Cinematic Dark Theme */

:root {
    /* Colors */
    --color-bg: #FFFFFF;
    /* Deep Navy Blue */
    --color-bg-light: #F8F9FA;
    /* Dark Blue Gray */
    --color-primary: #E60000;
    /* Electric Blue */
    --color-primary-hover: #FF3333;
    /* Hover Accent */
    --color-secondary: #990000;
    /* Subtle violet glow */
    --color-text: #111111;
    /* Clean white */
    --color-text-muted: #666666;
    /* Soft gray */

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

    /* Spacing */
    --section-padding: 60px 0;

    /* Effects */
    --transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    --glow-primary: 0 0 20px rgba(230, 0, 0, 0.5);
    --glow-secondary: 0 0 30px rgba(153, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: 1px solid rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 1.1rem;
    /* Base font size increased */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-muted {
    color: var(--color-text-muted);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: rgba(230, 0, 0, 0.1);
    box-shadow: var(--glow-primary);
    color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-solid {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #FFFFFF;
}

.btn-solid:hover {
    box-shadow: var(--glow-secondary);
    transform: translateY(-2px);
}

/* Cinematic Glow Effect */
.bg-glow {
    display: none;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 4px;
    margin-right: 10px;
    display: inline-block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Offset for navbar */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
}

.hero-bg-video-placeholder {
    display: none;
}

.text-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.showreel-preview {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all 0.3s ease;
    box-shadow: var(--glow-primary);
}

.play-btn svg {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    /* Visual center adjustment for triangle */
}

.video-wrapper:hover .play-btn {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: scale(1.1);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 30px rgba(230, 0, 0, 0.15);
    transition: var(--transition);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
    filter: brightness(0.95) contrast(1.05);
}

.about-image:hover {
    box-shadow: 0 0 40px rgba(230, 0, 0, 0.3);
}

.about-image:hover img {
    transform: scale(1.04);
    filter: brightness(1.1) contrast(1.1);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.skill-card {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: transform 0.3s ease;
}

.skill-card.flex-column {
    flex-direction: column;
}

.skill-card.align-start {
    align-items: flex-start;
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.skill-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(230, 0, 0, 0.3);
}

.skill-icon {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.skill-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.skill-subtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    padding-left: 47px;
    /* Align with text, accommodating 32px icon + 15px gap */
}

/* Portfolio Carousel Section */
.carousel-btn:hover {
    background: var(--color-primary) !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .portfolio-carousel {
        height: 650px !important;
    }

    .portfolio-item {
        width: 100% !important;
        max-width: 320px !important;
    }

    .portfolio-item.prev {
        transform: translateX(-50%) scale(0.85) translateZ(-100px) !important;
        filter: blur(4px) !important;
    }

    .portfolio-item.next {
        transform: translateX(50%) scale(0.85) translateZ(-100px) !important;
        filter: blur(4px) !important;
    }
}

.portfolio-carousel-wrapper {
    touch-action: pan-y;
}

.portfolio-item {
    padding: 15px;
}

.hidden-project {
    display: none;
}

.portfolio-img-wrapper,
.portfolio-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.portfolio-video-wrapper.reel {
    aspect-ratio: 9/16;
}

.portfolio-img-wrapper img,
.portfolio-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Let clicks pass through to the wrapper */
}

/* We removed the CSS hover opacity control here, Javascript handles it now for better play/pause UX */

.portfolio-item:hover .portfolio-img-wrapper img,
.portfolio-video-wrapper:hover video {
    transform: scale(1.05);
}

.portfolio-video-wrapper {
    cursor: pointer;
}

.mute-btn-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    width: 36px;
    height: 36px;
}

.mute-btn-wrapper:hover {
    width: 120px;
    background: rgba(255, 255, 255, 0.85);
}

.mute-btn {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.mute-btn:hover {
    color: var(--color-primary);
}

.mute-btn svg {
    width: 18px;
    height: 18px;
}

.volume-slider {
    width: 70px;
    margin-left: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    accent-color: var(--color-primary);
    /* Basic cross-browser styling */
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
}

.volume-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    margin-top: -4px;
    cursor: pointer;
}

.mute-btn-wrapper:hover .volume-slider {
    opacity: 1;
}

/* Services Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid var(--color-primary);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    align-self: flex-start;
    margin-top: 5px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--color-text-muted);
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 5px;
}

.features-list {
    margin-bottom: 40px;
}

.features-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.features-list .check {
    margin-right: 15px;
    font-weight: 700;
    color: var(--color-text-muted);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.method {
    padding: 25px;
    border-left: 3px solid var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-3px);
}

.contact-form-wrapper {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 12px 15px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.8);
}

/* Cinematic Contact Section Styling */
.cinematic-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(230, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at bottom left, rgba(153, 0, 0, 0.08) 0%, transparent 60%);
    border-top: 1px solid rgba(230, 0, 0, 0.1);
}

.cinematic-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.align-center {
    align-items: center;
}

.cinematic-form {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(230, 0, 0, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(230, 0, 0, 0.05);
}

.btn-glowing {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 14px 32px;
}

.btn-glowing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-glowing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 0, 0, 0.4), 0 0 15px rgba(153, 0, 0, 0.3);
}

.btn-glowing:hover::before {
    opacity: 1;
}

/* Floating Particles */
.particles-container {
    display: none;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-50px) translateX(20px) scale(1.5);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px) translateX(-20px) scale(1);
        opacity: 0.1;
    }
}

/* Slide Up Animation */
.slide-up {
    transform: translateY(30px);
    opacity: 0;
    will-change: opacity, transform;
}

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

/* Footer */
.footer {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 992px) {

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {

    .navbar {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        gap: 15px;
        align-items: center;
    }

    .btn-sm {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

    .section-title {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Make sidebar optimal for mobile (floating glass box) */
    .contact-sidebar {
        max-width: 90%;
        height: 90vh;
        top: 5vh;
        border-radius: 20px 0 0 20px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .sidebar-header {
        padding: 20px;
    }

    .sidebar-body {
        padding: 20px;
    }

    /* Tighter spacing for mobile sections */
    .services,
    .portfolio,
    .contact,
    .about {
        padding: 60px 0;
    }

    /* Stack contact methods nicely */
    .contact-grid {
        padding: 0 15px;
    }

    .method.glass-panel {
        min-width: 100% !important;
        padding: 20px 15px;
    }

    /* Fix mobile background fixed attachment zoom bug */
    body {
        background-attachment: scroll;
        background-size: cover;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(15px) scale(0.99);
    transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Sidebar Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    z-index: 2001;
    overflow-y: auto;
    transition: right 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.contact-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.sidebar-body {
    padding: 30px;
}

.btn-submit-contact {
    background: #000000 !important;
    color: #FFFFFF !important;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    background: var(--color-primary) !important;
    color: #000000 !important;
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.6) !important;
    transform: translateY(-2px);
}