/* core-info: 
   Base: #092C28
   Highlight: #E52051
   Secondary: #19C1CA
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
    --color-bg: #0f172a;
    /* Tailwind slate-900 inspired base, but using brand color */
    --color-bg-alt: #1e293b;
    --color-text: #f8fafc;
    --color-highlight: #E52051;
    --color-secondary: #19C1CA;
    --color-surface: #1e293b;
    /* Slate-800 equivalent */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --border-dim: #22413D;
    /* Unified border color */

    --border-radius: 0.75rem;
    --transition: 0.2s ease-in-out;
    --max-width: 1400px;
}

/* Override base for brand alignment */
:root {
    --color-bg: #092C28;
    --color-bg-dark: #010603;
    --color-surface: #0d3b36;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

/* Blur content when menu is open */
body.no-scroll main,
body.no-scroll footer,
body.no-scroll .header-top {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

h1,
h2,
h3,
h4 {
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    background: linear-gradient(to right, #fff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.25rem;
    color: white;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

a:hover {
    color: var(--color-highlight);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0;
}

/* Header */
/* Header */
header {
    background-color: transparent;
    padding: var(--spacing-sm) 0;
    position: absolute;
    /* Changed from fixed to absolute to allow scrolling */
    width: 100%;
    /* Ensure full width */
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease, border-bottom-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Navigation */

/* Navigation Wrapper - Integrated with Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header.scrolled .main-nav-wrapper {
    /* Kept identical to top state as per user request */
    /* background-color: rgba(5, 5, 5, 0.95); */
    /* backdrop-filter: blur(10px); */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
    border-top: none;
    width: 100%;
    z-index: 1000;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); */
    /* animation: fadeIn 0.2s ease-out forwards; */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}



.header-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    position: relative;
    height: auto;
    min-height: 80px;
    box-sizing: border-box;
}

.header-phone {
    position: absolute;
    right: var(--spacing-md);
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease, color 0.2s ease;
    opacity: 1;
}

.header-phone:hover {
    color: var(--color-secondary);
}

header.scrolled .header-phone {
    opacity: 0;
    pointer-events: none;
}

.main-nav-wrapper {
    width: 100%;
    border-bottom: 1px solid var(--border-dim);
    padding: 0;
    display: flex;
    justify-content: center;
    background: rgba(5, 5, 5, 0.3);
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
    height: 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 100;
}

header.scrolled .main-nav-wrapper {
    border-color: rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    height: 100%;
    padding: 0;
    gap: var(--spacing-md);
}

.nav-cta-buttons {
    margin-left: auto;
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

header.scrolled .nav-cta-buttons {
    opacity: 1;
    pointer-events: auto;
}

.nav-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.sticky-phone {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease, color 0.2s ease;
}

header.scrolled .sticky-phone {
    opacity: 1;
    pointer-events: auto;
}

.sticky-phone:hover {
    color: var(--color-secondary);
}

.logo-link {
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }
}

/* Menu Toggle - Visible Globally */
/* Desktop Navigation (Default) */
.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    height: 100%;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 var(--spacing-md);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
}



.mobile-cta {
    display: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    transition: color 0.3s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .main-nav-wrapper {
        border-top: 1px solid var(--border-dim) !important;
        border-bottom: 1px solid var(--border-dim) !important;
    }

    .desktop-cta {
        display: none !important;
    }

    .sticky-logo {
        display: none !important;
    }

    .mobile-cta {
        display: none;
    }

    .nav-cta-buttons {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .nav-cta-buttons a.btn {
        display: none !important;
        /* Hide Enquire Online button on mobile explicitly */
    }

    .nav-cta-buttons .btn-outline {
        border: none !important;
        padding: 0;
        /* Optional: reduce padding if it looks like text now */
        margin-right: var(--spacing-md);
        /* Add some spacing if needed, or keep as is */
    }

    .menu-toggle {
        display: flex;
        width: auto;
        margin: 0;
        text-align: left;
        padding: var(--spacing-sm) var(--spacing-md);
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        align-items: center;
        z-index: 1002;
        background: none;
        border: none !important;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.3em;
        cursor: pointer;
        text-transform: uppercase;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px !important;
        left: 0 !important;
        margin: 0 !important;
        width: 100%;
        height: calc(100vh - 60px);
        /* Fallback */
        height: calc(100dvh - 60px);
        /* Dynamic Viewport Height */
        background-color: rgba(5, 5, 5, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        /* Changed from center */
        justify-content: flex-start;
        padding-top: 2rem !important;
        z-index: 1000;
    }

    .nav-links li {
        width: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        /* Added right border */
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem var(--spacing-md);
        /* Added horizontal padding */
        height: auto;
        justify-content: flex-start;
        /* Changed from center */
        display: flex;
        align-items: center;
    }

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

    .nav-links a {
        font-size: 1.1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .nav-links li.mobile-only-cta {
        position: absolute;
        bottom: 2rem;
        left: 0;
        width: 100%;
        padding: 0 var(--spacing-md);
        border: none;
        justify-content: center;
    }

    .nav-links li.mobile-only-cta a {
        background-color: var(--color-highlight);
        color: white;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem;
        border-radius: 9999px;
        font-weight: 600;
        box-shadow: 0 4px 6px -1px rgba(229, 32, 81, 0.3);
    }

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

/* Hide mobile CTA on desktop */
@media (min-width: 769px) {
    .mobile-only-cta {
        display: none !important;
    }
}



.hero .hero-logo {
    margin-bottom: 2rem;
    /* Reduced from 6rem */
    width: 250px;
    /* Smaller logo on mobile */
}

/* Specific adjustment for logo in hero */
.hero .hero-logo {
    margin-bottom: 6rem;
    margin-top: 0;
}

.hero-content {
    position: relative;
    max-width: 65ch;
}

/* Common CTA Style for Menu */
.cta {
    background-color: var(--color-highlight);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    color: white;
    font-weight: 400;
    box-shadow: 0 4px 6px -1px rgba(229, 32, 81, 0.2);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: inherit;
    /* font-size: 1.5rem; Removed for desktop match */
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cta:hover {
    background-color: #be123c;
    transform: translateY(-1px);
}

/* Desktop CTA - Defined after .cta to override display property */
.desktop-cta {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border-radius: 0;
    transform: none;
    align-items: center;
    padding: 0 2rem;
    margin: 0;
}

header.scrolled .desktop-cta {
    display: flex;
}

/* Hide Desktop specific elements is handled in media query now */



.header-top {
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

/* Hero Section */
/* Hero Section */
.hero {
    text-align: left;
    padding: calc(var(--spacing-xl) + 100px) 0 var(--spacing-xl) 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    background-color: var(--color-bg-dark);
    background-image: url("images/textures/hero-texture.png");
    background-repeat: repeat;
    background-size: 500px;
    /* Tiled texture */
    background-blend-mode: overlay;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 100%;
    background-image: url("images/website images/hero-image-2.png");
    background-size: cover;
    background-position: center right;
    opacity: 0.5;
    filter: grayscale(100%);
    mix-blend-mode: lighten;
    z-index: -2;
    pointer-events: none;
}

/* Hero Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Single pixel (1px) black dots with 0.4 opacity, spaced 3px apart */
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.4) 1px, transparent 1px);
    background-size: 3px 3px;
    z-index: 0;
    /* Behind text (which is in container with z-index inferred or explicit), but above bg */
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    /* Ensure text sits above the grid */
}

/* Glow effect behind hero - Lower Center Green */
.hero::before {
    content: '';
    position: absolute;
    bottom: -50%;
    /* distinct glow from bottom - adjusted to -50% */
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    /* Wide spread */
    height: 80%;
    background: radial-gradient(ellipse at center, rgb(16 159 185 / 52%) 0%, transparent 70%);
    /* Stronger green */
    /* Very subtle green */
    pointer-events: none;
    z-index: -1;
}

.hero-logo {
    width: 350px;
    max-width: 100%;
    height: auto;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    display: block;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-weight: 400;
}

.hero p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: var(--spacing-lg);
    max-width: 65ch;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-highlight);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    /* Pill shape */
    font-weight: 400;
    /* font-size removed to match .cta */
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: 0 4px 6px -1px rgba(229, 32, 81, 0.2);
}

.btn:hover {
    background-color: #be123c;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px -1px rgba(229, 32, 81, 0.3);
    /* Slight increased shadow for interaction feedback */
}

.btn-outline {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: var(--color-highlight);
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    border: 2px solid var(--color-highlight);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: rgba(229, 32, 81, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(229, 32, 81, 0.2);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-divider {
    color: #94a3b8;
    font-size: 1rem;
    font-style: normal;
}

/* Sections */
/* Sections */
section {
    padding: 0;
    /* Removed global padding to allow seamless stacking */
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) 0;
    /* Apply padding to content inside grid instead if needed, or specific sections */
}

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

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

/* USP Section Redesign */
.usp-section {
    padding-top: 0;
    margin-top: -1px;
    /* Force border attachment */
}

.usp-header-container {
    text-align: left;
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-lg);
    background-color: transparent;
    border: 1px solid var(--border-dim);
    border-top: none;
    /* Attach to brands ticker above */
    border-bottom: none;
    /* Join with grid below */
    border-radius: 0;
    /* Removed rounded corners */
}

.usp-main-title {
    font-size: 2.25rem;
    /* Reduced from 3.5rem to match h2/h3 size preference */
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(to right, white, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.usp-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0;
    /* Align left */
}

.usp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: var(--border-dim);
    /* Border color */
    border: 1px solid var(--border-dim);
    border-top: none;
    /* Join with header */
    border-radius: 0;
    /* Remove rounded corners per request "round border" */
    overflow: visible;
}

@media (min-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-grid .booking-card {
        order: -1;
        /* Moved to top on desktop - negative order places it before default order: 0 */
    }
}

.usp-card {
    background-color: #051916;
    /* Matched to Brands Section */
    /* Slightly darker/opaque to hide grid bg */
    /* Removed individual borders and radius */
    border: none;
    border-radius: 0;
    overflow: visible;
    /* Changed from hidden to visible to allow dropdowns to pop out */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease;
    height: 100%;
}

.booking-card {
    background-color: #092C28 !important;
}

.contact-info-card {
    background-color: #092C28 !important;
}

.usp-card:hover {
    background-color: rgba(5, 8, 12, 0.9);
    /* Slightly darker */
    z-index: 1;
}

.usp-content {
    padding: 6rem var(--spacing-md) var(--spacing-md);
    /* Adjusted top padding to 6rem */
}

.usp-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: white;
}

.usp-content p {
    color: #94a3b8;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.usp-card:hover .usp-content p {
    color: #ffffff;
}

.usp-image-placeholder {
    width: 100%;
    height: 240px;
    /* Fixed height for visual consistency */
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle animation for placeholder to look alive if needed */
.usp-image-placeholder::after {
    content: 'Image Coming Soon';
    color: rgba(255, 255, 255, 0.1);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.usp-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.usp-card:hover .usp-image {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .usp-main-title {
        font-size: 2.5rem;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
    text-align: left;
    /* Align left specific for this section if desired, or center */
}

/* Keep card styles for other sections if any */
.card {
    background-color: rgba(30, 41, 59, 0.5);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.card:hover {
    border-color: rgba(25, 193, 202, 0.3);
    background-color: rgba(30, 41, 59, 0.8);
}

/* Marquee Styles */
/* Brands Marquee - Redesigned */
.brands-section {
    padding-top: var(--spacing-md);
    padding-bottom: 0;
    overflow: hidden;
    /* border-bottom handled by contact/footer or next section */
    border-bottom: 1px solid var(--border-dim);
    background-color: #051916;
    /* Slightly darker than base */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brands-header {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
    padding-bottom: var(--spacing-md);
    margin-bottom: 0;
    font-weight: 400;
    border-bottom: 1px solid var(--border-dim);
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0;
}

.marquee-content {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll 80s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 120px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-item img {
    height: auto;
    max-height: 68px;
    /* -10% from 75px */
    max-width: 162px;
    /* -10% from 180px */
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: var(--transition);
}

.marquee-item:hover img {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}


/* Form Styles - Grid Cell UI */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background-color: var(--border-dim);
    /* Creates the border lines */
    border: 1px solid var(--border-dim);
    margin-bottom: var(--spacing-md);
    overflow: visible;
    position: relative;
}

.form-cell {
    background-color: #051916;
    /* Opaque bg to match cells */
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    transition: background-color 0.2s;
}

.form-cell:hover {
    background-color: rgba(5, 8, 12, 0.9);
}

.form-cell:focus-within {
    background-color: rgba(5, 8, 12, 0.9);
    z-index: 1000;
    /* High priority for active cell */
}

/* Ensure the wrapper inside inherits or maintains high stacking */
.form-cell>div {
    z-index: 101;
}

.form-cell.span-2 {
    grid-column: span 2;
}

.form-cell label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    pointer-events: none;
    /* Let clicks pass to input */
}

.form-cell input,
.form-cell select,
.form-cell textarea {
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background-color: transparent;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1.4;
    transition: none;
}

.form-cell input::placeholder,
.form-cell textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-cell input:focus,
.form-cell select:focus,
.form-cell textarea:focus {
    outline: none;
    box-shadow: none;
}

/* Fix for Select dropdown arrow and Autocomplete inputs */
.form-cell select,
.autocomplete-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0 center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 1.5rem;
    cursor: pointer;
}

/* Autocomplete Suggestion Box Styling */
.autocomplete-items {
    position: absolute;
    border: 1px solid var(--border-dim);
    border-top: none;
    z-index: 1001;
    top: calc(100% + 0.75rem);
    /* Offset by padding */
    left: -1rem;
    /* Offset by padding */
    right: -1rem;
    /* Offset by padding */
    background-color: #ffffff;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.autocomplete-item {
    padding: 0.375rem 1rem;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    /* Mid grey */
    transition: background-color 0.2s;
}

.autocomplete-item:hover,
.autocomplete-active {
    background-color: #e2e2e3;
    color: #0f172a;
}

.autocomplete-item strong {
    color: #000000;
    font-weight: 700;
}

.hidden {
    display: none;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #cbd5e1;
}

.feature-list li::before {
    content: "✓";
    color: var(--color-secondary);
    position: absolute;
    left: 0;
    font-weight: 400;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: var(--spacing-lg);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-dim);
}

.pricing-table th {
    color: #94a3b8;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.pricing-table td {
    color: #f1f5f9;
}

/* Footer */
/* Footer */
/* Footer */
footer {
    border-top: none;
    padding: 0;
    margin-top: 0;
    /* background-color removed */
}

.footer-grid {
    display: flex;
    /* Side by side */
    align-items: center;
    /* Vertically center */
    gap: var(--spacing-md);
    /* Space between logo and text */
    /* background-color removed */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    /* Connect seamlessly */
    padding: var(--spacing-lg) var(--spacing-md);
    /* Match form padding */
}

.footer-logo,
.footer-text {
    background-color: transparent;
    padding: 0;
    display: block;
}

.footer-logo img {
    display: block;
    filter: brightness(0) invert(1);
    /* Make logo white */
    max-height: 50px;
    /* Smaller, fixed height */
    width: auto;
    /* Prevent stretching */
    margin-bottom: 0;
    /* Removed bottom margin since it satisfies flex gap */
}

.footer-text {
    text-align: left;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-text p {
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.highlight {
    color: var(--color-highlight);
    -webkit-text-fill-color: var(--color-highlight);
}

.highlight-bold {
    font-weight: 700 !important;
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* Mobile Marquee Override - Static Grid */
@media (max-width: 768px) {

    /* Remove border from header */
    .brands-header {
        border-bottom: none !important;
        padding-bottom: 0.5rem !important;
    }

    .marquee-content {
        animation: none !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        width: 100% !important;
        padding-bottom: 2rem;
        gap: 0 !important;
    }

    .marquee-item {
        width: 33.33% !important;
        border: none !important;
        height: 80px !important;
        padding: 0.25rem !important;
        flex-shrink: 0 !important;
    }

    /* Hide duplicates (Sets 2, 3, 4) - Assuming 10 items per set */
    .marquee-item:nth-child(n+11) {
        display: none !important;
    }

    .marquee-item img {
        max-width: 90% !important;
        max-height: 60px !important;
        opacity: 0.7 !important;
    }
}

/* Booking Form Refinements */
.booking-card .usp-content {
    padding: 0 !important;
}

.booking-card {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
}

.booking-card:hover {
    background-color: transparent !important;
    z-index: auto !important;
    transform: none !important;
}

.booking-card .booking-grid {
    padding: 0;
    border: none !important;
    border-top: 1px solid var(--border-dim) !important;
    margin-bottom: 0 !important;
}

.booking-card .cta {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    border-radius: 0 !important;
    font-weight: 400 !important;
    padding: 1rem 1.25rem !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
}

/* Internal Page Logo Section */
/* Internal Page Logo Section */
.internal-page-logo-section {
    padding: 0;
    text-align: left;
    margin: 0;
    /* Removed margin as requested */
}

.internal-page-logo-section .container {
    border-left: 1px solid var(--border-dim);
    border-right: 1px solid var(--border-dim);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.internal-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
    padding-left: 20px;
    margin-top: 110px;
}

/* Reduce spacing on internal pages */
.internal-page .usp-header-container {
    padding-top: 100px;
    /* Increased to 100px (approx 50px extra) */
}

.internal-cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    padding-right: 20px;
    align-items: center;
    margin-top: 150px;
}

@media (max-width: 768px) {
    .internal-page-logo-section {
        padding-top: 2rem;
    }

    .internal-page-logo-section .container {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .internal-logo-img {
        margin-top: 60px;
        /* Reduced from 110px */
        height: 60px;
        /* Smaller logo */
        padding-left: 20px;
    }

    .internal-cta-buttons {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 220px var(--spacing-sm) var(--spacing-lg) !important;
    }

    .hero .hero-logo {
        width: 250px;
        /* Increased based on user feedback */
        margin-bottom: 3.5rem !important;
        /* Added more spacing */
    }

    .hero::after {
        width: 100% !important;
        height: 100% !important;
        background-position: center center !important;
        opacity: 0.3 !important;
        /* Slightly lower opacity for readability */
        z-index: -1 !important;
    }
}

/* Honeypot Field - Hidden from humans, visible to bots */
.website_url_field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

/* Google Place Autocomplete Styling */
gmp-place-autocomplete {
    --gmp-px-color-surface: #ffffff;
    --gmp-px-color-text-primary: #333333;
    --gmp-px-font-family-base: var(--font-main);
    --gmp-px-font-size-base: 1rem;
    --gmp-px-input-padding-inline-start: 1rem;
    --gmp-px-input-padding-inline-end: 1rem;
    /* Try to force height via search input variable if supported */
    --gmp-px-search-input-height: 52px;
    width: 100%;
}

/* Force height on the element itself to match form cells */
gmp-place-autocomplete {
    height: 52px;
}