/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #fff;
    overflow-x: hidden;
    background: #000;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling on iOS */
    -ms-text-size-adjust: 100%;
    font-weight: 400;
    letter-spacing: 0.2px;
}

h1 {
    color: #d4af37; /* gold */
}

h3 {
    color: #d4af37 !important; /* force gold for all h3 headings */
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly interactive elements */
button, a, input, select, textarea {
    min-height: 44px;
}

/* Prevent zoom on form inputs on iOS */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
select,
textarea {
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    max-height: 56px; /* slightly larger on desktop */
    width: auto;
    display: block;
    transform: translateY(-8px); /* raised more to sit higher next to title */
    transition: transform 0.15s ease, filter 0.2s ease;
    /* Use sepia + saturate + hue-rotate to approximate the brand gold */
    filter: grayscale(1) sepia(1) saturate(800%) hue-rotate(6deg) brightness(0.95) contrast(1);
    /* add a very subtle gold glow */
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.18)) grayscale(1) sepia(1) saturate(800%) hue-rotate(6deg) brightness(0.95) contrast(1);
}

/* Visually hide the H2 when an image is present but keep it accessible */
.nav-logo img + h2 {
    position: relative;
    left: 0;
    top: 0;
    margin: 0;
}

.nav-logo.has-image h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.nav-logo h2 {
    color: var(--brand-gold);
    display: inline-block;
    margin: 0;
    font-size: 1.4rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-logo img {
        max-height: 44px;
        transform: translateY(-6px);
    }

    .nav-logo h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        max-height: 36px;
        transform: translateY(-4px) scale(0.98);
    }

    .nav-logo a {
        gap: 0px;
    }

    .nav-logo h2 {
        margin-left: -6px; /* nudge left slightly */
        font-size: 1rem;
    }
}

.nav-logo a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 2px; /* single small gap between logo and title */
}

.nav-logo a:hover h2 {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #d4af37;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #d4af37, #f1c232);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation */
.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.hero-bg-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    opacity: 0.9;
}

.hero-brand {
    margin-bottom: 1rem;
}

.brand-name {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #f1c232);
    color: #000;
    animation: glow 2s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.car-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #d4af37;
    letter-spacing: -0.3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Services Slider */
.services-slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.services-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 0 60px;
}

.service-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    min-width: 320px;
    flex-shrink: 0;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(212, 175, 55, 0.5);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-left: 1.5rem;
    z-index: 1;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-image[alt="Airport Service"] {
    height: 240px;
}

.service-image.hourly-large {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: transparent;
    border-radius: 15px;
    padding: 0;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
}

.service-image.black-car {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.service-image:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    filter: contrast(1.08) brightness(1.05) saturate(1.15);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: #d4af37;
    transform: scale(1.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #fff;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #d4af37;
    letter-spacing: -0.3px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #d4af37;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 1rem;
}

.form-group select {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.form-group select option {
    background: #000;
    color: #fff;
    padding: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Additional styling for select dropdowns */
.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23d4af37" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-group select:hover {
    border-color: #d4af37;
}

.form-group select option:hover,
.form-group select option:focus {
    background: #d4af37;
    color: #000;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-align: center;
}

.about p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.feature i {
    font-size: 2.2rem;
    color: #d4af37;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #ffd700;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #d4af37;
    letter-spacing: -0.5px;
}

.feature p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #2a22a2, #1a1a2a);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #d4af37;
}

/* Contact Slider */
.contact-slider {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 0 60px;
}

.contact-item {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(212, 175, 55, 0.2);
    min-width: 300px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
}

.contact-item i {
    font-size: 2rem;
    color: #d4af37;
    width: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.contact-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.2rem;
}

.contact-item p {
    color: #ccc;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.contact-form {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #fff;
}

.contact-form .form-group select {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #fff;
}

.contact-form .form-group select option {
    background: #000;
    color: #fff;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #ccc;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #000 0%, #0a0a0a 30%, #1a1a1a 70%, #0a0a0a 100%);
    color: #fff;
    padding: 70px 0 35px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        #d4af37 0%,
        #ffd700 20%,
        #d4af37 40%,
        #ffd700 60%,
        #d4af37 80%,
        #ffd700 100%);
}

.footer::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.4) 20%,
        rgba(212, 175, 55, 0.6) 50%,
        rgba(212, 175, 55, 0.4) 80%,
        transparent 100%);
}

/* Floating decorative elements */
.footer .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    animation: float 6s ease-in-out infinite;
}

