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

/* CSS Variables */
:root{
  --purple:#280353; --ink:#1a1a1a; --muted:#666; --soft:#f6f7fb;
  --radius:16px; --radius-sm:10px; --shadow:0 10px 30px rgba(0,0,0,.15);
  --header-h: 70px;  /* one source of truth for header height */
}

/* Exact Vehicle Page Navigation Styles */
.container{width:min(1100px,94%); margin-inline:auto}

.site-header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(8px);
  background:linear-gradient(135deg, #280353, #1a0238);
  border-bottom:1px solid #eee;
  box-shadow: 0 2px 15px rgba(40, 3, 83, 0.3);
}
.nav{display:flex; align-items:center; justify-content:space-between; padding:.8rem 0}
.brand{display:flex; align-items:center; gap:.6rem; text-decoration:none; color:#ffffff; font-weight:800}
.brand .dot{width:12px; height:12px; border-radius:50%; background:#ffd700}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.nav-item { position: relative; }
.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
  transform: translateY(-2px);
}
.nav a.cta{display:inline-flex; align-items:center; gap:.5rem; background:#ffd700; color:var(--purple); text-decoration:none; padding:.65rem 1rem; border-radius:999px; font-weight:800; box-shadow:0 8px 16px rgba(255,209,102,.25)}
.nav a.cta:hover{transform:translateY(-1px)}
.nav .phone{color:#ffd700; font-weight:700; text-decoration:none}

.hamburger { display: none; flex-direction: column; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 3px; background-color: #ffffff; margin: 3px 0; transition: 0.3s; border-radius: 2px; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #280353, #1a0238);
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(40, 3, 83, 0.3);
}
.mobile-menu.active { display: block; }
.mobile-menu .nav-link {
  display: block;
  text-align: center;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width:768px){
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav { flex-wrap: wrap; position: relative; }
}

/* Just Limos Banner Styles (Updated for new position) */
.justlimos-banner {
  /* This is no longer fixed. It will now appear below the navbar. */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  font-family: 'Arial', sans-serif;
  background-color: #000;
  margin-top: var(--header-h);
}

/* Centered logo with improved visibility */
.logo-drive-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  padding: 0px 10px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.logo-drive {
  max-width: 300px;
  height: auto;
  display: block;
  filter: brightness(1.2) contrast(1.3); /* Makes the logo pop on black */
}

/* LED Glowing CTA Box */
.led-glow {
  text-decoration: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.quote-box {
  text-align: center;
  padding: 8px 15px;
  border-radius: 10px;
  background: #1a1a2e;
  color: white;
  box-shadow: 0 0 15px 5px #ff00ff;
  animation: neonPulse 12s infinite linear;
  max-width: 500px;
  width: 90%;
  transition: transform 0.2s ease-in-out;
}

.quote-box:hover {
  transform: scale(1.03);
}

.quote-subtext {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 8px;
}

.quote-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 5px;
}

.quote-cta {
  font-size: 12px;
}

.click-bounce {
  color: orange;
  font-weight: bold;
}

/* Multi-color LED background animation */
@keyframes neonPulse {
  0%    { box-shadow: 0 0 25px 10px #ff00ff; }   /* magenta */
  5%    { box-shadow: 0 0 25px 10px #8a2be2; }   /* blue violet */
  10%   { box-shadow: 0 0 25px 10px #4b0082; }   /* indigo */
  15%   { box-shadow: 0 0 25px 10px #0000ff; }   /* blue */
  20%   { box-shadow: 0 0 25px 10px #00ced1; }   /* dark turquoise */
  25%   { box-shadow: 0 0 25px 10px #00ffff; }   /* aqua */
  30%   { box-shadow: 0 0 25px 10px #7fffd4; }   /* aquamarine */
  35%   { box-shadow: 0 0 25px 10px #00ff7f; }   /* spring green */
  40%   { box-shadow: 0 0 25px 10px #00ff00; }   /* lime */
  45%   { box-shadow: 0 0 25px 10px #adff2f; }   /* green yellow */
  50%   { box-shadow: 0 0 25px 10px #ffff00; }   /* yellow */
  55%   { box-shadow: 0 0 25px 10px #ffd700; }   /* gold */
  60%   { box-shadow: 0 0 25px 10px #ffa500; }   /* orange */
  65%   { box-shadow: 0 0 25px 10px #ff8c00; }   /* dark orange */
  70%   { box-shadow: 0 0 25px 10px #ff4500; }   /* orange red */
  75%   { box-shadow: 0 0 25px 10px #ff0000; }   /* red */
  80%   { box-shadow: 0 0 25px 10px #dc143c; }   /* crimson */
  85%   { box-shadow: 0 0 25px 10px #ff1493; }   /* deep pink */
  90%   { box-shadow: 0 0 25px 10px #c71585; }   /* medium violet red */
  100%  { box-shadow: 0 0 25px 10px #ff00ff; }   /* magenta (loop back) */
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a2e;
    --accent-color: #ffd700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Navbar styles (Updated for new position) */
.navbar {
    position: fixed;
    top: 0; /* Now at the very top of the page */
    width: 100%;
    z-index: 1000;
}

/* Adjust body padding (Updated for just the navbar) */
body {
    padding-top: 0; /* No padding needed for sticky navbar */
}

.videos-hero {
    margin-top: var(--header-h); /* Back to normal navbar height */
}

/* City Page Styles */
.city-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 50%, #ff6b35 100%);
    color: #fff;
    position: relative;
    min-height: 60vh;
    margin-top: var(--header-h); /* Account for fixed navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.city-hero > * {
    position: relative;
    z-index: 2;
}

/* Videos Page Styles */
.videos-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3561 50%, #ff6b35 100%);
    color: #fff;
    position: relative;
    min-height: 50vh;
    margin-top: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.videos-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.videos-hero > * {
    position: relative;
    z-index: 2;
}

.videos-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-gallery {
    margin-bottom: 60px;
}

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

@media (max-width: 350px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.video-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.video-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.video-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5em;
}

.close {
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

#videoContainer {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#videoContainer p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.2em;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .videos-hero {
        padding: 25px 10px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    #videoContainer iframe {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        max-height: 250px;
    }
}

@media (max-width: 320px) {
    .videos-hero h1 {
        font-size: 1.8rem;
    }
    
    .video-caption h3 {
        font-size: 1rem;
    }
    
    .video-caption p {
        font-size: 0.8rem;
    }
    
    .play-overlay i {
        font-size: 35px;
    }
    
    .modal-content {
        margin: 15% auto;
        width: 98%;
        max-height: 70vh;
    }
    
    .modal-header {
        padding: 12px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.1em;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    #videoContainer iframe {
        max-height: 200px;
    }
}

.video-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-placeholder i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.video-placeholder h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.video-placeholder p {
    color: #666;
    line-height: 1.6;
    max-width: 300px;
}

.video-thumbnail {
    position: relative;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: all 0.3s ease;
}

.play-overlay i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-card:hover .play-overlay i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.video-caption {
    padding: 15px 20px;
    background: white;
    text-align: left;
}

.video-caption h3 {
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 600;
}

.video-caption p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin: 0;
}

.video-features {
    background: #f8f9fa;
    padding: 60px 20px;
    border-radius: 12px;
    margin-bottom: 60px;
}

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

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: var(--gradient-primary);
    color: #fff;
    padding: 60px 20px;
    border-radius: 12px;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 15px;
    font-size: 2em;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 1.1em;
    opacity: 0.9;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.city-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.city-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

.city-hero .btn {
    margin: 8px 12px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.city-hero .btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.city-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.city-hero .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.city-hero .btn-outline:hover {
    background: white;
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* City Page Content */
.city-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px;
}

.city-content section {
    margin-bottom: 50px;
}

.city-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
}

.city-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.city-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #666;
}

.city-content ul {
    list-style: none;
    padding: 0;
}

.city-content li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.city-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.city-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.city-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Breadcrumb Styling */
nav[aria-label="Breadcrumb"] {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}

nav[aria-label="Breadcrumb"] a {
    color: #888;
    text-decoration: none;
}

nav[aria-label="Breadcrumb"] a:hover {
    color: var(--primary-color);
}

/* Responsive Design for City Pages */
@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 2.5rem;
    }
    
    .city-hero p {
        font-size: 1.1rem;
    }
    
    .city-hero .btn {
        display: block;
        margin: 12px auto;
        max-width: 250px;
    }
    
    .city-content {
        padding: 40px 20px;
    }
    
    .city-content h2 {
        font-size: 1.8rem;
    }
}

/* City Shared Menu Styles */
.city-shared-menu {
  margin: 40px auto;
  padding: 20px;
  max-width: 1100px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
}

.city-menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-menu-list a {
  text-decoration: none;
  padding: 6px 8px;
  display: inline-block;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-weight: 500;
  color: var(--secondary-color);
}

.city-menu-list a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 70px;
}

.nav-container .logo {
    justify-self: start;
}

.nav-container .nav-phone {
    justify-self: center;
}

.nav-container .nav-menu {
    justify-self: end;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none !important;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

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

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: -2px;
}

.logo i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 2rem;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.nav-phone {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    gap: 8px;
    background: rgba(255, 107, 53, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

.nav-phone i {
    color: var(--primary-color);
    font-size: 1rem;
}

.nav-phone a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

.nav-phone a:hover {
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    min-height: calc(100vh - 70px); /* The Fix: Fills the REMAINING screen space */
    display: flex;
    align-items: center;
    background: var(--gradient-hero),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="party" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="1200" height="800" fill="url(%23party)"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 0px 20px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(26, 26, 46, 0.8) 50%, 
        rgba(255, 107, 53, 0.1) 100%);
    animation: shimmer 8s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

.hero-video {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInUp 1s ease-out 0.6s both;
}

.video-placeholder {
    width: 400px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.video-placeholder:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.fleet {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.fleet-image {
    height: 250px;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.fleet-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
}

.services {
    padding: 100px 0;
    background: var(--gradient-secondary);
}

.services .section-title {
    color: var(--text-light);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.price span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.1rem;
}

.contact {
    padding: 100px 0;
    background: var(--gradient-secondary);
}

.contact .section-title {
    color: var(--text-light);
}

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

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.3rem;
    width: 20px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    background: white;
}

.footer {
    background: #000;
    color: var(--text-light);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 2rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        grid-template-columns: 1fr auto auto;
    }
    
    .nav-phone {
        font-size: 0.9rem;
        margin-right: 10px;
        padding: 6px 10px;
        gap: 6px;
    }
    
    .nav-phone a {
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .video-placeholder {
        width: 300px;
        height: 200px;
    }
    
    .video-thumbnail {
        min-height: 200px;
    }
    
    .video-caption {
        padding: 12px 15px;
    }
    
    .video-caption h3 {
        font-size: 1.2em;
        margin-bottom: 6px;
    }
    
    .video-caption p {
        font-size: 0.9em;
        line-height: 1.4;
    }
    
    .play-overlay i {
        font-size: 45px;
    }
    
    .videos-hero {
        min-height: 40vh;
        margin-top: var(--header-h);
        padding: 40px 20px;
    }
    
    .videos-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .videos-hero p {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .videos-content {
        padding: 40px 15px;
    }
    
    .video-gallery h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .video-features {
        padding: 40px 15px;
        margin-bottom: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 40px 15px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .fleet-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-phone {
        font-size: 0.8rem;
        margin-right: 5px;
        padding: 6px 8px;
        gap: 4px;
    }
    
    .nav-phone a {
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .hero {
        padding: 0px 5px 400px;
    }
    
    .hero-content {
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 0;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .fleet-grid,
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fleet-card,
    .service-card,
    .pricing-card {
        margin: 0 10px;
    }
    
    .video-thumbnail {
        min-height: 180px;
    }
    
    .video-caption {
        padding: 10px 12px;
    }
    
    .video-caption h3 {
        font-size: 1.1em;
        margin-bottom: 5px;
    }
    
    .video-caption p {
        font-size: 0.85em;
        line-height: 1.3;
    }
    
    .play-overlay i {
        font-size: 40px;
    }
    
    .videos-hero {
        min-height: 35vh;
        margin-top: var(--header-h);
        padding: 30px 15px;
    }
    
    .videos-hero h1 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .videos-hero p {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .videos-content {
        padding: 30px 15px;
    }
    
    .video-gallery h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .video-gallery p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .video-grid {
        gap: 15px;
        margin-top: 25px;
    }
    
    .video-features {
        padding: 30px 15px;
        margin-bottom: 30px;
        border-radius: 8px;
    }
    
    .video-features h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature {
        text-align: center;
        padding: 15px;
    }
    
    .feature i {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .feature h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .cta-section {
        padding: 30px 15px;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dark JL grid */
.fleet--dark { background:#0e0e0f; padding-top:30px; padding-bottom:40px; }
.fleet--dark .section-title { color:#fff; letter-spacing:.3px; }

.jl-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap:22px;
}

.jl-card {
  background:#121214;
  border:1px solid #2a2a2e;
  box-shadow: 0 4px 14px rgba(0,0,0,.45);
  border-radius:6px;
  overflow:hidden;
  position:relative;
  transition: transform .18s ease, box-shadow .18s ease;
}
.jl-card:hover { transform: translateY(-3px); box-shadow:0 10px 20px rgba(0,0,0,.55); }

.jl-photo { position:relative; display:block; aspect-ratio: 4/3; background:#000; }
.jl-photo img { width:100%; height:100%; object-fit:cover; display:block; }

.jl-click {
  position:absolute; bottom:10px; left:10px;
  background:#ffd34f; color:#111; font-weight:800; 
  padding:8px 10px; border-radius:4px; line-height:1.05; text-align:center;
  box-shadow:0 2px 8px rgba(0,0,0,.35);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.jl-click small { display:block; font-weight:600; font-size:.72rem; letter-spacing:.2px; }

.jl-mic {
  position:absolute; top:10px; right:10px;
  background:rgba(255,255,255,.9); color:#7a2bf6;
  width:34px; height:34px; border-radius:50%;
  display:grid; place-items:center;
  box-shadow:0 2px 8px rgba(0,0,0,.25);
}


.jl-title {
  font-size:0.95rem; color:#fff; padding:12px 12px 0 12px; margin:0;
}
.jl-rating {
  padding:8px 12px 14px 12px; color:#c7c7c7; font-size:.9rem;
}
.jl-stars { color:#ffb400; letter-spacing:2px; margin-right:6px; }
.jl-reviews { color:#8ec5ff; text-decoration:none; }

/* Location Cards Styles */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.location-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.location-card a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.location-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.location-card:hover a {
  color: var(--primary-color, #ff6b35);
}

/* Responsive adjustments for location cards */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
  }
  
  .location-card {
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.6rem;
  }
  
  .location-card {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}
.jl-reviews:hover { text-decoration:underline; }

/* ===== ENHANCED MOBILE RESPONSIVENESS ===== */

/* Better mobile viewport handling */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .jl-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
  }
}

/* Enhanced tablet responsiveness */
@media (max-width: 768px) {
  /* Improve navigation for tablets */
  .nav-container {
    height: 65px;
  }
  
  body {
    padding-top: 0;
  }
  
  /* Better hero section */
  .hero {
    min-height: calc(100vh - 65px);
    padding: 20px 15px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  /* Improve fleet section */
  .fleet {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .jl-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  /* Better quote box */
  .quote-box {
    padding: 12px 20px;
    max-width: 450px;
  }
  
  .quote-title {
    font-size: 16px;
  }
  
  /* Location cards optimization */
  .locations {
    padding: 60px 0;
  }
  
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  
  .location-card {
    padding: 12px 8px;
    font-size: 0.9rem;
  }
}

/* Mobile phone optimizations */
@media (max-width: 480px) {
  /* Compact navigation */
  .nav-container {
    height: 60px;
    padding: 0 10px;
  }
  
  body {
    padding-top: 0;
  }
  
  .logo {
    font-size: 0.8rem;
  }
  
  .logo-main {
    font-size: 1.2rem;
  }
  
  .logo-subtitle {
    font-size: 0.7rem;
  }
  
  /* Hero section mobile optimization */
  .hero {
    min-height: calc(100vh - 60px);
    padding: 15px 10px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  
  /* Quote banner mobile */
  .justlimos-banner {
    padding: 8px;
  }
  
  .quote-box {
    padding: 10px 15px;
    max-width: 320px;
    width: 95%;
  }
  
  .quote-title {
    font-size: 15px;
  }
  
  .quote-cta {
    font-size: 11px;
  }
  
  .quote-subtext {
    font-size: 12px;
  }
  
  /* Fleet section mobile */
  .fleet {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  
  .jl-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
  
  .jl-card {
    margin: 0 5px;
  }
  
  .jl-title {
    font-size: 0.9rem;
    padding: 10px;
  }
  
  .jl-rating {
    padding: 6px 10px 12px;
    font-size: 0.85rem;
  }
  
  .jl-click {
    padding: 6px 8px;
    font-size: 0.8rem;
    bottom: 8px;
    left: 8px;
  }
  
  .jl-click small {
    font-size: 0.7rem;
  }
  
  /* Services section mobile */
  .services {
    padding: 40px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .service-card {
    padding: 25px 20px;
    margin: 0 5px;
  }
  
  .service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
  }
  
  /* Locations section mobile */
  .locations {
    padding: 40px 0;
  }
  
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    padding: 0 10px;
  }
  
  .location-card {
    padding: 8px 6px;
    font-size: 0.8rem;
    border-radius: 6px;
  }
  
  .location-card a {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  
  /* Footer mobile */
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-content {
    padding: 0 10px;
  }
  
  .footer-logo {
    font-size: 1.2rem;
  }
  
  .footer-links {
    gap: 15px;
    font-size: 0.9rem;
  }
  
  .social-links a {
    font-size: 1.3rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .quote-box {
    max-width: 280px;
  }
  
  .jl-grid {
    padding: 0 5px;
  }
  
  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    padding: 0 5px;
  }
  
  .btn {
    max-width: 260px;
    font-size: 0.9rem;
  }
}

/* Landscape mobile optimization */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 10px;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .hero-buttons {
    gap: 10px;
  }
  
  .btn {
    padding: 10px 20px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }
  
  .nav-link {
    padding: 12px 15px;
  }
  
  .location-card {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .jl-card {
    transform: none !important;
  }
  
  .jl-card:hover {
    transform: none !important;
  }
}

/* ===== QUOTE FORM MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .quote-form {
    padding: 20px;
    margin: 10px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 15px;
    border-radius: 8px;
  }
  
  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .quote-form {
    padding: 15px;
    margin: 5px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 12px;
    min-height: 44px; /* Touch friendly */
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .btn-submit {
    width: 100%;
    min-height: 50px;
    font-size: 1.1rem;
    padding: 15px;
  }
}

/* ===== CITY PAGES MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .city-hero {
    min-height: 50vh;
    padding: 40px 20px;
  }
  
  .city-hero h1 {
    font-size: 2.2rem;
  }
  
  .city-hero p {
    font-size: 1rem;
  }
  
  .city-content {
    padding: 40px 20px;
  }
  
  .city-content h2 {
    font-size: 1.8rem;
  }
  
  .city-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .city-hero {
    min-height: 40vh;
    padding: 30px 15px;
  }
  
  .city-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .city-hero p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .city-hero .btn {
    width: 100%;
    max-width: 280px;
    margin: 8px auto;
  }
  
  .city-content {
    padding: 30px 15px;
  }
  
  .city-content h2 {
    font-size: 1.6rem;
  }
  
  .city-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .city-content li {
    font-size: 1rem;
    padding: 10px 0;
    padding-left: 25px;
  }
  
  .city-content li::before {
    width: 18px;
    height: 18px;
    top: 10px;
    font-size: 11px;
  }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  /* Reduce animation complexity on mobile */
  .hero::before {
    animation: none;
  }
  
  /* Optimize background gradients for mobile */
  .hero {
    background-image: var(--gradient-hero);
    background-attachment: scroll; /* Better performance than fixed */
  }
  
  /* Simplify shadows on mobile */
  .jl-card,
  .service-card,
  .location-card {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  
  .jl-card:hover,
  .service-card:hover,
  .location-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
}