/* ==========================================================================
   NEXT LIMO - MAIN APP CSS (TAILWIND OVERRIDES & CUSTOM COMPONENTS)
   ========================================================================== */

/* 1. GOOGLE MAPS PLACE AUTOCOMPLETE (SHADOW DOM OVERRIDE) */

gmp-place-autocomplete {
    width: 100%;
    display: block;
}

gmp-place-autocomplete::part(input) {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 1rem 1rem 1rem 3rem;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

gmp-place-autocomplete::part(input):focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #D4AF37;
    box-shadow: 0 0 0 1px #D4AF37;
}

gmp-place-autocomplete::part(search-icon) {
    display: none;
}

/* 2. CLASSIC AUTOCOMPLETE FALLBACK */

.pac-container {
    background-color: #121212 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 0 0 4px 4px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.pac-item {
    color: #cccccc !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.pac-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.pac-item-query {
    color: #D4AF37 !important;
    font-weight: 600;
    font-size: 15px;
}

.pac-icon {
    filter: invert(1);
    opacity: 0.5;
}

.pac-logo::after {
    display: none !important;
}

/* 3. BLOG CONTENT TYPOGRAPHY */

.blog-content {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content p:last-child {
    margin-bottom: 0;
}

.blog-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-content a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-content a:hover {
    color: #eab308;
}

.blog-content strong,
.blog-content b {
    color: #ffffff;
    font-weight: 600;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content ul {
    list-style-type: disc;
}

.blog-content ol {
    list-style-type: decimal;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 3px solid #D4AF37;
    padding-left: 1.25rem;
    margin: 1.5rem 0;
    color: #9ca3af;
    font-style: italic;
}

.blog-content img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
}

.blog-content pre {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.blog-content code {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 0.15rem 0.4rem;
    font-size: 0.875rem;
}

.blog-content pre code {
    background: none;
    padding: 0;
}

.blog-content hr {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.blog-content th,
.blog-content td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    text-align: left;
}

.blog-content th {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-weight: 600;
}

/* 4. FORM ANIMATIONS */

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