/* Global Reset and Base Styles - Desktop */
* {
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 {
    font-size: 3.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: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

.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: #000;
}

/* Navigation - Desktop */
.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: 1.5rem 0 1rem;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

.nav-logo img {
    height: 90px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo img {
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    position: relative;
    padding: 0;
    margin: 0;
    background: none;
    width: auto;
    box-shadow: none;
    backdrop-filter: none;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
    min-height: 44px;
    min-width: 44px;
}

.nav-menu a:hover {
    color: var(--primary-blue-vibrant);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    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: 80%;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 2px 0;
    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);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

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

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero-content h1 {
    background: linear-gradient(135deg, #2c6eb8 0%, #2c6eb8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.hero-content > p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Section within Hero */
.team-section {
    animation: fadeInUp 1s ease 0.3s both;
    margin-top: 2rem;
}

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

.section-header h2 {
    font-size: 2rem;
    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: 0.5rem;
}

.section-header p {
    color: #FFFFFF;
    font-size: 1rem;
    font-style: normal;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px 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 15px 35px rgba(44, 110, 184, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.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);
}

.member-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    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;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 6px 20px rgba(44, 110, 184, 0.25));
    transition: all 0.3s ease;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 10px 30px rgba(44, 110, 184, 0.35));
}

.hero-logo {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(44, 110, 184, 0.3));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(44, 110, 184, 0.4));
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    text-align: center;
    padding: 2rem;
}

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

.hero-placeholder p {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    font-style: italic;
}

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

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

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

.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;
}

.section-header p {
    color: #FFFFFF;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop Layout */
.services-container {
    display: block;
}

.services-list {
    display: none;
}

.services-desktop {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: stretch;
    min-height: 600px;
}

.services-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Service Details & Gallery */
.service-details {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
}

.service-detail.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.service-gallery {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(44, 110, 184, 0.2);
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    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: 1rem;
    height: 150px;
}

.thumbnail {
    aspect-ratio: unset;
    height: 100%;
    border-radius: 10px;
    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(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.thumbnail.active {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Service Selector Cards */
.service-selector-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    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: translateX(10px);
    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: translateX(10px);
    box-shadow: 0 8px 25px rgba(44, 110, 184, 0.3);
}

.service-selector-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.3);
}

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

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

/* Experiences Section */
.experience-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    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%);
    color: #000;
}

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

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

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

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

/* Image hint text */
.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;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

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

.about-text p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.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: 300px;
    height: 300px;
    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: 2rem;
}

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

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

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

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

