/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --background-cream: #FFFBF2;
    --text-color: #000000;
    --white: #ffffff;
}

body {
    background-color: var(--background-cream);
    font-family: 'Satoshi', sans-serif;
    margin: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Menu specific container */
.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header Styles */
.header {
    padding: 12px 0;
    background: var(--background-cream);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

/* Menu Trigger Styles */
.menu-trigger {
    display: flex;
    align-items: center;
}

.menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Update Menu Icon Styles */
.menu-icon {
    width: 50px;
    height: 50px;
    display: block;
}

.menu-text {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-family: 'Satoshi', sans-serif;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 35px;
    width: auto;
    display: block;
}

/* Common button styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-yellow);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Book a Tour specific styles */
.book-tour-btn {
    background: transparent;
    color: var(--text-color);
    padding: 11px 23px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

/* Register Now button */
.hero-content .btn-secondary {
    background: var(--primary-yellow);
    color: var(--text-color);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Hover effect for all buttons */
.btn:hover,
.book-tour-btn:hover,
.hero-content .btn-secondary:hover {
    opacity: 0.9;
}

/* Hover effect for Book a Tour button */
.book-tour-btn:hover {
    background: var(--primary-yellow);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    background: var(--background-cream);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-content .subtitle {
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding: 8px 16px 8px 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    display: inline-block;
    animation: boxPulse 2s infinite;
}

/* Box pulse animation */
@keyframes boxPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        transform: scale(1);
    }
}

/* Keep the dot animation */
.hero-content .subtitle::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    animation: 
        dotPulse 2s infinite,
        blink 1s infinite;
}

/* Dot pulse animation */
@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Dot blink animation */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-content h1 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-yellow);
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #E5E5E5;
    border-radius: 24px;
    overflow: visible;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

/* Satoshi Font Family in OTF format */
@font-face {
    font-family: 'Satoshi';
    src: url('../assets/fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../assets/fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../assets/fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Microgram Font in TTF format */
@font-face {
    font-family: 'Microgram';
    src: url('../assets/fonts/Microgram.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Update Header Elements */
.menu-text {
    font-family: 'Satoshi', sans-serif;
}

/* Update Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Microgram', sans-serif;
}

/* Specific Updates for Hero */
.hero-content h1 {
    font-family: 'Microgram', sans-serif;
}

/* Fullscreen Menu Styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 1000;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header .menu-container {
    padding-top: 12px;
    padding-bottom: 12px;
}

.menu-close {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.menu-close .close-icon {
    width: 50px;
    height: 50px;
}

.menu-close span {
    font-size: 17px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: 0.5px;
    color: white;
}

/* Hover effect */
.menu-close:hover {
    opacity: 0.7;
}

.menu-content {
    padding: 40px 30px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 30px;
}

.menu-items li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-items a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    color: white;
    text-decoration: none;
    font-family: 'Satoshi', sans-serif;
    font-size: 2rem;
    transition: opacity 0.3s ease;
    gap: 20px;
}

.menu-items a:hover {
    opacity: 0.7;
}

.menu-items img {
    width: 24px;
    height: 24px;
}

/* Menu arrow icon styling */
.menu-arrow {
    width: 32px;
    height: 32px;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

/* Hover effect for menu items */
.menu-items a:hover .menu-arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Only adding hero image styles, keeping all other existing styles unchanged */
.hero-image {
    width: 100%;
    max-width: 2000px; /* Increased max-width for a larger image */
    height: auto;
    display: block;
    margin: 60px auto; /* Added top and bottom padding */
    border-radius: 24px 24px 0 0;
}

/* New Location Section */
.new-location {
    background: #000;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.new-location-content {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
}

.new-location h2 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 20px;

    
}

.new-location p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.location-images {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.location-img {
    width: 100%;
    max-width: 340px;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.location-img:hover {
    transform: translateY(-8px); /* Slight lift effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

.location-img.center {
    max-width: 400px;
}

/* Ensure hover effects work on center image too */
.location-img.center:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
}

.locations-images {
    display: flex;
    gap: 40px;
}

.locations-image-section,
.locations-map-section {
    flex: 1;
}

.locations-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.locations-text {
    max-width: 800px;
    margin-bottom: 40px;
    
    
}

.locations-text h2 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.locations-text p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 600px;
}

.locations-display {
    display: grid;
    grid-template-columns: 0.6fr 1.2fr;  /* Adjusted ratio to make map wider */
    gap: 0px;
}

.workspace-image img,
.map-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 400px;
    min-height: 400px;
    background: #1a1a1a;
}

/* Add these styles for the map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

/* Override Leaflet default styles to match your design */
.leaflet-popup-content-wrapper {
    background: #000;
    color: #fff;
    border-radius: 12px;
    padding: 12px;
}

.leaflet-popup-tip {
    background: #000;
}

.leaflet-popup-content {
    font-family: 'Satoshi', sans-serif;
    margin: 8px 12px;
}

.leaflet-popup-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--primary-yellow);
}

/* Location section heading styles matching New Location section */
.locations-section .label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2); /* Changed to black with opacity for cream background */
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
}

