/* Global Reset and Base Styles - Mobile */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid #2c6eb8;
    outline-offset: 2px;
}

/* CSS Custom Properties for Brand Colors */
:root {
    --primary-blue: #2c6eb8;      /* Main brand blue */
    --primary-blue-vibrant: #3b7bc9; /* Slightly brighter variant for enhanced pop */
    --secondary-blue: #87ceeb;    /* Much brighter blue for excellent contrast (SkyBlue) */
    --primary-blue-rgb: 44, 110, 184;
    --primary-blue-vibrant-rgb: 59, 123, 201;
    --secondary-blue-rgb: 135, 206, 235;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    background: #000;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography - Mobile Optimized */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Buttons - Mobile */
.btn {
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-blue-vibrant-rgb), 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue-vibrant);
    border: 2px solid var(--primary-blue-vibrant);
}

.btn-secondary:hover {
    background: var(--primary-blue-vibrant);
    color: #fff;
    transform: translateY(-2px);
}

/* Navigation - Mobile */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(40, 40, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.navbar.scrolled {
    background: rgba(40, 40, 40, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 0.8rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 60px;
    flex-direction: column;
    background: rgba(40, 40, 40, 0.98);
    width: 100%;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    list-style: none;
    padding: 1rem 0;
    height: auto;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    transform: translateX(-20px);
}

.nav-menu.active {
    left: 0;
    display: flex;
    opacity: 1;
    transform: translateX(0);
    background: rgba(40, 40, 40, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-menu li {
    margin: 0.8rem 0;
    padding: 0 1rem;
    width: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    display: block;
    width: 100%;
    border-radius: 8px;
    min-height: 44px;
    min-width: 44px;
    background: rgba(40, 40, 40, 0.95);
}

.nav-menu a:hover, 
.nav-menu a.active {
    color: var(--primary-blue-vibrant);
    background: rgba(var(--primary-blue-rgb), 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 50%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
    z-index: 1001;
    width: 44px;
    height: 44px;
    padding: 8px;
    margin-right: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #2c6eb8;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

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

/* Hero Section - Mobile */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 15px;
    width: 100%;
    margin-top: 80px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.1s both;
    text-align: center;
}

.hero-content p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    text-align: center;
}

/* Team Section within Hero - Mobile */
.team-section {
    animation: fadeInUp 1s ease 0.3s both;
    padding: 0 15px;
}

.team-section .section-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-section .section-header h2 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.team-section .section-header p {
    color: #FFFFFF;
    font-size: 1rem;
    font-style: normal;
    max-width: 90%;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 110, 184, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.member-photo {
    margin-bottom: 1rem;
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(44, 110, 184, 0.2);
    transition: all 0.3s ease;
}

.team-photo:hover {
    border-color: rgba(44, 110, 184, 0.5);
    transform: scale(1.05);
}

.member-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.member-role {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

/* Landscape mode adjustments */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        padding: 80px 15px 40px;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .team-photo {
        width: 80px;
        height: 80px;
    }

    .member-info h3 {
        font-size: 1rem;
    }

    .member-role {
        font-size: 0.8rem;
    }
}

/* Image Placeholders */
.image-placeholder {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(44, 110, 184, 0.1);
    border-radius: 8px;
    font-style: italic;
    color: #666;
    text-align: center;
    border: 2px dashed rgba(44, 110, 184, 0.3);
    font-size: 0.9rem;
}

/* Global Section Styles */
.services, .experiences, .packages, .about, .gallery, .contact, .rentals {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 4rem 0;
    color: #fff;
    margin-top: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.section-header p {
    color: #FFFFFF;
    font-size: 1rem;
    font-style: normal;
    max-width: 90%;
    margin: 0 auto;
}

/* Mobile: List layout */
.services-container {
    display: block;
}

.services-list {
    display: block;
}

.services-desktop {
    display: none;
}

.service-item {
    margin-bottom: 1rem;
    position: relative;
}

/* Service Selector Cards - Mobile */
.service-selector-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
}

.service-selector-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(44, 110, 184, 0.2);
}

.service-selector-card.active {
    background: rgba(44, 110, 184, 0.2);
    border-color: #2c6eb8;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 110, 184, 0.3);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.service-selector-card .service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #fff;
}

.service-selector-card h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-preview {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Service Details - Mobile */
.service-detail-mobile {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.service-detail-mobile.active {
    height: auto;
    opacity: 1;
    margin-bottom: 1rem;
}

.service-gallery {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border: 1px solid rgba(44, 110, 184, 0.2);
    border-top: none;
    backdrop-filter: blur(10px);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.gallery-main {
    margin-bottom: 1rem;
}

.main-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.05);
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: rgba(44, 110, 184, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.thumbnail.active {
    border-color: #2c6eb8;
    transform: scale(1.1);
}

/* Image Placeholders */
.image-placeholder {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(44, 110, 184, 0.1);
    border-radius: 8px;
    font-style: italic;
    color: #666;
    text-align: center;
    border: 2px dashed rgba(44, 110, 184, 0.3);
    font-size: 0.9rem;
}

.main-image .image-placeholder {
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(44, 110, 184, 0.05);
    font-size: 0.8rem;
}

.main-image .image-placeholder i {
    font-size: 2rem;
    color: #FFA500;
    margin-bottom: 0.5rem;
}

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

/* Landscape Orientation Adjustments for Mobile */
@media (orientation: landscape) and (max-height: 600px) {
    .services {
        padding: 3rem 0;
    }
    
    .service-selector-card {
        padding: 1rem;
    }
    
    .service-selector-card .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-info {
        padding: 1rem;
    }
    
    .main-image {
        height: 180px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .service-selector-card {
        padding: 1rem;
    }
    
    .service-selector-card .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-selector-card h3 {
        font-size: 1rem;
    }
    
    .service-preview {
        font-size: 0.8rem;
    }
    
    .main-image {
        height: 200px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
    }
}

/* Holiday Experiences Section - Mobile */
.experiences {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.experiences .section-header h2 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.experiences .section-header p {
    color: #FFFFFF;
    font-size: 1rem;
    max-width: 90%;
    margin: 0 auto;
}

.experiences-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 110, 184, 0.2);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(44, 110, 184, 0.3);
}

.experience-icon {
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
}

.experience-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.experience-card p {
    color: #FFFFFF;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Packages Section - Mobile */
.packages {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.packages-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Hide desktop layout on mobile */
.packages-list-desktop {
    display: none;
}

/* Show mobile layout */
.packages-list-mobile {
    display: block;
}

.package-item {
    margin-bottom: 1rem;
    position: relative;
}

.gallery-main {
    width: 100%;
}

.main-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.packages-showcase {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Landscape Orientation Adjustments for Mobile */
@media (orientation: landscape) and (max-height: 600px) {
    .packages {
        padding: 3rem 0;
    }
    
    .main-image {
        height: 200px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .main-image {
        height: 200px;
    }
}

/* About Section - Mobile */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.about-text h3 {
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-team-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(44, 110, 184, 0.3);
    transition: all 0.3s ease;
}

.about-team-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 110, 184, 0.5);
}

.about-placeholder {
    width: 100%;
    max-width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(44, 110, 184, 0.3);
    text-align: center;
    padding: 1.5rem;
}

.about-placeholder i {
    font-size: 3rem;
    color: #FFA500;
    margin-bottom: 1rem;
}

.about-placeholder p {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    font-style: italic;
}

/* Gallery Section - Mobile */
.gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.gallery-container {
    display: block;
    margin-top: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

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

.gallery-item:hover .image-hint {
    opacity: 1;
}

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

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.image-hint {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

/* Image Modal/Lightbox - Mobile */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.image-modal.active {
    display: flex;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 2001;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.image-modal.active .modal-image {
    transform: scale(1);
    opacity: 1;
}

/* Loading indicator */
.modal-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(44, 110, 184, 0.2);
    border-top-color: #2c6eb8;
    border-radius: 50%;
    animation: modal-spinner 0.8s linear infinite;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-modal.active .modal-content::before {
    opacity: 1;
}

.image-modal.active .modal-image[src] + .modal-content::before {
    opacity: 0;
}

@keyframes modal-spinner {
    to {
        transform: rotate(360deg);
    }
}

.modal-close {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2002;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
    .gallery-grid {
        gap: 1rem;
    }

    .image-hint {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Hide desktop videos on mobile */
.desktop-videos {
    display: none;
}

/* Show mobile carousel */
.mobile-video-carousel {
    display: block;
}

/* Video Carousel Styles */
.video-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-slide video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #000;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-prev,
.carousel-next {
    background: rgba(44, 110, 184, 0.2);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(44, 110, 184, 0.4);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(44, 110, 184, 0.4);
}

.carousel-dot.active {
    background: #2c6eb8;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(44, 110, 184, 0.4);
}

/* Video Gallery - Mobile */
.video-gallery {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.video-gallery h2 {
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-intro {
    color: #fff;
    text-align: center;
    font-style: normal;
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section - Mobile */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 25px rgba(44, 110, 184, 0.2);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(44, 110, 184, 0.2);
    border-radius: 10px;
    font-size: 0.95rem;
    color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c6eb8;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237FFFD4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-group select option {
    background: #2a2a2a;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.4);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 1.5rem auto 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-blue-vibrant-rgb), 0.6);
}

/* Very small screens */
@media (max-width: 480px) {
    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 1.2rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Footer - Mobile */
.footer {
    background: #2a2a2a;
    color: #fff;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.footer-section h3 {
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.footer-section p {
    color: #FFFFFF;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    text-align: center;
}

.footer-section ul li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section ul li a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    min-height: 44px;
    min-width: 44px;
    padding: 10px;
    line-height: 24px;
    box-sizing: border-box;
}

.footer-section ul li a:hover {
    color: #2c6eb8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.social-links .instagram-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    min-height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-links .instagram-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.social-links .instagram-link i {
    color: #2c6eb8;
}

.social-links .instagram-link span {
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Landscape Orientation Adjustments for Mobile */
@media (orientation: landscape) and (max-height: 600px) {
    .hero {
        min-height: 100vh;
        padding: 80px 15px 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .btn {
        width: auto;
        min-width: 140px;
        max-width: 200px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-image {
        max-width: 250px;
        height: auto;
        filter: drop-shadow(0 4px 15px rgba(44, 110, 184, 0.25));
        transition: all 0.3s ease;
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
    
    .services, .experiences, .packages, .about, .gallery, .contact {
        padding: 3rem 0;
    }
    

    
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-placeholder {
        height: 250px;
    }
    
    .hero-placeholder i {
        font-size: 3rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    

    
    .experience-card {
        padding: 2rem 1rem;
    }
    
    .experience-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Meet the Team Section - Mobile */
.team {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team .section-header h2 {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.team .section-header p {
    color: #FFFFFF;
    font-size: 1rem;
    font-style: normal;
    margin-top: 0.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 110, 184, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(44, 110, 184, 0.2);
    transition: all 0.3s ease;
}

.team-photo:hover {
    border-color: rgba(44, 110, 184, 0.5);
    transform: scale(1.05);
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(44, 110, 184, 0.1);
    border: 3px dashed rgba(44, 110, 184, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
}

.photo-placeholder i {
    font-size: 3rem;
    color: #FFA500;
    margin-bottom: 0.5rem;
}

.photo-placeholder p {
    color: #666;
    font-size: 0.8rem;
    font-style: italic;
    margin: 0;
}

.member-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.member-role {
    color: var(--secondary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

/* Landscape Orientation Adjustments for Mobile */
@media (orientation: landscape) and (max-height: 600px) {
    .team {
        padding: 3rem 0;
    }
    
    .team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .photo-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .photo-placeholder i {
        font-size: 2.5rem;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.85rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .team-member {
        padding: 1.5rem 1rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
    
    .photo-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .photo-placeholder i {
        font-size: 2.5rem;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
}

/* Mobile-specific styles */
@media screen and (max-width: 768px) {
    .packages {
        padding: 4rem 1rem;
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .rentals-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0;
        align-items: stretch;
    }

    .rental-card {
        background: rgba(40, 40, 40, 0.95);
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
        height: 100%;
    }

    .rental-image {
        width: 100%;
        height: 240px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

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

    .rental-info {
        padding: 1rem;
        text-align: center;
        background: rgba(40, 40, 40, 0.95);
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .rental-info h3 {
        color: var(--secondary-blue);
        font-size: 1.2rem;
        margin-bottom: 0;
        font-weight: 600;
    }

    .price-info {
        margin-top: 0.3rem;
    }

    .price-info p {
        color: var(--secondary-blue);
        font-size: 1rem;
        margin: 0;
    }

    .price-info span {
        color: #fff;
        font-weight: 500;
    }

    .image-hint {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.9rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }



    .contact-button {
        display: block;
        width: 100%;
        padding: 1rem;
        background-color: #2c6eb8;
        color: white;
        text-decoration: none;
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease;
        border: none;
        font-size: 1rem;
        margin-top: auto;
    }

    .contact-button:hover, 
    .contact-button:focus {
        background-color: #1e4c82;
        color: white;
    }

    .contact-button:active {
        background-color: #1a4374;
    }

    /* Navigation adjustments for mobile */
    .navbar {
        padding: 0.5rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo img {
        height: 50px !important;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Image Modal/Lightbox - Mobile Fixes */
    .image-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        display: none;
        padding: 20px;
        box-sizing: border-box;
    }

    .image-modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 9998;
    }

    .modal-content {
        position: relative;
        z-index: 10000;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-image {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 8px;
    }

    .modal-close {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: #fff;
        font-size: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10001;
        cursor: pointer;
    }



    .image-hint {
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        opacity: 0.8;
        pointer-events: none; /* Ensures it doesn't interfere with image clicks */
    }

    /* Rentals Section */
    .rentals {
        padding: 2rem 0;
    }

    .section-header h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .rentals-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .rental-card {
        background: rgba(40, 40, 40, 0.95);
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
        height: 100%;
    }

    .rental-image {
        width: 100%;
        height: 240px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

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

    .rental-info {
        padding: 1rem;
        text-align: center;
        background: rgba(40, 40, 40, 0.95);
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .rental-info h3 {
        color: var(--secondary-blue);
        font-size: 1.2rem;
        margin-bottom: 0;
        font-weight: 600;
    }

    .price-info {
        margin-top: 0;
        margin-bottom: 1rem;
    }

    .price-info p {
        color: var(--secondary-blue);
        font-size: 1rem;
        margin: 0;
    }

    .price-info span {
        color: var(--secondary-blue);
        font-weight: 500;
        margin-right: 0.25rem;
    }

    .contact-button {
        display: block;
        width: 100%;
        padding: 1rem;
        background-color: #2c6eb8;
        color: white;
        text-decoration: none;
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease;
        border: none;
        font-size: 1rem;
        margin-top: auto;
    }

    .contact-button:hover, 
    .contact-button:focus {
        background-color: #1e4c82;
        color: white;
    }

    .contact-button:active {
        background-color: #1a4374;
    }
}

/* Pagination Styles - Mobile */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.pagination form {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    justify-content: center;
}

.pagination-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(44, 110, 184, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 100px;
}

.pagination-button:hover:not(:disabled) {
    background: rgba(44, 110, 184, 0.2);
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .pagination form {
        gap: 0.5rem;
    }

    .pagination-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 80px;
    }

    .pagination-info {
        font-size: 0.8rem;
    }
}

.hero-image {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(44, 110, 184, 0.25));
    transition: all 0.3s ease;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

.rental-info h2 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--primary-color);
}

.footer-link {
    display: inline-block;
    padding: 0.75rem;
    min-height: 44px;
    min-width: 44px;
}

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

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

.mobile-controls {
    display: block;
    margin-top: 1rem;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.carousel-prev,
.carousel-next {
    background: rgba(44, 110, 184, 0.2);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: rgba(44, 110, 184, 0.4);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(44, 110, 184, 0.4);
}

.carousel-dot.active {
    background: #2c6eb8;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(44, 110, 184, 0.4);
}

/* Video Gallery - Mobile */
.video-gallery {
    padding: 2rem 1rem;
}

.testimonial-intro {
    color: #fff;
    text-align: center;
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

/* Transcript Button - Mobile */
.transcript-btn {
    display: inline-block;
    width: 100%;
    margin: 1rem 0;
    padding: 14px 24px;
    background: rgba(44, 110, 184, 0.2);
    color: #fff;
    border: 1px solid rgba(44, 110, 184, 0.4);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(5px);
}

.transcript-btn:hover {
    background: rgba(44, 110, 184, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 110, 184, 0.2);
}

.transcript-btn:focus {
    outline: 2px solid #2c6eb8;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(44, 110, 184, 0.5);
    background: rgba(44, 110, 184, 0.3);
}

/* Transcript Modal - Mobile */
.transcript-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.transcript-modal .modal-content {
    position: relative;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    width: 95%;
    max-width: 600px;
    margin: 1rem;
    border: 1px solid rgba(44, 110, 184, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    max-height: 85vh;
    overflow-y: auto;
}

.transcript-content {
    color: #fff;
    padding-right: 1rem;
}

.transcript-content h3 {
    color: #2c6eb8;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

#transcript-text {
    line-height: 1.6;
    font-size: 1rem;
    white-space: pre-wrap;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.transcript-modal .modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.transcript-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.transcript-modal .modal-close:focus {
    outline: 2px solid #2c6eb8;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(44, 110, 184, 0.5);
}

/* Very small screens */
@media (max-width: 360px) {
    .transcript-modal .modal-content {
        padding: 1.2rem;
        margin: 0.5rem;
    }

    .transcript-content h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    #transcript-text {
        font-size: 0.95rem;
    }

    .transcript-modal .modal-close {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/* Cancellation Policy - Mobile */
.cancellation-policy {
    padding: 1.5rem;
    margin: 3rem 1rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.4) 0%, rgba(42, 42, 42, 0.4) 100%);
    border-radius: 15px;
    border: 1px solid rgba(44, 110, 184, 0.1);
}

.policy-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.policy-text p {
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #2c6eb8;
    font-size: 0.9rem;
}

.policy-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.policy-text li {
    line-height: 1.4;
    margin: 0;
}



.placeholder-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 1.1em;
    color: #666;
    width: 100%;
    padding: 15px;
}

.contact-button {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #2c6eb8;
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    margin-top: auto;
}

.contact-button:hover, 
.contact-button:focus {
    background-color: #1e4c82;
    color: white;
}

.contact-button:active {
    background-color: #1a4374;
} 

.hero-carousel {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.carousel-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
    display: block;
    opacity: 1;
}

.carousel-nav {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 2;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(44, 110, 184, 0.6);
}

.carousel-dot.active {
    background: #2c6eb8;
    transform: scale(1.2);
} 

.promo-link {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.promo-link:hover, .promo-link:active {
    transform: scale(1.05);
}

.promo-link:focus {
    outline: 2px solid #2c6eb8;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Mobile Carousel Redesign - Navigation Below Content */

/* Testimonial Carousel Mobile Layout */
@media screen and (max-width: 768px), screen and (max-height: 600px) {
    .testimonial-carousel {
        position: relative;
        width: 100%;
        margin: 0 auto 2rem;
        display: block; /* Change from flex to block for mobile */
    }

    .carousel-container {
        width: 100%;
        overflow: hidden;
        border-radius: 15px;
        margin-bottom: 1rem;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .carousel-slide {
        min-width: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        display: none;
    }

    .carousel-slide.active {
        opacity: 1;
        display: block;
    }

    .video-wrapper {
        width: 100%;
        margin-bottom: 1rem;
    }

    .video-wrapper video {
        width: 100%;
        border-radius: 10px;
        background: #000;
        aspect-ratio: 16/9;
    }

    /* Hide navigation arrows on mobile - they'll be repositioned below */
    .carousel-nav-btn {
        display: none; /* Hide side arrows on mobile */
    }

    /* Mobile Navigation Controls Container */
    .mobile-carousel-controls {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        width: 100%;
    }

    /* Mobile Arrow Navigation */
    .mobile-carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    .mobile-carousel-nav .carousel-nav-btn {
        display: flex; /* Show arrows in mobile nav */
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(44, 110, 184, 0.2);
        border: 1px solid rgba(44, 110, 184, 0.4);
        color: #fff;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .mobile-carousel-nav .carousel-nav-btn:hover,
    .mobile-carousel-nav .carousel-nav-btn:active {
        background: rgba(44, 110, 184, 0.4);
        transform: scale(1.1);
    }

    .mobile-carousel-nav .carousel-nav-btn:focus {
        outline: 2px solid #2c6eb8;
        outline-offset: 2px;
        box-shadow: 0 0 0 3px rgba(44, 110, 184, 0.5);
    }

    .mobile-carousel-nav .carousel-nav-btn i {
        font-size: 1.4rem;
    }

    /* Mobile Dots Navigation */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin: 0;
        padding: 0;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .carousel-dot:hover,
    .carousel-dot:active {
        background: rgba(44, 110, 184, 0.6);
    }

    .carousel-dot.active {
        background: #2c6eb8;
        transform: scale(1.2);
        box-shadow: 0 0 10px rgba(44, 110, 184, 0.4);
    }

    /* Transcript Button Mobile Styling */
    .transcript-btn {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto;
        padding: 12px 24px;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
        color: #fff;
        border: none;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.3);
    }

    .transcript-btn:hover,
    .transcript-btn:active {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(var(--primary-blue-vibrant-rgb), 0.4);
        background: linear-gradient(135deg, var(--primary-blue-vibrant) 0%, var(--primary-blue) 100%);
    }

    .transcript-btn:focus {
        outline: 2px solid #2c6eb8;
        outline-offset: 2px;
        box-shadow: 0 0 0 3px rgba(var(--primary-blue-rgb), 0.5);
    }

    /* Event Videos Carousel - No Transcript Button */
    .event-videos-carousel .video-wrapper {
        margin-bottom: 0; /* Remove bottom margin since no transcript button */
    }

    /* Specific styling for Event Videos section */
    .video-gallery:has(.event-videos-carousel) .mobile-carousel-controls {
        margin-top: 1.5rem; /* Add more space since no transcript button */
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .mobile-carousel-nav .carousel-nav-btn {
        width: 45px;
        height: 45px;
    }

    .mobile-carousel-nav .carousel-nav-btn i {
        font-size: 1.2rem;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
    }

    .transcript-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        max-width: 280px;
    }

    .mobile-carousel-nav {
        gap: 1.5rem;
    }

    /* Adjust video gallery for very small screens */
    .video-gallery {
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
    }

    .video-gallery h2 {
        font-size: 1.5rem;
    }

    .testimonial-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
}

/* Hide desktop dots on mobile, show mobile controls */
@media screen and (max-width: 768px), screen and (max-height: 600px) {
    .desktop-dots {
        display: none !important;
    }
    
    .mobile-carousel-controls {
        display: flex !important;
    }
}

/* Hide mobile controls on desktop, show desktop dots */
@media screen and (min-width: 769px) and (min-height: 601px) {
    .mobile-carousel-controls {
        display: none !important;
    }
    
    .desktop-dots {
        display: flex !important;
    }
}

/* Image Gallery - Match video gallery styling */
.image-gallery {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.image-gallery h2 {
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Adjust video gallery for very small screens */
.video-gallery {
    padding: 1.5rem 1rem;
    margin-bottom: 3rem;
}

.video-gallery h2 {
    font-size: 1.5rem;
}

.testimonial-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

/* Adjust image gallery for very small screens */
.image-gallery {
    padding: 1.5rem 1rem;
    margin-bottom: 3rem;
}

.image-gallery h2 {
    font-size: 1.5rem;
}

/* Featured Rentals Section - Mobile */
.featured-rentals {
    margin: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
}

.featured-rentals h2 {
    text-align: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.featured-row .rental-card {
    margin: 0;
}

/* Rental Tabs Section - Mobile */
.rental-tabs-section {
    margin: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
}

.rental-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Mobile-specific tab layout */
@media (max-width: 768px) {
    .rental-tabs {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        order: 1;
    }

    .rental-tabs-content {
        order: 2;
    }

    /* When a tab is active, move non-active tabs below content */
    .rental-tab-panel.active ~ .rental-tabs {
        order: 3;
    }

    .rental-tab {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(44, 110, 184, 0.2);
        border-radius: 12px;
        padding: 1rem;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .rental-tab.active {
        background: rgba(44, 110, 184, 0.2);
        border-color: rgba(44, 110, 184, 0.5);
        position: relative;
    }

    .rental-tab.active::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        transform: translateX(-50%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid rgba(44, 110, 184, 0.5);
    }

    .tab-title {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-blue);
    }

    .tab-description {
        font-size: 0.85rem;
        color: #fff;
        opacity: 0.8;
    }

    .tab-price {
        font-size: 0.9rem;
        color: var(--primary-blue);
        font-weight: 500;
    }

    .rental-tab-panel {
        display: none;
        margin: 1rem 0;
    }

    .rental-tab-panel.active {
        display: block;
        animation: fadeIn 0.3s ease-in-out;
    }

    .rental-tab-panel .rental-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Animation for content appearance */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Mobile Section Divider */
@media (max-width: 768px) {
    .mobile-section-divider {
        display: block;
        text-align: center;
        padding: 2rem 1rem;
        margin: 1rem 0;
    }

    .mobile-section-divider h2 {
        font-size: 1.5rem;
        margin: 0.5rem 0;
        font-weight: 600;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .mobile-section-divider p {
        color: #fff;
        opacity: 0.8;
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }
}

.jump-to-top-btn {
    display: none;
}

@media (max-width: 768px) {
    .jump-to-top-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: rgba(44, 110, 184, 0.2);
        border: 1px solid rgba(44, 110, 184, 0.4);
        color: #fff;
        padding: 0.8rem 1.5rem;
        border-radius: 25px;
        margin: 1rem auto 0;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        backdrop-filter: blur(5px);
    }

    .jump-to-top-btn:hover,
    .jump-to-top-btn:focus {
        background: rgba(44, 110, 184, 0.3);
        transform: translateY(-2px);
    }

    .jump-to-top-btn:active {
        transform: translateY(0);
    }

    .jump-to-top-btn i {
        font-size: 0.8rem;
    }
}