/* 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: 1200px;
    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;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.gallery-item {
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.gallery-item:hover,
.gallery-item:focus {
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(44, 110, 184, 0.3);
    outline: none;
}

.gallery-item:focus {
    box-shadow: 0 0 0 3px rgba(44, 110, 184, 0.5), 0 8px 25px rgba(44, 110, 184, 0.3);
}

.gallery-item:hover .image-hint,
.gallery-item:focus .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.02);
}

.image-hint {
    position: absolute;
    bottom: 10px;
    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.8;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 2;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

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

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

.modal-overlay {
    position: absolute;
    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;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    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: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

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

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 350px;
    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: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-vibrant) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.3);
}

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

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

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(44, 110, 184, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    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: 120px;
}

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

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

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section.quick-links {
    grid-column: 1;
}

.footer-section.rentals-info {
    grid-column: 2;
}

.footer-section.social {
    grid-column: 3;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    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;
}

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

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

.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;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    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;
    border-top: 1px solid #555;
    color: #ccc;
}

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

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

/* Large Desktop Adjustments */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .nav-container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Medium Desktop Adjustments */
@media (min-width: 1024px) and (max-width: 1399px) {
    .navbar {
        padding: 1.2rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.8rem 0;
    }
    
    .nav-logo img {
        height: 65px !important;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 45px !important;
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-image {
        max-width: 400px;
        height: 400px;
    }
    
    .services {
        padding: 5rem 0;
    }
    
    .gallery {
        padding: 5rem 0;
    }
    
    .contact {
        padding: 5rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
    
    .image-gallery {
        max-width: 1000px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1023px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.7rem 0;
    }
    
    .nav-logo img {
        height: 60px !important;
    }
    
    .navbar.scrolled .nav-logo img {
        height: 40px !important;
    }
    
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-menu a {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 30px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        max-width: 350px;
        height: 350px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .image-gallery {
        max-width: 800px;
        padding: 1.5rem;
    }
}

/* Small screen adjustments for image hints */
@media (max-width: 480px) {
    .image-hint {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

/* Meet the Team Section - Desktop */
.team {
    padding: 6rem 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;
}

.team .section-header p {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-style: normal;
    margin-top: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px 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 15px 35px rgba(44, 110, 184, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px 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: 200px;
    height: 200px;
    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: 4rem;
    color: #FFA500;
    margin-bottom: 0.5rem;
}

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

.member-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    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;
}

/* Rentals Section - Desktop */
.rentals {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.rental-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 110, 184, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

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

.rental-card:hover .rental-image img {
    transform: scale(1.05);
}

.rental-info {
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.5rem;
}

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

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.price-info p {
    color: var(--secondary-blue);
    font-size: 1.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;
}

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

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

/* Media Queries for Rental Grid */
@media (max-width: 1200px) {
    .rentals-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .rentals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .rental-card {
        display: flex;
        flex-direction: row;
        height: 120px;
        align-items: center;
        cursor: pointer;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .rental-card.expanded {
        height: 220px;
    }

    .rental-image {
        width: 120px;
        height: 120px;
        flex-shrink: 0;
    }

    .rental-info {
        flex: 1;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .rental-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .price-info {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .rental-card.expanded .price-info {
        opacity: 1;
        transform: translateY(0);
    }

    .rental-info::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.3s ease;
        color: #2c6eb8;
    }

    .rental-card.expanded .rental-info::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .price-info p {
        font-size: 0.9rem;
    }
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.pagination form {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.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;
}

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

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

.pagination-info {
    color: #fff;
    font-size: 0.9rem;
    padding: 0 1rem;
}

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

.footer-link {
    display: inline-block;
    padding: 0.75rem;
    min-height: 44px;
    min-width: 44px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2c6eb8;
}

/* Video Testimonials Section */
.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;
}

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

/* Desktop Videos */
.desktop-videos {
    display: block;
}

.desktop-videos .carousel-container {
    display: flex;
    justify-content: center;
}

.desktop-videos .carousel-track-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.desktop-videos .carousel-track {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.desktop-videos .carousel-slide {
    width: 100%;
}

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

/* Video Wrapper and Transcript Button */
.video-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

.transcript-btn {
    display: block;
    width: 200px;
    margin: 1rem auto 0;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2c6eb8 0%, #3b7bc9 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(44, 110, 184, 0.3);
}

.transcript-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 123, 201, 0.4);
    background: linear-gradient(135deg, #3b7bc9 0%, #2c6eb8 100%);
}

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

/* Transcript Modal */
.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;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-content {
    position: relative;
    background: rgba(40, 40, 40, 0.95);
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border: 1px solid rgba(44, 110, 184, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.transcript-content {
    color: #fff;
    max-height: 70vh;
    overflow-y: auto;
}

.transcript-content h3 {
    color: #2c6eb8;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

#transcript-text {
    line-height: 1.6;
    font-size: 1.1rem;
    white-space: pre-wrap;
    margin-bottom: 1rem;
}

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

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

.modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 110, 184, 0.5);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .transcript-btn {
        width: 100%;
        margin: 1rem 0;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
        padding: 1.5rem;
        max-height: 90vh;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

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

    .transcript-content h3 {
        font-size: 1.3rem;
    }
}

/* Cancellation Policy - Desktop */
.cancellation-policy {
    padding: 1.5rem;
    margin: 3rem auto 2rem;
    max-width: 1000px;
    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.9rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

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

.policy-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

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

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

.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;
}

.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: 800px;
    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: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.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 {
    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 {
    transform: scale(1.02);
}

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

.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.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;
}

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

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

.carousel-nav-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 110, 184, 0.5);
}

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

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

.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 {
    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);
}

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

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

/* Desktop Navigation - Hide Mobile Controls */
.mobile-carousel-controls {
    display: none !important;
}

/* Ensure desktop dots are visible */
.desktop-dots {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

/* Desktop carousel layout adjustments */
.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Desktop transcript button inherits existing styles */

/* Featured Rentals Section */
.featured-rentals {
    margin-bottom: 4rem;
    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);
}

.featured-rentals h2 {
    text-align: center;
    font-size: 2rem;
    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: 2rem;
}

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

.featured-row {
    display: grid;
    gap: 2rem;
}

/* First row - 6 items */
.featured-row:first-child {
    grid-template-columns: repeat(6, 1fr);
}

/* Second row - 2 items */
.featured-row:last-child {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1400px) {
    .featured-row:first-child {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .featured-row:last-child {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-row:first-child,
    .featured-row:last-child {
        grid-template-columns: 1fr;
    }
    
    .featured-rentals {
        padding: 1rem;
        margin-bottom: 2rem;
    }
}

/* Rental Tabs Section */
.rental-tabs-section {
    margin: 0 1rem 4rem 1rem;
    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);
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.rental-tabs-container {
    display: flex;
    gap: 2rem;
    max-width: 100%;
}

/* Tab Navigation */
.rental-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 250px;
    flex-shrink: 0;
    align-self: center; /* Center tabs container vertically */
    margin: auto 0; /* Additional vertical centering */
}

.rental-tabs-container {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    align-items: center; /* Center tabs container vertically */
}

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

.rental-tab:hover {
    background: rgba(44, 110, 184, 0.2);
    transform: translateX(5px);
}

.rental-tab.active {
    background: rgba(44, 110, 184, 0.2);
    border-color: rgba(44, 110, 184, 0.5);
    transform: translateX(10px);
}

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

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

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

/* Tab Content */
.rental-tabs-content {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
    overflow-x: auto; /* Allows horizontal scrolling if needed */
    padding-bottom: 1rem; /* Space for potential scrollbar */
}

.rental-tab-panel {
    display: none;
}

.rental-tab-panel.active {
    display: block;
}

/* Grid Layout for Panels */
.rental-tab-panel .rental-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Always show 6 columns for jumphouses */
    gap: 1rem;
    min-width: min-content; /* Ensures grid items don't shrink below their minimum width */
}

/* Waterslides specific layout */
#waterslides-panel .rental-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* Adjust rental card sizing */
.rental-tab-panel .rental-card {
    height: 100%;
    min-width: 220px; /* Minimum width for cards */
}

.rental-tab-panel .rental-image {
    height: 200px; /* Slightly reduced height to fit better */
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .rental-tab-panel .rental-grid {
        gap: 0.75rem;
    }

    .rental-tab-panel .rental-card {
        min-width: 200px;
    }
}

@media (max-width: 1200px) {
    .rental-tabs-container {
        flex-direction: column;
        align-items: stretch; /* Reset alignment for mobile layout */
    }

    .rental-tabs {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-self: stretch; /* Reset alignment for mobile layout */
        margin: 0; /* Reset margin for mobile layout */
    }

    .rental-tab {
        flex: 1;
        max-width: 300px;
    }

    .rental-tab:hover,
    .rental-tab.active {
        transform: translateY(-5px);
    }

    .rental-tab-panel .rental-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rental-tabs {
        flex-direction: column;
    }

    .rental-tab {
        max-width: none;
    }

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

    #waterslides-panel .rental-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide mobile-only elements */
.mobile-section-divider,
.jump-to-top-btn {
    display: none;
}

/* Rental Tabs Section */
.rental-tabs-section {
    margin: 0 1rem 4rem 1rem;
    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);
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

.rental-tabs-container {
    display: flex;
    gap: 2rem;
    max-width: 100%;
}

/* Tab Navigation */
.rental-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 250px;
    flex-shrink: 0;
}

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

.rental-tab:hover {
    background: rgba(44, 110, 184, 0.2);
    transform: translateX(5px);
}

.rental-tab.active {
    background: rgba(44, 110, 184, 0.2);
    border-color: rgba(44, 110, 184, 0.5);
    transform: translateX(10px);
}

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

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

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

/* Tab Content */
.rental-tabs-content {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
    overflow-x: auto; /* Allows horizontal scrolling if needed */
    padding-bottom: 1rem; /* Space for potential scrollbar */
}

.rental-tab-panel {
    display: none;
}

.rental-tab-panel.active {
    display: block;
}

/* Grid Layout for Panels */
.rental-tab-panel .rental-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Always show 6 columns for jumphouses */
    gap: 1rem;
    min-width: min-content; /* Ensures grid items don't shrink below their minimum width */
}

/* Waterslides specific layout */
#waterslides-panel .rental-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

/* Adjust rental card sizing */
.rental-tab-panel .rental-card {
    height: 100%;
    min-width: 220px; /* Minimum width for cards */
}

.rental-tab-panel .rental-image {
    height: 200px; /* Slightly reduced height to fit better */
}

/* Responsive adjustments */
@media (max-width: 1600px) {
    .rental-tab-panel .rental-grid {
        gap: 0.75rem;
    }

    .rental-tab-panel .rental-card {
        min-width: 200px;
    }
}

@media (max-width: 1200px) {
    .rental-tabs-container {
        flex-direction: column;
        align-items: stretch; /* Reset alignment for mobile layout */
    }

    .rental-tabs {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-self: stretch; /* Reset alignment for mobile layout */
        margin: 0; /* Reset margin for mobile layout */
    }

    .rental-tab {
        flex: 1;
        max-width: 300px;
    }

    .rental-tab:hover,
    .rental-tab.active {
        transform: translateY(-5px);
    }

    .rental-tab-panel .rental-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rental-tabs {
        flex-direction: column;
    }

    .rental-tab {
        max-width: none;
    }

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

    #waterslides-panel .rental-grid {
        grid-template-columns: 1fr;
    }
} 
