:root {
    --primary: #D4AF37;
    --secondary: #8B5A2B;
    --accent: #F8EDE3;
    --dark: #1A1A1A;
    --light: #FFFFFF;
}

/* Essential animations that can't be replicated with Tailwind */

/* Custom animations for events page */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 8s linear infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 1s ease-out;
}

.hover\:shadow-4xl:hover {
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
}

/* Hamburger menu animations */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

#mobile-menu.active {
    transform: translateX(0);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.nav-link:hover::before {
    left: 100%;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.nav-link.active {
    color: var(--primary) !important;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes float-delay {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-6px) rotate(-0.5deg);
    }

    66% {
        transform: translateY(-10px) rotate(0.5deg);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.02);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-float-delay {
    animation: float-delay 5s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 6s ease-in-out infinite;
}

/* Enhanced hover effects for better user experience */
.hover\:scale-102:hover {
    transform: scale(1.02);
}

/* Back to top button visibility */
#back-to-top.visible {
    opacity: 1;
}

/* Carousel dot styles */
.carousel-dot {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.carousel-dot.active {
    background-color: #f59e0b;
    border-color: #f59e0b;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.carousel-dot.active:hover {
    background-color: #d97706;
    border-color: #d97706;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.8);
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Service Toggle Styles */
.service-tab {
    color: #6B7280;
    background: transparent;
}

.service-tab.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.service-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gallery Filter Button Styles */
.gallery-filter-btn {
    position: relative;
    overflow: hidden;
}

.gallery-filter-btn:not(.active):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.gallery-filter-btn.active {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* Bento Grid Layout */
.gallery-bento-grid {
    display: grid;
    gap: 1rem;
    width: 100%;

    /* Default: Simple grid for filtered views */
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
}

/* Medium devices: 2 columns for simple layout */
@media (min-width: 768px) {
    .gallery-bento-grid {
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }
}

/* Large devices: 3 columns for simple layout */
@media (min-width: 1024px) {
    .gallery-bento-grid {
        gap: 2rem;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 320px;
    }
}

/* Extra large devices: Enhanced spacing */
@media (min-width: 1280px) {
    .gallery-bento-grid {
        gap: 2.5rem;
        grid-auto-rows: 360px;
    }
}

/* Bento Layout - Only for 'All' tab when showing 3+ images */
.gallery-bento-grid.bento-layout {
    /* Mobile: Single column */
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 300px);
    grid-auto-rows: unset;
}

/* Medium devices: 2 columns bento */
@media (min-width: 768px) {
    .gallery-bento-grid.bento-layout {
        gap: 1.5rem;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 280px);
        grid-auto-rows: unset;
    }

    .gallery-bento-grid.bento-layout .item-1 {
        grid-area: 1 / 1 / 3 / 2;
    }

    .gallery-bento-grid.bento-layout .item-2 {
        grid-area: 1 / 2 / 2 / 3;
    }

    .gallery-bento-grid.bento-layout .item-3 {
        grid-area: 2 / 2 / 3 / 3;
    }

    .gallery-bento-grid.bento-layout .item-4 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .gallery-bento-grid.bento-layout .item-5 {
        grid-area: 3 / 2 / 5 / 3;
    }

    .gallery-bento-grid.bento-layout .item-6 {
        grid-area: 4 / 1 / 5 / 2;
    }

    .gallery-bento-grid.bento-layout .item-7 {
        grid-area: 5 / 1 / 6 / 3;
    }
}

/* Large devices: 4 column bento */
@media (min-width: 1024px) {
    .gallery-bento-grid.bento-layout {
        gap: 2rem;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 320px);
        grid-auto-rows: unset;
    }

    .gallery-bento-grid.bento-layout .item-1 {
        grid-area: 1 / 1 / 3 / 3;
    }

    .gallery-bento-grid.bento-layout .item-2 {
        grid-area: 1 / 3 / 2 / 4;
    }

    .gallery-bento-grid.bento-layout .item-3 {
        grid-area: 1 / 4 / 2 / 5;
    }

    .gallery-bento-grid.bento-layout .item-4 {
        grid-area: 2 / 3 / 3 / 4;
    }

    .gallery-bento-grid.bento-layout .item-5 {
        grid-area: 2 / 4 / 4 / 5;
    }

    .gallery-bento-grid.bento-layout .item-6 {
        grid-area: 3 / 1 / 4 / 2;
    }

    .gallery-bento-grid.bento-layout .item-7 {
        grid-area: 3 / 2 / 4 / 3;
    }
}