.locations-text h2 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Location image styles */
.workspace-image {
    width: 100%;
    height: 100%;
}

.workspace-image .location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Resources Section */
.resources-section {
    background: var(--background-cream);
    padding: 80px 0;
    overflow: hidden;
    gap: 40px;
}

.resources-content {
    margin-top: 12px;
    margin-bottom: 60px;
}

.resources-content h2 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.resources-content p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

/* Infinite Scroll Styles */
.infinite-scroll {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
}

.scroll-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.scroll-content {
    display: flex;
    gap: 24px;
    width: max-content; /* Ensure proper width calculation */
}

/* Adjust animation timing based on content width */
.track1 .scroll-content {
    animation: scrollLeft 30s linear infinite;
}

.track2 .scroll-content {
    animation: scrollRight 30s linear infinite;
}

/* Updated keyframes for smoother animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(calc(-50%));
    }
    100% {
        transform: translateX(0);
    }
}

.scroll-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 36px;
    padding-left: 16px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 18px;
    font-family: 'Satoshi', sans-serif;
    white-space: nowrap;
}

.scroll-item img {
    width: 56px;
    height: 56px;
    padding: 8px; /* Increased padding to make inner icon smaller */
    background: #FFDE21;
    border-radius: 50%;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Add hover effect */
.scroll-item:hover {
    border-color: rgba(0, 0, 0, 0.4);
}

/* Double the content for seamless loop */
.scroll-content > * {
    flex-shrink: 0;
}

/* Why choose us label styles - matching location section */
.resources-section .label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
}

.solutions-section {
    background: #000;
    color: white;
    padding: 80px 0;
}

.solutions-section h2 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1.1;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.solution-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transition: all 0.3s ease;
}

.card-content h3 {
    font-family: 'Microgram', sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
    letter-spacing: 1.8px;
}

.card-content p {
    font-size: 16px;
    opacity: 0.8;
}

/* Hover Effects */
.solution-card:hover {
    border-color: var(--primary-yellow);
}

.solution-card:hover .card-content {
    background: var(--primary-yellow);
    color: black;
}

/* First card highlight */
.solution-card:first-child {
    position: relative;
}

.solution-card:first-child::after {
    display: none;
}

/* Add borders to all cards */
.solution-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover effect with border color change */
.solution-card:hover {
    border-color: var(--primary-yellow);
}

