/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #E85D04;
    --secondary-color: #2C3E50;
    --dark-blue: #3D4A5C;
    --light-bg: #F5F5F5;
    --beige: #D4C5B0;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --overlay: rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 1001;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    position: relative;
    z-index: 1002;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-btn:hover span {
    background: var(--primary-color);
}

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

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

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.logo {
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: 3px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1002;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(232, 93, 4, 0.1);
}

.nav-link i {
    font-size: 16px;
}

.hotline-link {
    color: var(--primary-color);
    font-weight: 600;
}

.hotline-link:hover {
    color: var(--primary-color);
    background: rgba(232, 93, 4, 0.15);
}

.hotline-link i {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.hotline-text {
    font-weight: 600;
}

.language-selector {
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.language-selector:hover {
    background: rgba(232, 93, 4, 0.1);
    color: var(--primary-color);
}

.language-selector i {
    font-size: 16px;
}

.check-availability-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff6b1a);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.3);
    letter-spacing: 0.5px;
}

.check-availability-btn:hover {
    background: linear-gradient(135deg, #ff6b1a, var(--primary-color));
    box-shadow: 0 6px 25px rgba(232, 93, 4, 0.4);
    transform: translateY(-2px);
}

.check-availability-btn:active {
    transform: translateY(0);
}

.check-availability-btn i {
    font-size: 16px;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: 80px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.explore-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.explore-btn:hover {
    background: var(--white);
    color: var(--text-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    z-index: 2;
    animation: fadeIn 1s ease 1s both;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--white);
    animation: scrollLine 2s ease infinite;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    color: tan;
    margin-bottom: 20px;
    font-weight: 600;
    
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 15px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    margin: 15px 0;
    color: var(--secondary-color);
}

.section-title.centered {
    text-align: center;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 20px 0 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-slider {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

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

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

/* Carousel Section */
.carousel-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.carousel-wrapper {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.carousel-slide img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    width: 50%;
    background: var(--beige);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.carousel-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 14px;
    color: var(--text-dark);
}

.carousel-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.carousel-divider {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 20px 0;
}

.carousel-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Discoveries Section */
.discoveries {
    padding: 100px 0;
    background: var(--white);
}

.discoveries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.discovery-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.discovery-card:hover {
    transform: translateY(-10px);
}

.discovery-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 5px;
}

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

.discovery-card:hover .discovery-image img {
    transform: scale(1.1);
}

.discovery-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.discovery-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Gallery Section */
.gallery {
    padding: 100px 0 0 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.gallery .container {
    max-width: 100%;
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    grid-row: span 1;
    grid-column: span 1;
}

/* Only first image is large (2x2) */
.gallery-item:nth-child(1) {
    grid-row: span 2;
    grid-column: span 2;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.overlay-content {
    text-align: center;
    color: var(--white);
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    text-align: center;
    color: var(--white);
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.lightbox-caption p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.payment-methods h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.payment-methods p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 15px;
}

.payment-icons img {
    height: 30px;
    width: auto;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 30px;
}

.footer-copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s ease;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 60px;
    }
    
    .nav-menu {
        gap: 25px;
    }

    .nav-container {
        padding: 0 30px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .check-availability-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-right {
        gap: 12px;
    }

    .hotline-link .hotline-text {
        display: none;
    }

    .hotline-link {
        padding: 8px 10px;
    }

    .check-availability-btn {
        padding: 10px 22px;
        border-radius: 35px;
        width: auto;
        height: auto;
        font-size: 13px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 2;
        grid-column: span 2;
    }
}

@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu a {
        font-size: 16px;
        padding: 10px 20px;
        display: block;
        width: 100%;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-right {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        flex-direction: row;
        gap: 8px;
    }

    .nav-right .nav-link:not(.hotline-link),
    .nav-right .language-selector {
        display: none;
    }

    .hotline-link {
        display: flex !important;
        padding: 8px 10px;
        font-size: 12px;
    }

    .hotline-link .hotline-text {
        display: none;
    }

    .hotline-link i {
        font-size: 18px;
    }

    .check-availability-btn {
        width: auto;
        justify-content: center;
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 30px;
    }

    .logo-main {
        font-size: 24px;
    }

    .logo-sub {
        font-size: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .carousel-slide {
        flex-direction: column;
    }

    .carousel-slide img,
    .carousel-content {
        width: 100%;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 2;
        grid-column: span 2;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding-right: 110px;
    }

    .nav-right {
        right: 15px;
    }

    .check-availability-btn {
        padding: 9px 16px;
        font-size: 12px;
    }
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .footer-copyright .container {
        flex-direction: column;
        gap: 20px;
    }

    .carousel-content {
        padding: 40px 30px;
    }

    .carousel-content h2 {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(7) {
        grid-row: span 2;
        grid-column: span 2;
    }

    .overlay-content h3 {
        font-size: 18px;
    }

    .overlay-content p {
        font-size: 12px;
    }

    .nav-container {
        height: 65px;
    }

    .nav-menu {
        top: 65px;
    }

    .logo-main {
        font-size: 22px;
    }

    .logo-sub {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .explore-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .nav-container {
        padding: 0 15px;
        padding-right: 100px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 2;
        grid-column: span 2;
    }

    .check-availability-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .hotline-link {
        padding: 6px 8px;
        font-size: 11px;
    }

    .hotline-link i {
        font-size: 16px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-caption h3 {
        font-size: 18px;
    }

    .lightbox-caption p {
        font-size: 14px;
    }

    .lightbox-content {
        max-width: 95%;
    }
}