.footer .floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.footer .floating-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.footer .floating-shape:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 85%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    background: linear-gradient(145deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.01) 100%);
    padding: 2rem 1.8rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex: 1 1 250px; /* equal width columns with a min basis */
    min-width: 220px;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #d4af37 30%,
        #ffd700 50%,
        #d4af37 70%,
        transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
    transform: scaleX(0);
    transform-origin: center;
}

.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.05) 0%,
        transparent 50%,
        rgba(212, 175, 55, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.footer-section:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 25px 50px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.footer-section:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.footer-section:hover::after {
    opacity: 1;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
    border-radius: 1px;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section li {
    color: #ccc;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-section li:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
    transform: translateX(8px);
}

.footer-section a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    justify-content: flex-start;
}

.social-links a {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg,
        rgba(51, 51, 51, 0.9) 0%,
        rgba(68, 68, 68, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle,
        rgba(212, 175, 55, 0.4) 0%,
        rgba(212, 175, 55, 0.2) 50%,
        transparent 100%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.social-links a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-links a:hover {
    background: linear-gradient(135deg,
        #d4af37 0%,
        #ffd700 50%,
        #d4af37 100%);
    color: #000;
    transform: translateY(-8px) scale(1.15) rotate(5deg);
    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: #d4af37;
}

.social-links a:hover::before {
    width: 150%;
    height: 150%;
}

.social-links a:hover::after {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    color: #888;
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 100%);
    padding: 1.5rem 0 1rem;
    border-radius: 15px 15px 0 0;
    justify-content: center;
    display: flex;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #aaa;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    font-weight: 300;
}

/* Contact Info Links */
.footer-section p a {
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    display: inline-block;
}

.footer-section p a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    border-bottom-color: #d4af37;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 2px solid #d4af37;
    color: #fff;
}

.modal-content h3 {
    color: #d4af37;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.close {
    color: #d4af37;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #fff;
}

.quick-booking-form {
    margin-top: 1rem;
}

.quick-booking-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
}

.quick-booking-form input::placeholder {
    color: #ccc;
}

.quick-booking-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        margin: 1rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        color: #fff !important;
    }
    
    .nav-menu .nav-link:hover {
        color: #d4af37 !important;
    }
    
    .brand-name {
        font-size: 1.3rem !important;
        text-align: center;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .car-placeholder {
        width: 250px;
        height: 150px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services h2,
    .about h2,
    .contact h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 80px 15px 40px;
        min-height: 70vh;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 200px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature {
        text-align: center;
        padding: 1.2rem 1rem;
    }
    
    .feature i {
        font-size: 1.8rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .contact-info .contact-item {
        padding: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.2rem 1rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .footer-section:hover {
        transform: translateY(-3px);
    }

    .footer-section h3 {
        font-size: 1.4rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
        padding: 0 1rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
        max-width: none;
    }
    
    .quick-booking-form input {
        margin-bottom: 1rem;
        padding: 12px;
        font-size: 1rem;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .nav-menu .nav-link {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    /* Touch targets should be at least 44px */
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    /* Improve button accessibility on mobile */
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Better spacing for mobile */
    section {
        padding: 3rem 0;
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-section {
        padding: 1.8rem 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .footer-section:hover {
        transform: translateY(-3px);
    }

    .footer-section h3 {
        font-size: 1.4rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

    h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
    }

    .service-card {
        padding: 2rem 1.5rem;
        max-width: 400px;
    }

    .service-card h3 {
        font-size: 1.7rem;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .booking-form {
        padding: 2rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-around;
        gap: 2rem;
    }

    /* Ensure navbar uses flex and menu is horizontal on tablets */
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo a {
        gap: 8px;
    }

    .nav-menu {
        display: flex !important;
        gap: 1.5rem;
        align-items: center;
        position: static;
        top: auto;
        background: transparent;
        padding: 0;
        margin: 0;
    }

    .nav-menu .nav-item {
        list-style: none;
    }

    .nav-menu .nav-link {
        padding: 0.5rem 0;
        display: inline-block;
        border-bottom: none;
    }

    .nav-toggle {
        display: none;
    }
}

/* Large Screens */
@media (min-width: 1441px) {
    .services-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem;
    }

    .service-card {
        max-width: 300px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-buttons {
        gap: 2rem;
    }

    .btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .container {
        max-width: 1400px;
    }

    .booking-form {
        max-width: 800px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-grid {
        max-width: 1000px;
        margin: 0 auto;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add gold glow effects */
.btn-primary:hover,
.nav-menu a:hover,
.service-card:hover h3,
.contact-item:hover h4 {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Add subtle animations */
.service-card,
.contact-item {
    transition: all 0.3s ease;
}

.service-card:hover,
.contact-item:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Background pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Browser-specific select styling */
@-moz-document url-prefix() {
    .form-group select,
    .contact-form .form-group select {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid rgba(212, 175, 55, 0.3) !important;
    }
    
    .form-group select option,
    .contact-form .form-group select option {
        background: #000 !important;
        color: #fff !important;
    }
}

/* Force dark theme for all select elements */
select {
    background-color: #000 !important;
    color: #fff !important;
}

select option {
    background-color: #000 !important;
    color: #fff !important;
    padding: 8px !important;
}

select option:checked {
    background-color: #d4af37 !important;
    color: #000 !important;
}

/* Force dark theme for all input elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
textarea {
    background-color: rgba(0, 0, 0, 0.8) !important;
    color: #fff !important;
    border: 2px solid rgba(212, 175, 55, 0.3) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
textarea:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3) !important;
    outline: none !important;
}

input::placeholder,
textarea::placeholder {
    color: #ccc !important;
}

/* Enhanced Autocomplete Styling */
.autocomplete-container {
    position: relative;
    width: 100%;
}

.autocomplete-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 2px solid #d4af37;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    color: #fff;
}

.autocomplete-item:hover,
.autocomplete-item.autocomplete-active {
    background: rgba(212, 175, 55, 0.2);
    border-left: 4px solid #d4af37;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.address-main {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #fff;
}

.address-main strong {
    color: #d4af37;
    font-weight: 600;
}

.address-type {
    font-size: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 5px;
}

.address-type i {
    color: #d4af37;
    font-size: 0.7rem;
}

/* Scrollbar styling for autocomplete */
.autocomplete-items::-webkit-scrollbar {
    width: 6px;
}

.autocomplete-items::-webkit-scrollbar-track {
    background: #000;
}

.autocomplete-items::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 3px;
}

.autocomplete-items::-webkit-scrollbar-thumb:hover {
    background: #f1c232;
}

/* Special styling for date and time inputs */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator,
input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(30deg);
    cursor: pointer;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects */
.service-card:hover {
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
    border-color: #d4af37;
}

.contact-item:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
    border-color: #d4af37;
}

/* Success Page Styles */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #000 0%, #111 100%);
}

.success-content {
    text-align: center;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.success-icon {
    font-size: 4rem;
    color: #d4af37;
    margin-bottom: 30px;
}

.success-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.success-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
}

.success-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.btn-primary {
    background: #d4af37;
    color: #000;
    border: 2px solid #d4af37;
}

.btn-primary:hover {
    background: #f1c232;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .success-content {
        padding: 40px 20px;
    }
    
    .success-content h2 {
        font-size: 2rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
}

/* Glowing effect for Book Now button */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(212, 175, 55, 0.5), 0 0 10px rgba(212, 175, 55, 0.3), 0 0 15px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

.hero-buttons .btn-primary {
    animation: glow 2s ease-in-out infinite;
}

/* Text glow animation for titles */
@keyframes text-glow {
    0%, 100% {
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        text-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 35px rgba(212, 175, 55, 0.6);
    }
}

@keyframes imageFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

:root {
    --brand-gold: #d4af37;
}

/* Ensure the nav title uses the brand color */
.nav-logo h2 {
    color: var(--brand-gold);
    display: inline-block;
    margin: 0;
    font-size: 1.4rem;
}

/* Tint logo image toward the brand color and add a subtle glow */
.nav-logo img {
    max-height: 56px; /* slightly larger on desktop */
    width: auto;
    display: block;
    transform: translateY(-8px); /* raised more to sit higher next to title */
    transition: transform 0.15s ease, filter 0.2s ease;
    /* Use sepia + saturate + hue-rotate to approximate the brand gold */
    filter: grayscale(1) sepia(1) saturate(800%) hue-rotate(6deg) brightness(0.95) contrast(1);
    /* add a very subtle gold glow */
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.18)) grayscale(1) sepia(1) saturate(800%) hue-rotate(6deg) brightness(0.95) contrast(1);
}

@media (max-width: 768px) {
    .nav-logo img { transform: translateY(-6px); }
}
@media (max-width: 480px) {
    .nav-logo img { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .about-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature {
        width: 100%;
        max-width: 520px;
        padding: 1.2rem;
    }

    .feature i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .about p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.input-with-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
    cursor: pointer; /* show it's clickable */
}

.input-with-icon input {
    width: 100%;
    padding-right: 44px;
    cursor: pointer; /* clicking input should indicate it opens a picker */
}

.icon-btn {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--brand-gold);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:focus {
    outline: 2px solid rgba(212,175,55,0.25);
    border-radius: 6px;
}
