/* Custom Styles for Yüksel Oto Kurtarma */

/* Font Family */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

/* Ensure sections after slider don't overlap */
main section,
body > section:not(.hero-slider) {
    position: relative;
    z-index: 2;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: #374151;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Removed old mobile menu styles - Now using yok-mobile-drawer system */

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Pulse Animation for Emergency */
@keyframes pulse-emergency {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.animate-pulse {
    animation: pulse-emergency 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Call Button Hover Effects */
.call-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.call-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.call-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Hover Effects */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* =============================================
   SERVICE ACCORDION (Mobile Only)
   ============================================= */

.service-accordion {
    border: 1px solid #e5e7eb;
}

.service-accordion-header {
    cursor: pointer;
    transition: background-color 0.2s ease;
    border: none;
    background: transparent;
}

.service-accordion-header:hover {
    background-color: #f9fafb;
}

.service-accordion-header:focus {
    outline: none;
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.service-accordion.active .service-accordion-content {
    max-height: 200px;
}

.service-accordion.active .service-accordion-header i.fa-chevron-down {
    transform: rotate(180deg);
}

.service-accordion-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* FAQ Accordion */
.faq-answer {
    max-height: 2000px;
    overflow: visible;
    transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 1;
}

.faq-answer.hidden {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* Mobile Drawer */
.yok-mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.yok-mobile-drawer-overlay.is-open {
    opacity: 1;
}

.yok-mobile-drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    padding: 1.25rem 1rem 1.5rem;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.yok-mobile-drawer.is-open {
    transform: translateY(0);
}

.yok-mobile-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.25rem 0 1rem;
}

.yok-mobile-drawer__title {
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
}

.yok-mobile-drawer__close {
    background: #e5e7eb;
    color: #0f172a;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.yok-mobile-drawer__close:hover,
.yok-mobile-drawer__close:focus-visible {
    background: #dbeafe;
    color: #1d4ed8;
}

.yok-mobile-drawer__section-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 800;
    color: #6b7280;
    margin: 0.25rem 0 0.5rem;
}

.yok-mobile-drawer__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.yok-mobile-drawer__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 0.8rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s ease;
}

.yok-mobile-drawer__link:hover,
.yok-mobile-drawer__link:focus-visible {
    border-color: var(--yok-mobile-bar-accent);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
    color: var(--yok-mobile-bar-accent);
}

.yok-mobile-drawer__link[aria-current="page"] {
    border-color: var(--yok-mobile-bar-accent);
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    color: var(--yok-mobile-bar-accent);
}

.yok-mobile-drawer__cta {
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
    color: #fff;
    padding: 1rem;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
    margin: 0.5rem 0 1rem;
}

.yok-mobile-drawer__cta h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 0.35rem;
}

.yok-mobile-drawer__cta p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.45;
}

.yok-mobile-drawer__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.yok-mobile-drawer__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: 12px;
    padding: 0.85rem;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yok-mobile-drawer__action:focus-visible,
.yok-mobile-drawer__action:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.yok-mobile-drawer__action--call {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.yok-mobile-drawer__action--whatsapp {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.yok-mobile-drawer__footnote {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
    line-height: 1.5;
}

@media (max-width: 420px) {
    .yok-mobile-drawer__list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .yok-mobile-drawer,
    .yok-mobile-drawer-overlay {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .yok-mobile-drawer,
    .yok-mobile-drawer-overlay {
        transition: none !important;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 15px !important;
        z-index: 100 !important;
    }
}

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

/* Loading Animation */
.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Accessibility Improvements */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Styles for Keyboard Navigation */
a:focus,
button:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Smooth Image Loading */
img {
    loading: lazy;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Selection Color */
::selection {
    background-color: #3b82f6;
    color: white;
}

::-moz-selection {
    background-color: #3b82f6;
    color: white;
}

/* Performance Optimization - GPU Acceleration */
.transform-gpu {
    transform: translateZ(0);
    will-change: transform;
}

/* Contact Form Styles */
.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Emergency Banner Animation */
.emergency-banner {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 50%, #ef4444 100%);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Trust Badge Styles */
.trust-badge {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile Optimization */
@media (max-width: 640px) {
    /* Ensure touch targets are at least 44x44px */
    button, a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Page Transition Effect */
.page-transition {
    opacity: 0;
    animation: pageIn 0.5s ease forwards;
}

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

/* Interactive Map Styles */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Review Stars */
.star-rating {
    color: #fbbf24;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Service Icon Animation */
.service-icon {
    transition: transform 0.3s ease;
}

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

/* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-separator {
    color: #9ca3af;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 140px;
    right: 20px;
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 90;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2563eb;
    transform: translateY(-5px);
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 80px !important;
        right: 15px !important;
        width: 45px !important;
        height: 45px !important;
        z-index: 90 !important;
    }
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* Price Table Styles */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.price-table th {
    background: #f3f4f6;
    font-weight: bold;
}

.price-table tr:hover {
    background: #f9fafb;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    color: #3b82f6;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Blog Post Styles */
.blog-post-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-card img {
    object-fit: cover;
    height: 200px;
}

/* Tag Styles */
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-info {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.alert-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.alert-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.alert-danger {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* Performance: Reduce layout shifts */
img[width][height] {
    height: auto;
}

/* Video Embed Responsive */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =============================================
   REVIEWS CAROUSEL STYLES
   ============================================= */

.reviews-carousel-container {
    position: relative;
    padding: 0 30px;
}

.reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 320px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .review-card {
        min-width: 380px;
    }
    
    .reviews-carousel-container {
        padding: 0 40px;
    }
}

.reviews-carousel-prev,
.reviews-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reviews-carousel-prev:hover,
.reviews-carousel-next:hover {
    background: #1D4ED8;
    color: white;
}

.reviews-carousel-prev:hover i,
.reviews-carousel-next:hover i {
    color: white;
}

.reviews-carousel-prev {
    left: -10px;
}

.reviews-carousel-next {
    right: -10px;
}

@media (max-width: 768px) {
    .reviews-carousel-prev,
    .reviews-carousel-next {
        width: 36px;
        height: 36px;
    }
    
    .reviews-carousel-prev {
        left: 0;
    }
    
    .reviews-carousel-next {
        right: 0;
    }
    
    .reviews-carousel-container {
        padding: 0 15px;
    }
    
    .reviews-carousel {
        gap: 12px;
        scroll-padding: 15px;
    }
    
    .review-card {
        min-width: calc(100vw - 60px) !important;
        max-width: calc(100vw - 60px);
        padding: 16px;
        scroll-snap-align: center;
    }
    
    .review-card p.italic {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* =============================================
   GALLERY & MEDIA SECTION STYLES
   ============================================= */

.gallery-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Masonry-style Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-item-label {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* Large items spanning multiple cells */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Video Gallery Styles */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.2);
}

.video-play-btn {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-play-btn i {
    color: #1D4ED8;
    font-size: 28px;
    margin-left: 4px;
}

.video-play-overlay:hover .video-play-btn {
    transform: scale(1.1);
    background: white;
}

.video-item.playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Video Lightbox/Popup Styles */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.video-lightbox.active {
    display: flex !important;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.8);
}

.video-lightbox-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 9999999;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
    line-height: 1;
}

.video-lightbox-close:hover {
    transform: scale(1.3);
    color: #ef4444;
}

/* Lightbox Styles */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-lightbox.active {
    display: flex !important;
}

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

.gallery-lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 9999999;
    text-shadow: 0 2px 15px rgba(0,0,0,0.8);
    line-height: 1;
}

.gallery-lightbox-close:hover {
    transform: scale(1.3);
    color: #ef4444;
}

.gallery-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    z-index: 9999999;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev {
    left: 30px;
}

.gallery-lightbox-next {
    right: 30px;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-lightbox-nav {
        width: 60px;
        height: 60px;
        font-size: 40px;
    }
    
    .gallery-lightbox-prev {
        left: 15px;
    }
    
    .gallery-lightbox-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 10px;
    }
    
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
    }
    
    .video-play-btn i {
        font-size: 20px;
    }
    
    .video-lightbox-content {
        width: 95%;
    }
    
    .gallery-lightbox-close,
    .video-lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    
    .gallery-lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 30px;
        padding: 10px;
    }
    
    .gallery-lightbox-prev {
        left: 10px;
    }
    
    .gallery-lightbox-next {
        right: 10px;
    }
    
    .gallery-lightbox img {
        max-width: 95%;
        max-height: 80vh;
    }
}

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

/* Why Us Cards Mobile */
.why-us-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-us-card:active {
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.15);
}

/* Coverage Areas Tag Cloud */
.coverage-tag {
    transition: all 0.2s ease;
}

.coverage-tag:active {
    transform: scale(0.95);
}

/* Media Accordion */
.media-accordion {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-accordion-header {
    transition: background-color 0.2s ease;
}

.media-accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.media-accordion-header.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.media-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.media-accordion-content.show {
    max-height: 600px;
}

/* Video Thumbnail Placeholder */
.video-thumbnail {
    min-height: 180px;
}
