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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust for navbar height */
}

:root {
    --primary-color: #ff0000;
    --secondary-color: #000000;
    --text-color: #ffffff;
    --background-dark: #1a1a1a;
    --background-light: #f5f5f5;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section {
    padding: 5rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-right: 0;  /* Remove right margin */
}

.logo-text {
    display: flex;
    align-items: center;
    margin-right: 2rem;
    margin-left: -5px;  /* Minimal space between logo and text */
}

.logo-text span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
    letter-spacing: 2px;
    white-space: nowrap;
    position: relative;
    left: -35px;  /* Pull text much closer to logo */
}

.contact-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-links a[href="#contact"] {
    background-color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links a[href="#contact"]:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    color: var(--text-color);
}

/* Home Section */
.home-section {
    padding: 0;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
}

/* Fix hero video white line on mobile */
.video-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    max-width: 100vw;
}

.youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.youtube-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
    width: 80%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subheading {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #cc0000;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,0,0,0.1)"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 20px 20px, 100px 100px;
    opacity: 0.1;
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto;
    box-shadow: 0 0 10px var(--primary-color);
}

.services-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: nowrap;
}

.service-card {
    width: 350px;
    height: 400px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.icon-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.crosshair::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.film-reel::before {
    content: '🎞️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    opacity: 0.5;
}

.scissors::before {
    content: '✂️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    opacity: 0.5;
}

.play-button::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.service-card:hover .service-icon {
    transform: rotate(10deg);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.service-card:hover .service-icon i {
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.service-card:hover .icon-overlay {
    opacity: 0.5;
    transform: rotate(-10deg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    flex-grow: 1;
}

.learn-more-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    text-align: center;
}

.learn-more-btn:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Clients Section */
.clients-section {
    background-color: var(--background-dark);
}

.portfolio-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.portfolio-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    font-size: 1.5rem;
}

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

.portfolio-nav.prev {
    left: 0;
}

.portfolio-nav.next {
    right: 0;
}

.portfolio-grid {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
}

.portfolio-grid::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-button {
    display: none !important;
}

.portfolio-item:hover .play-button {
    display: none !important;
}

.firearms-video .play-button {
    display: none !important;
}

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

.project-info {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.8);
}

.video-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.project-type {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.contact-info {
    margin: 30px 0;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-item span {
    color: var(--text-color);
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.social-btn span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-btn.instagram {
    background: var(--primary-color);
}

.social-btn.youtube {
    background-color: #FF0000;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Meet Team Button */
.meet-team-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
}

.meet-team-btn:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    background-color: var(--background-dark);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #cc0000;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

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

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #000000;
    padding: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-links a {
        margin: 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .about-content {
        padding-right: 0;
    }

    .portfolio-item {
        flex: 0 0 300px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button i {
        font-size: 1.5rem;
    }

    .portfolio-container {
        padding: 0 40px;
    }

    .portfolio-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .services-grid {
        flex-wrap: wrap;
    }
    
    .service-card {
        width: 280px;
        height: 320px;
    }

    /* Fix hero video white line on mobile */
    .video-container {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .home-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .youtube-background iframe {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
    }
    
    /* Fix client logos white gradient background */
    .client-section-wrapper {
        background: rgba(0,0,0,0.95);
    }
    
    /* Fix service detail section headers being cut off */
    .service-detail-section {
        padding-top: 100px;
    }
    
    .photo-grid-section {
        padding-top: 100px;
    }
    
    .drone-services-section {
        padding-top: 100px;
    }
    
    .service-detail-section h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .service-detail-container {
        padding: 1rem;
    }
    
    .service-main-content {
        padding: 1.5rem;
    }
    
    .service-main-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Fix team section title cutoff */
    .team-section {
        padding-top: 100px;
    }

    /* Hide "Our Work" section on mobile in video production page */
    .video-examples {
        display: none;
    }
}

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

.section {
    animation: fadeIn 1s ease-out;
}

.company-name {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 3;
    letter-spacing: 1px;
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

#back-to-top:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

#back-to-top i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    #back-to-top i {
        font-size: 1.2rem;
    }
}

/* Client Logo Carousel */
.client-logos-section {
    margin-top: 4rem;
    padding: 2rem 0;
}

.client-logos-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Fix client logos white gradient background */
.client-section-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.95);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    z-index: 3;
}

.client-logos-grid {
    display: inline-flex;
    align-items: center;
    gap: 4rem;
    padding: 2rem;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.client-logos-container {
    display: flex;
    width: fit-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Pause animation on hover */
.client-logos-grid:hover {
    animation-play-state: paused;
}

.client-logos-grid::-webkit-scrollbar {
    display: none;
}

.client-logo {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.client-logo img {
    opacity: 0.9;
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

/* Apply white filter only to specific logos */
.client-logo:nth-child(5) img,  /* Proving Grounds */
.client-logo:nth-child(6) img { /* ZRODelta */
    filter: brightness(0) invert(1);
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .client-logos-grid {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .client-logo {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .client-logos-grid {
        gap: 1rem;
        padding: 1rem;
    }
    
    .client-logo {
        width: 100px;
        height: 50px;
    }
}

/* BTS Gallery Styles */
.bts-gallery-container {
    margin-top: 5rem;
    padding: 0 2rem;
}

.bts-gallery-container h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 2rem;
}

.bts-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.bts-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    background: #000;
}

.bts-track::-webkit-scrollbar {
    display: none;
}

.bts-item {
    flex: 0 0 400px;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    scroll-snap-align: center;
}

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

.bts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    font-size: 1.5rem;
}

.bts-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.bts-nav.prev {
    left: 0;
}

.bts-nav.next {
    right: 0;
}

@media (max-width: 768px) {
    .bts-carousel {
        padding: 0 40px;
    }

    .bts-item {
        flex: 0 0 300px;
    }

    .bts-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .bts-gallery-container {
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .bts-item {
        flex: 0 0 250px;
    }
}

/* Service Detail Page Styles */
/* Fix service detail section headers being cut off */
.service-detail-section {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: var(--text-color);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-detail-section h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-main-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.service-main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    margin: 3rem 0;
}

.service-features h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.service-features li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.service-features li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.process-section {
    margin-top: 3rem;
}

.process-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.step i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.step p {
    font-size: 0.9rem;
    color: #aaa;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.equipment-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.equipment-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.equipment-section li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

.equipment-section li:last-child {
    border-bottom: none;
}

.cta-box {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: #aaa;
}

.cta-box .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-box .cta-button:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
}

.view-work-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

.view-work-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1200px) {
    .service-overview {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .service-detail-section {
        padding-top: 80px;
    }

    .service-detail-section h1 {
        font-size: 2.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        grid-template-columns: 1fr;
    }

    .service-main-content h2 {
        font-size: 2rem;
    }
}

/* Photo Grid Styles */
/* Fix YouTube videos being red */
.portfolio-item iframe,
.video-item iframe,
.video-examples iframe {
    filter: none !important;
    background: transparent !important;
}

/* Ensure video thumbnails display properly */
.video-item {
    position: relative;
}

.video-item iframe {
    filter: none !important;
    background: transparent !important;
    z-index: 1;
}

/* Remove any potential overlays from video examples */
.video-examples {
    position: relative;
}

.video-examples iframe {
    filter: none !important;
    background: transparent !important;
}

/* Ensure no red overlays on video thumbnails */
.video-grid iframe {
    filter: none !important;
    background: transparent !important;
}

/* Override any potential red backgrounds on video elements */
.video-item,
.video-item div,
.video-examples,
.video-examples div {
    background: transparent !important;
}

.video-item iframe,
.video-examples iframe,
.video-grid iframe {
    filter: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove any potential overlays */
.video-item::before,
.video-item::after,
.video-examples::before,
.video-examples::after {
    display: none !important;
}

/* Fix photo services alignment */
.photo-grid-section {
    padding-top: 120px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: var(--text-color);
}

/* Fix drone services header */
.drone-services-section {
    padding-top: 120px;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    color: var(--text-color);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photo-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.photo-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

@media (max-width: 1200px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .photo-grid-section {
        padding: 2rem 1rem;
    }
}

/* Photography Categories Styles */
.photography-categories {
    background-color: #0a0a0a;
    padding: 4rem 0;
}

.categories-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-section {
    margin-bottom: 4rem;
    background-color: rgba(20, 20, 20, 0.7);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.category-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.category-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail-item {
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Portrait orientation for people and animal photography */
.category-section:nth-child(3) .thumbnail-item,
.category-section:nth-child(4) .thumbnail-item {
    width: 250px;
    height: 375px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Ensure images are loaded at high quality */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .thumbnail-item img {
        image-rendering: auto;
    }
}

.thumbnail-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 1600px) {
    .categories-container {
        max-width: 1400px;
    }
    
    .category-section:nth-child(3) .thumbnail-item,
    .category-section:nth-child(4) .thumbnail-item {
        width: 200px;
        height: 300px;
    }
}

@media (max-width: 1200px) {
    .thumbnail-item {
        width: 350px;
        height: 262px;
    }
    
    .category-section:nth-child(3) .thumbnail-item,
    .category-section:nth-child(4) .thumbnail-item {
        width: 175px;
        height: 262px;
    }
}

@media (max-width: 768px) {
    .category-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail-item {
        width: 300px;
        height: 225px;
    }
    
    .category-section:nth-child(3) .thumbnail-item,
    .category-section:nth-child(4) .thumbnail-item {
        width: 150px;
        height: 225px;
    }
    
    .category-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .thumbnail-item {
        width: 250px;
        height: 187px;
    }
    
    .category-section:nth-child(3) .thumbnail-item,
    .category-section:nth-child(4) .thumbnail-item {
        width: 125px;
        height: 187px;
    }
    
    .category-section h2 {
        font-size: 1.8rem;
    }
}

/* Other Services Section */
.other-services {
    margin-top: 4rem;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.other-services h3 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.other-services-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.other-service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.other-service-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.other-service-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

.other-service-item:hover {
    transform: translateY(-5px);
}

.other-service-item:hover i {
    transform: scale(1.2);
    color: #ff3333;
}

@media (max-width: 768px) {
    .other-services-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .other-services {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

/* Awards Section */
.awards-section {
    margin: 4rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.awards-section h3 {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.award-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.award-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.award-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.award-item h4 {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .awards-section {
        padding: 1.5rem;
        margin: 3rem 0;
    }

    .award-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team-section {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    padding: 5rem 2rem;
}

.team-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.creative-team,
.marketing-team,
.partners-grid {
    display: grid;
    gap: 2rem;
}

.creative-team {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 5rem;
    gap: 2rem;
}

.marketing-team {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 5rem;
    gap: 2rem;
}

.partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.marketing-title {
    margin-top: 4rem;
    margin-bottom: 3rem;
    position: relative;
}

.marketing-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 1rem auto;
}

.partners-title {
    margin-top: 4rem;
    margin-bottom: 3rem;
    position: relative;
}

.partners-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 1rem auto;
}

.team-member {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.member-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Specific positioning for team member photos */
.team-member:has(img[alt="Logan Moore"]) .member-image img {
    object-position: top center;
}

.team-member:has(img[alt="Gio Jennings"]) .member-image img {
    object-position: center 30%;
}

.team-member:has(img[alt="Li Shy Sterlying"]) .member-image img {
    object-position: center 20%;
}

.team-member:has(img[alt="Jian Chen"]) .member-image img {
    object-position: center 25%;
}

.team-member:has(img[alt="Sarah Saldana"]) .member-image img {
    object-position: center 15%;
}

.team-member:has(img[alt="Alan Thoun"]) .member-image img {
    object-position: center 20%;
}

.team-member:has(img[alt="Linda Nguyen"]) .member-image img {
    object-position: center 25%;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.75rem 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 16em;
}

.member-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.member-role {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.member-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 12em;
    padding: 0;
    text-align: left;
}

@media (max-width: 1400px) {
    .creative-team,
    .marketing-team,
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .creative-team,
    .marketing-team,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-team,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        padding: 3rem 1rem;
    }
    
    .main-team {
        margin-bottom: 3rem;
    }
    
    .partners-title {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
} 

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile/Desktop Display Control */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Show mobile navigation only on mobile */
    .mobile-bottom-nav {
        display: flex !important;
    }
    
    /* Ensure mobile app container is visible */
    .mobile-app-container {
        display: block !important;
    }
}

/* Mobile App Container Styles */
.mobile-app-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10;
    overflow: hidden;
    display: none; /* Hidden by default on desktop */
}

/* Hide desktop navigation on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}

.mobile-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto;
    padding-bottom: 80px; /* Space for bottom nav */
    padding-top: 20px; /* Space from top for screens without headers */
}

/* Home screen doesn't need header padding */
#mobile-home {
    padding-top: 0;
}

.mobile-screen.active {
    transform: translateX(0);
}

.mobile-screen-header {
    padding: 100px 20px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.mobile-screen-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
    letter-spacing: 2px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    display: none; /* Hidden by default on desktop */
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
    padding: 0 10px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    min-width: 60px;
}

.mobile-nav-item.active {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.mobile-nav-item i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-item.active i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.mobile-nav-item span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.mobile-nav-item.active span {
    color: var(--text-color);
}

/* Mobile Static Hero */
.mobile-hero-static {
    position: relative;
    height: 70vh;
    overflow: hidden;
    margin: 40px 20px 0;
    border-radius: 15px;
}

.mobile-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('assets/bts-1.jpg'); /* Fallback background */
    background-size: cover;
    background-position: center;
}

.mobile-youtube-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.mobile-youtube-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw; /* Use viewport width */
    height: 56.25vw; /* Maintain 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.78%; /* Ensure it covers height */
    transform: translate(-50%, -50%) scale(2); /* Double scale for aggressive crop */
    pointer-events: none;
    border: none;
}

.mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    z-index: 2;
}

.mobile-hero-content {
    position: relative;
    text-align: center;
    color: var(--text-color);
    padding: 2rem;
    z-index: 3;
}

.mobile-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.mobile-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.mobile-hero-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.mobile-hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.mobile-hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1rem;
}

.mobile-hero-tagline span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 0;
}

.mobile-hero-tagline span:first-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile video responsive adjustments */
@media (max-width: 480px) {
    .mobile-youtube-background iframe {
        width: 140%;
        height: 140%;
        min-width: 140%;
        min-height: 250%; /* More aggressive sizing for smaller screens */
    }
}

@media (max-width: 320px) {
    .mobile-youtube-background iframe {
        width: 160%;
        height: 160%;
        min-width: 160%;
        min-height: 300%; /* Maximum sizing for very small screens */
    }
}

.mobile-quick-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 20px;
}

.quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 120px;
}

.quick-action:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

.quick-action i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.quick-action span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Mobile Services Grid */
.mobile-services-grid {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mobile-service-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.mobile-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.mobile-service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mobile-service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.mobile-service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mobile-service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}



/* Mobile Portfolio */
.mobile-portfolio-tabs {
    display: flex;
    gap: 10px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: none;
}

.mobile-portfolio-tabs::-webkit-scrollbar {
    display: none;
}

.mobile-tab {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mobile-tab.active {
    background: var(--primary-color);
    color: var(--text-color);
}

.mobile-portfolio-grid {
    padding: 0 20px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

/* Mobile Video Items */
.mobile-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    aspect-ratio: 16/9;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
}

.mobile-video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}

.video-play-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 3px; /* Slight offset for visual balance */
}

.mobile-video-wrapper:hover .video-play-overlay {
    background: rgba(255, 0, 0, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.mobile-video-item {
    aspect-ratio: 16/9;
}

.mobile-video-item .mobile-portfolio-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

/* Featured Video (Showreel) Styling */
.mobile-featured-video {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile About Content */
.mobile-about-content {
    padding: 20px;
}

.mobile-about-hero {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.mobile-about-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.mobile-about-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mobile-about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.mobile-awards-section {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.mobile-awards-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 1px;
}

.mobile-awards-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}

.mobile-awards-carousel::-webkit-scrollbar {
    display: none;
}

.mobile-award-item {
    flex: 0 0 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.mobile-award-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.mobile-award-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.mobile-award-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-team-preview {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.mobile-team-preview h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.mobile-team-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-team-button:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* Mobile Contact Content */
.mobile-contact-content {
    padding: 20px;
}

.mobile-contact-methods {
    margin-bottom: 40px;
}

.mobile-contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-contact-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.mobile-contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.mobile-contact-method h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 2px;
}

.mobile-contact-method p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}



/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: none; /* Hide hamburger menu on mobile */
    }
    
    /* Fix page titles being cut off by header */
    .service-detail-section {
        padding-top: 120px !important;
    }
    
    .photo-grid-section {
        padding-top: 120px !important;
    }
    
    .drone-services-section {
        padding-top: 120px !important;
    }
    
    .team-section {
        padding-top: 120px !important;
    }
    
    /* Ensure all page headers have enough top padding */
    .service-detail-section h1,
    .photo-grid-section h1,
    .drone-services-section h1,
    .team-section h1 {
        margin-top: 0;
        padding-top: 20px;
    }
    
    /* General fix for any section that might be cut off by navbar */
    body {
        padding-top: 0;
    }
    
    /* Ensure main content sections have proper spacing */
    .section {
        padding-top: 100px !important;
    }
    
    /* Specific fixes for service pages */
    .service-detail-container {
        padding-top: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: auto;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* Improved Navigation */
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
    }

    .logo-text span {
        font-size: 1.2rem;
        left: -25px;
    }

    /* Improved Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px; /* Better touch target */
    }

    /* Improved Sections */
    .section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    /* Improved Service Cards */
    .services-grid {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .service-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 300px;
        margin: 0 auto;
    }

    /* Improved Portfolio */
    .portfolio-item {
        flex: 0 0 280px;
        margin: 0 0.5rem;
    }

    .play-button {
        width: 50px;
        height: 50px;
        min-height: 44px; /* Better touch target */
    }

    .play-button i {
        font-size: 1.2rem;
    }

    .portfolio-container {
        padding: 0 20px;
    }

    .portfolio-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        min-height: 44px; /* Better touch target */
    }

    /* Improved Contact Form */
    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .submit-button {
        padding: 1rem 2rem;
        min-height: 48px;
        font-size: 1.1rem;
    }

    /* Improved Back to Top */
    #back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        min-height: 44px;
    }

    #back-to-top i {
        font-size: 1.2rem;
    }

    /* Improved Client Logos */
    .client-logos-grid {
        gap: 1rem;
        padding: 0 1rem;
    }

    .client-logo {
        width: 120px;
        height: 80px;
        min-height: 44px;
    }

    /* Improved Service Detail Pages */
    .service-detail-section {
        padding: 2rem 1rem;
    }

    .service-detail-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-sidebar {
        margin-top: 2rem;
    }

    .service-main-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    /* Improved Photo Grid */
    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .photo-grid-section {
        padding: 2rem 1rem;
    }

    /* Improved Awards */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .awards-section {
        padding: 2rem 1rem;
    }

    .award-item {
        margin: 0 auto;
        max-width: 350px;
    }

    /* Improved Team */
    .main-team,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-section {
        padding: 2rem 1rem;
    }

    .main-team {
        margin-bottom: 3rem;
    }

    .partners-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.25rem;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .service-card {
        max-width: 280px;
    }

    .portfolio-item {
        flex: 0 0 250px;
    }

    .client-logo {
        width: 100px;
        height: 70px;
    }

    .service-detail-section h1 {
        font-size: 2rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .category-section h2 {
        font-size: 1.8rem;
    }

    .thumbnail-item {
        width: 200px;
        height: 150px;
    }

    .category-section:nth-child(3) .thumbnail-item,
    .category-section:nth-child(4) .thumbnail-item {
        width: 180px;
        height: 135px;
    }

    /* Additional mobile fixes for smaller screens */
    .service-detail-section {
        padding-top: 90px;
    }
    
    .photo-grid-section {
        padding-top: 90px;
    }
    
    .drone-services-section {
        padding-top: 90px;
    }
    
    .service-detail-section h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .service-main-content h2 {
        font-size: 1.5rem;
    }
    
    .photo-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .service-detail-container {
        padding: 0.5rem;
    }
    
    .service-main-content {
        padding: 1rem;
    }

    /* Additional team section fixes for smaller screens */
    .team-section {
        padding-top: 90px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section {
        padding: 2rem 1rem;
    }

    .nav-container {
        flex-direction: row;
        gap: 0.5rem;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .portfolio-item:hover,
    .award-item:hover,
    .team-member:hover {
        transform: none;
    }

    .nav-links a:hover,
    .cta-button:hover,
    .submit-button:hover,
    .learn-more-btn:hover {
        background-color: var(--primary-color);
        color: var(--text-color);
    }

    /* Larger touch targets for mobile */
    .nav-links a,
    .cta-button,
    .submit-button,
    .learn-more-btn,
    .play-button,
    .portfolio-nav {
        min-height: 44px;
        min-width: 44px;
    }
} 