.solution-card:hover .card-content {
    background: var(--primary-yellow);
    color: black;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* FAQ Section */

.faq-section {
    background: var(--background-cream);
    padding: 80px 0;
}

.faq-header {
    margin-bottom: 40px;
}

.faq-header h2 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.faq-header p {
    font-size: 16px;
    opacity: 0.8;
}

.faq-container {
    max-width: 800px;
    margin-left: auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    font-size: 18px;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-answer {
    background: #E5E3D0;
    padding: 24px;
    border-radius: 0 0 12px 12px;
    margin-top: -1px;
    display: none;
}

.faq-item.active .faq-question {
    background: #000;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.faq-answer p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.faq-answer ul, 
.faq-answer ol {
    margin-left: 20px;
    margin-bottom: 16px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.faq-answer ul ul {
    margin-top: 8px;
    margin-bottom: 0;
}

/* Arrow styling */
.arrow {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.arrow::before,
.arrow::after {
    content: '';
    position: absolute;
    background: #000;
    transition: all 0.3s ease;
}

.arrow::before {
    width: 2px;
    height: 12px;
    top: 0;
    right: 9px;
    transform: translateY(4px);
}

.arrow::after {
    width: 12px;
    height: 2px;
    top: 9px;
    right: 4px;
}

/* Active states */
.faq-item.active .faq-question {
    background: #000;
    color: #fff;
    border-radius: 12px 12px 0 0;
}

.faq-item.active .arrow::before {
    transform: translateY(4px) rotate(90deg);
    background: #fff;
}

.faq-item.active .arrow::after {
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 24px;
    margin-bottom: 16px;
}

.faq-answer p:last-child, 
.faq-answer ul:last-child, 
.faq-answer ol:last-child {
    margin-bottom: 0;
}

/* Hover states */
.faq-question:hover {
    background: rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question:hover {
    background: #000;
}

/* Add border to FAQ label */
.faq-section .label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
}

/* Hover state */
.faq-question:hover .arrow::before,
.faq-question:hover .arrow::after {
    background: #fff;
}

/* Footer Styles */
.footer {
    background: #E5E3D0; /* Updated background color */
}

.footer-top {
    padding: 80px 0;
}

.footer-content {
    text-align: center;
}

.footer-left {
    width: 100%;
    text-align: center;
}

.footer-left h2,
.footer-left p {
    text-align: center;
}

.footer-form {
    display: none; /* This hides the form without removing it */
}

/* Style the CTA button */
.footer-left .btn {
    margin: 20px auto 0;
    display: inline-block;
    padding: 15px 30px;
    background: #FFE500;
    color: #000;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 500;
    transition: all 0.3s ease;
   
}

.footer-left .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Keep the CTA button centered */
.footer-left .btn {
    margin: 20px auto 0;
    display: inline-block;
}

.footer-left .label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-left h2 {
    font-family: 'Microgram', sans-serif;
    font-size: 47px;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-left p {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;

}

/* Footer Bottom */
.footer-bottom {
    background: #000;
    padding: 40px 0;
    
    color: white;
    border-radius: 24px 24px 0 0; /* Added top rounded corners */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.social-links img {
    width: 24px;
    height: 24px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.powered-by p {
    font-size: 14px;
}

/* Logo size adjustment */
.footer-logo img {
    width: 200px; /* Increased from 180px */
    height: auto;
}

/* Optional: Add focus state for form fields */
.footer-form input:focus {
    outline: none;
    border-bottom: 1px solid #000;
}

/* Web610 logo size */
.powered-by img {
    width: 150px; /* Decreased size */
    height: auto;
}

/* Maintain vertical alignment */
.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

/* Add sticker positioning */
.sticker-overlay {
    position: absolute;
    top: -30px; /* Adjust to overlap top edge */
    right: 50%;
    transform: translateX(50%);
    z-index: 3;
    width: 80px; /* Adjust size as needed */
    height: 80px;
}

.hero-sticker {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ensure video container has proper positioning */
.hero-video-container {
    position: relative;
    width: 100%;
    height: 500px;
    background: #E5E5E5;
    border-radius: 24px;
     border-radius: 40px;
    overflow: visible; /* Changed from hidden to show sticker overflow */
} 

/* Video element adjustments */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px; /* Added border radius to video element */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-yellow);
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
}

/* Simple arrow character */
.cta-button span {
    font-size: 18px;
    line-height: 1;
    margin-left: 4px;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-cream);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #000 var(--background-cream);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-section .container {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    /* New Location Section */
    .location-images {
        flex-direction: column;
        gap: 24px;
    }

    /* Locations Section */
    .locations-images {
        flex-direction: column;
        gap: 32px;
    }

    /* Solutions Section */
    .solutions-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    /* Resources Section */
    .resources-section {
        flex-direction: column;
        gap: 32px;
    }

    /* FAQ Section */
    .faq-section {
        flex-direction: column;
        gap: 32px;
    }

    .locations-display {
        grid-template-columns: 1fr;  /* Single column for mobile */
        gap: 12px; /* Add gap only for mobile */
    }

    .solution-card.full-width {
        grid-column: auto; /* Reset grid column */
        aspect-ratio: unset; /* Remove the aspect ratio constraint */
        height: 300px; /* Set a fixed height for mobile */
        max-width: 100%;
    }

    .solution-card.full-width img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .map-container {
        pointer-events: none; /* Completely disable interaction */
    }

    #map {
        pointer-events: none; /* Ensure the map itself is also non-interactive */
        touch-action: none; /* Prevent touch interactions */
        user-select: none; /* Prevent selection */
    }

    .footer-left {
        padding: 0 20px; /* Add some padding on mobile */
    }

    .footer-left h2 {
        font-size: 40px; /* Adjust heading size for mobile */
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .footer-left p {
        font-size: 16px; /* Adjust paragraph size for mobile */
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .footer-left .btn {
        width: 100%; /* Make button full width on mobile */
        max-width: 280px; /* Maximum width for better appearance */
        padding: 12px 24px; /* Slightly smaller padding on mobile */
        font-size: 16px;
        margin-bottom: 0px;
    }

    .hero-content .subtitle {
        font-size: 14px;
        padding: 6px 12px 6px 28px;
    }

    .hero-content .subtitle::before {
        left: 12px;
        width: 5px;
        height: 5px;
    }
}



.solution-card.full-width {
    grid-column: 1 / -1;
    max-width: none;
    aspect-ratio: 3/1;  /* For desktop */
}




.sliding-strip {
    background: #1a1a1a;
    width: 100%;
    position: relative;
    z-index: 100;
}

.sliding-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
    padding: 8px 15px;
}

.sliding-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sliding-text span {
    color: #FFE500;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1.2;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sliding-content {
        min-height: 35px;
        padding: 8px 10px;
    }

    .sliding-text span {
        font-size: 12px;
        gap: 3px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .sliding-content {
        min-height: 32px;
        padding: 6px 8px;
    }

    .sliding-text span {
        font-size: 11px;
        gap: 2px;
        line-height: 1.1;
    }
}

/* Ensure the pointer emoji stays on the same line */
.sliding-text span img,
.sliding-text span i,
.sliding-text span emoji {
    display: inline-block;
    vertical-align: middle;
}

/* Target the yellow Book a Tour button in header */
.btn {
    border: 2px solid #000000 !important; /* Force black border */
}

/* If the above doesn't work, try with more specificity */
header .btn,
.header .btn,
a.btn[href*="Tour"] {
    border: 2px solid #000000 !important;
}

/* If there's a specific class combination, try this */
.btn.btn-primary,
.btn.btn-yellow {
    border: 2px solid #00000057 !important;
}

/* Target the Book a Tour button specifically */
a[href*="Book"] {
    border: 2px solid #000000 !important;
    -webkit-border: 2px solid #000000 !important;
    position: relative;
    z-index: 1;
}

/* If that doesn't work, try with maximum specificity */
body header a[href*="Book"],
.header-right a[href*="Book"],
nav a[href*="Book"] {
    border: 2px solid #000000 !important;
    -webkit-border: 2px solid #000000 !important;
    position: relative;
    z-index: 1;
}

/* Additional attempt with common button classes */
.book-tour,
.cta-button,
.header-cta {
    border: 2px solid #0000004f !important;
    -webkit-border: 2px solid #000000 !important;
    position: relative;
    z-index: 1;
}

/* Critical CSS - Place in <head> */
.critical-styles {
    /* Styles needed for above-the-fold content */
}

/* Non-critical CSS - Load with defer */
<link rel="preload" href="style.css" as="style" onload="this.onload=null;this.rel='stylesheet'">

/* Map styles */
.custom-marker {
    cursor: pointer;
    width: 30px; /* Half of the original SVG width */
    height: 30px; /* Half of the original SVG height */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.custom-marker img {
    width: 50%;
    height: 50%;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.custom-marker:hover {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Update popup offset for the new marker */
.maplibregl-popup {
    max-width: 300px;
    margin-top: -10px;
}

/* Mobile interaction toggle */
.maplibregl-ctrl-group {
    background: #1a1a1a !important;
}

.maplibregl-ctrl-group button {
    background: rgb(63, 63, 63) !important;
    border-radius: 4px !important;
}

.maplibregl-ctrl-group button:hover {
    background: #FFE500 !important;
}

/* Map container styles */
#map {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
}

/* Dark theme for navigation controls */
.maplibregl-ctrl-group {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
}

.maplibregl-ctrl-group button {
    background-color: #1a1a1a !important;
    border-bottom: 1px solid #333 !important;
}

.maplibregl-ctrl-group button:hover {
    background-color: #2a2a2a !important;
}

.maplibregl-ctrl-group button span {
    filter: invert(1);
}

/* Map marker styles */
.custom-marker {
    cursor: pointer;
    transition: transform 0.2s;
}

.custom-marker:hover {
    transform: scale(1.1);
}

/* Popup styles */
.custom-popup {
    font-family: 'Satoshi-Regular', sans-serif;
}

.custom-popup .maplibregl-popup-content {
    background: #1a1a1a;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: 1px solid #FFE500;
}

.custom-popup strong {
    color: #FFE500;
    display: block;
    margin-bottom: 5px;
}

.custom-popup .maplibregl-popup-tip {
    display: none;
}

/* Custom marker styles */
.marker {
    cursor: pointer;
}

.marker img {
    width: 42px;
    height: 48px;
    display: block;
}

/* Popup styles */
.custom-popup .maplibregl-popup-content {
    background: #1a1a1a;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    border: 1px solid #FFE500;
}

.custom-popup strong {
    color: #FFE500;
    display: block;
    margin-bottom: 5px;
}

.custom-popup .maplibregl-popup-tip {
    display: none;
}

/* Map overlay styles */
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    z-index: 10;
    cursor: pointer;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
}

.map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 20px;
}

.map-lock-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* Remove blue text from links */
a {
    color: inherit;
    text-decoration: none;
}

.scroll-content a,
.scroll-item a {
    color: inherit;
    text-decoration: none;
}

/* Ensure text color consistency */
.scroll-item {
    color: var(--text-color);
}

.scroll-item:hover {
    color: var(--text-color);
}

/* Prevent any default link styling */
.scroll-content *,
.scroll-item * {
    color: inherit;
}

/* FAQ specific styles */
.faq-section .faq-question {
    color: var(--text-color) !important;
    -webkit-text-fill-color: var(--text-color) !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
}

/* Active state - black background with white text */
.faq-section .faq-item.active .faq-question {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background-color: #1A1A1A !important;
}

.faq-section .faq-answer,
.faq-section .faq-answer p,
.faq-section .faq-answer ul,
.faq-section .faq-answer ol,
.faq-section .faq-answer li {
    color: var(--text-color) !important;
    -webkit-text-fill-color: var(--text-color) !important;
}

/* Ensure arrow color matches - white when active */
.faq-section .faq-question .arrow {
    border-color: var(--text-color);
    transition: border-color 0.3s ease;
}

.faq-section .faq-item.active .faq-question .arrow {
    border-color: #FFFFFF;
}

/* Map Lock Control Styles */
.map-lock-control {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 32px; /* Reduced from 40px */
    height: 32px; /* Reduced from 40px */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 2;
}

.map-lock-control:hover {
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.map-lock-control img {
    width: 16px; /* Reduced from 20px */
    height: 16px; /* Reduced from 20px */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.map-lock-control:hover img {
    opacity: 1;
}

.map-lock-control.unlocked {
    background: var(--primary-yellow);
}

/* Remove old overlay styles */
.map-overlay,
.map-overlay-content {
    display: none;
}