/* Extra large devices: Enhanced spacing for bento */
@media (min-width: 1280px) {
    .gallery-bento-grid.bento-layout {
        gap: 2.5rem;
        grid-template-rows: repeat(3, 360px);
    }
}

/* Reset grid positioning for simple layout */
.gallery-bento-grid:not(.bento-layout) .gallery-item {
    grid-area: unset !important;
}

/* Gallery Item Animation States */
.gallery-item {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced image hover effects */
.gallery-item img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Overlay smooth transitions */
.gallery-item .absolute {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Clients Carousel Animation */
.clients-carousel-wrapper {
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-carousel-track {
    display: flex;
    will-change: transform;
    transition: none;
}

/* Client logo hover effects */
.client-logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo:hover {
    transform: translateY(-4px);
}

.client-logo .group {
    position: relative;
    overflow: hidden;
}

.client-logo .group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.client-logo:hover .group::before {
    left: 100%;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .clients-carousel-track {
        transform: none !important;
    }

    .clients-carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .client-logo {
        scroll-snap-align: center;
        min-width: 200px;
    }
}

/* Line clamping utilities for responsive text */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Events Pagination Styles */
.page-btn {
    position: relative;
    overflow: hidden;
}

.page-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.page-btn:hover::before {
    left: 100%;
}

.page-btn:focus {
    outline: 2px solid #f59e0b;
    outline-offset: 2px;
}

/* Event card animation states */
.event-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pagination button hover effects */
#prev-btn:hover:not(:disabled),
#next-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

#prev-btn:active:not(:disabled),
#next-btn:active:not(:disabled) {
    transform: translateY(0);
}

/* Page number button animations */
.page-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.page-btn:active {
    transform: translateY(0) scale(0.95);
}

/* Smooth transitions for pagination info */
#pagination-info {
    transition: all 0.3s ease;
}

/* Responsive pagination spacing */
@media (max-width: 640px) {
    .page-btn {
        font-size: 0.875rem;
    }

    #prev-btn,
    #next-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* FAQ Styles */
.faq-tab {
    color: #6B7280;
    background: transparent;
}

.faq-tab.active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.faq-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.faq-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-answer {
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer.expanded {
    max-height: 500px !important;
    padding-bottom: 0;
}

/* FAQ Icon rotation */
.faq-icon-rotate {
    transform: rotate(180deg);
}

/* Service Details Page Animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-slide-in-left {
    animation: slideInFromLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInFromRight 0.8s ease-out;
}

.animate-fade-in-scale {
    animation: fadeInScale 0.6s ease-out;
}

/* Service card hover effects */
.service-feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Gallery image overlay effects */
.gallery-overlay {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-service {
    overflow: hidden;
    position: relative;
}

.gallery-item-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item-service:hover::before {
    opacity: 1;
}

/* Sidebar sticky scroll animations */
.sidebar-card {
    transition: all 0.3s ease;
}

.sidebar-card.scrolled {
    transform: scale(0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Service info gradient text */
.gradient-text {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced button hover effects for service page */
.service-btn-primary {
    position: relative;
    overflow: hidden;
}

.service-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-btn-primary:hover::before {
    left: 100%;
}

/* Trust indicators animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-indicator {
    animation: countUp 0.8s ease-out;
}

/* Responsive improvements for service details */
@media (max-width: 1024px) {
    .sidebar-card {
        position: relative !important;
        top: auto !important;
    }
}

/* Enhanced focus states for accessibility */
.service-link:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
    border-radius: 8px;
}

/* Service page scroll progress indicator */
.service-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #F59E0B, #D97706);
    transition: width 0.1s ease;
    z-index: 1000;
}

/* Contact Cards Styles */
.contact-card-wrapper {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card-wrapper:hover {
    transform: translateY(-8px);
}

/* Enhanced contact card animations */
@keyframes contact-card-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

.contact-card-wrapper:nth-child(2) {
    animation: contact-card-float 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Contact card responsive grid improvements */
@media (max-width: 639px) {
    .contact-card-wrapper {
        min-height: 260px !important;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .contact-card-wrapper:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .contact-card-wrapper {
        min-height: 320px;
    }
}

/* Enhanced hover effects for contact cards */
.contact-card-wrapper .group:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Contact card icon animations */
.contact-card-wrapper .group:hover i {
    animation: contact-icon-bounce 0.6s ease;
}

@keyframes contact-icon-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Contact card text hover effects */
.contact-card-wrapper .group:hover h3 {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Contact form enhancements */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Better focus states for contact form inputs */
.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
}

/* Contact page specific improvements */
@media (max-width: 480px) {
    .contact-card-wrapper .group {
        min-height: 240px !important;
        padding: 1.25rem !important;
    }

    .contact-card-wrapper h3 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .contact-card-wrapper .text-sm {
        font-size: 0.8rem !important;
    }
}

/* Additional Responsive Improvements for Service Details Page */

/* Enhanced responsive text scaling */
@media (max-width: 640px) {
    .service-details-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    .service-details-content h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .service-details-content h3 {
        font-size: 1.25rem !important;
        line-height: 1.4 !important;
    }

    .service-details-content h4 {
        font-size: 1.125rem !important;
        line-height: 1.4 !important;
    }
}

/* Improved gallery thumbnail responsiveness */
@media (max-width: 640px) {
    .gallery-thumb img {
        height: 3.5rem !important;
        /* 56px */
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .gallery-thumb img {
        height: 4.5rem !important;
        /* 72px */
    }
}

/* Better sidebar stacking on mobile */
@media (max-width: 1024px) {
    .service-sidebar {
        order: -1;
        margin-bottom: 2rem;
    }

    .service-main-content {
        order: 1;
    }
}

/* Enhanced button sizing for touch devices */
@media (max-width: 768px) {
    .service-cta-btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .service-secondary-btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Improved spacing for service cards on mobile */
@media (max-width: 640px) {
    .service-card {
        padding: 1rem !important;
        margin-bottom: 1rem;
    }

    .service-card-icon {
        width: 2.5rem !important;
        height: 2.5rem !important;
        font-size: 1rem !important;
    }
}

/* Better list item spacing on mobile */
@media (max-width: 640px) {
    .service-list-item {
        padding: 0.5rem 0;
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .service-list-icon {
        margin-right: 0.5rem;
        margin-top: 0.125rem;
        font-size: 0.75rem;
    }
}

/* Enhanced testimonial card for mobile */
@media (max-width: 640px) {
    .testimonial-card {
        padding: 1rem !important;
    }

    .testimonial-avatar {
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    .testimonial-text {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }
}

/* Better stats grid for small screens */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .stats-item:last-child {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }
}

/* Improved related services cards for mobile */
@media (max-width: 640px) {
    .related-service-item {
        padding: 0.75rem !important;
    }

    .related-service-icon {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.75rem !important;
    }

    .related-service-title {
        font-size: 0.875rem !important;
    }

    .related-service-price {
        font-size: 0.75rem !important;
    }
}

/* Better process steps layout for mobile */
@media (max-width: 640px) {
    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .process-step-number {
        margin-bottom: 0.75rem;
        margin-right: 0;
    }

    .process-step-content {
        text-align: left;
    }
}

/* Enhanced gallery main image sizing */
@media (max-width: 640px) {
    .gallery-main-image {
        height: 16rem !important;
        /* 256px */
    }
}

@media (min-width: 641px) and (max-width: 768px) {
    .gallery-main-image {
        height: 20rem !important;
        /* 320px */
    }
}

/* Better service package grid for small screens */
@media (max-width: 640px) {
    .service-package-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .service-package-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .service-package-item:last-child {
        grid-column: 1 / -1;
    }
}

/* Enhanced focus states for better accessibility */
.service-focus-ring:focus {
    outline: 2px solid #F59E0B;
    outline-offset: 2px;
    border-radius: 0.5rem;
}

/* Better gallery thumbnail focus */
.gallery-thumb:focus {
    outline: 3px solid #F59E0B;
    outline-offset: 2px;
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
    .touch-target {
        min-height: 44px;
        min-width: 44px;
    }

    .touch-target-large {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Event Details Page - Enhanced Laptop Layout */
@media (min-width: 1024px) and (max-width: 1279px) {

    /* Remove any potential sticky behavior on laptop screens */
    .event-sidebar,
    .event-meta-panel {
        position: static !important;
        top: auto !important;
    }

    /* Optimize spacing for laptop screens */
    .event-main-content {
        margin-right: 1rem;
    }

    /* Better card spacing for laptop viewports */
    .event-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Ensure proper non-sticky layout for all screen sizes */
.event-details-container {
    position: relative;
}

.event-details-container .sticky {
    position: static !important;
}