/* Parking Finder SEO Pages - Premium Dark Navbar for Netlify */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles - PREMIUM DARK NAVBAR */
header {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #000000 100%) !important;
    color: #ffffff !important;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.9) !important;
    border-bottom: 4px solid #ff6b6b !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.inner-container {
    background: rgba(0,0,0,0.95) !important;
    padding: 0;
    border-bottom: 2px solid #3498db;
}

.top {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    padding: 15px 0;
    border-bottom: 3px solid #ff6b6b !important;
}

.top ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top li {
    margin: 0 20px;
}

.top a {
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.top a:hover {
    color: #ff6b6b !important;
    transform: translateY(-2px);
}

/* Logo - Premium Styling */
#logo {
    float: left;
    padding: 25px 0;
}

.logo a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 32px;
    font-weight: 900;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    text-shadow: 0 4px 8px rgba(0,0,0,0.7);
    letter-spacing: -1px;
}

.logo a:hover {
    transform: translateY(-3px) scale(1.05);
    color: #ff6b6b !important;
}

.logo img {
    height: 60px;
    margin-right: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.8);
    border: 3px solid #ff6b6b;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(255,107,107,0.4);
}

/* Navigation - PREMIUM STYLING */
#nav-menu-container {
    float: right;
    padding: 25px 0;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #ffffff !important;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
    border: 2px solid #3498db !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-menu a:hover::before {
    left: 0;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    border-color: #ff6b6b !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255,107,107,0.5);
    color: #ffffff !important;
}

.menu-active a {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    border-color: #ff6b6b !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

/* Clearfix */
.clearfix {
    clear: both;
}

/* Hero Section - Premium */
#header-row {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1573503325416-b900b0c56ce9?w=1600&h=600&fit=crop') center/cover;
    padding: 150px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#header-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,107,107,0.1) 0%, rgba(52,152,219,0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#header-row img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    border: 4px solid #ff6b6b;
    transition: all 0.4s ease;
}

#header-row img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(255,107,107,0.3);
}

/* Main Content - Premium Cards */
.prod {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px;
    margin: 50px 0;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    line-height: 1.9;
    font-size: 17px;
    border: 3px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.prod::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b 0%, #3498db 50%, #ff6b6b 100%);
    animation: slide 3s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.prod strong {
    color: #2c3e50;
    font-weight: 800;
    font-size: 18px;
}

.prod p {
    margin-bottom: 25px;
    color: #495057;
    font-size: 17px;
    line-height: 1.8;
}

.parking-finder {
    text-align: center;
    margin: 80px 0;
    position: relative;
}

.parking-finder h3 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 900;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.parking-finder strong {
    color: #ff6b6b;
    font-weight: 900;
    font-size: 52px;
}

/* Action Buttons - Premium */
.action-buttons {
    text-align: center;
    margin: 70px 0;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 3px solid #dee2e6;
    position: relative;
}

.action-buttons h4 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    padding: 22px 40px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    transition: left 0.4s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.6);
}

.btn-custom img {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn-custom:hover img {
    transform: rotate(360deg);
}

.btn-playstore {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
}

.btn-playstore:hover {
    box-shadow: 0 20px 50px rgba(39, 174, 96, 0.6);
}

.btn-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    box-shadow: 0 12px 35px rgba(0, 119, 181, 0.5);
}

.btn-linkedin:hover {
    box-shadow: 0 20px 50px rgba(0, 119, 181, 0.6);
}

/* Gallery */
.gal {
    margin: 80px 0;
}

.gal img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 3px solid #fff;
}

.gal img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    border-color: #ff6b6b;
}

/* Footer - Premium */
footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #000000 100%) !important;
    color: white;
    padding: 100px 0 40px;
    margin-top: 120px;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b 0%, #3498db 50%, #ff6b6b 100%);
}

.footer-top {
    margin-bottom: 60px;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 30px;
    font-weight: 800;
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ff6b6b;
    transform: translateX(10px);
}

.footer-links i {
    margin-right: 15px;
    color: #ff6b6b;
    width: 20px;
}

.footer-contact p {
    color: #bdc3c7;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 16px;
}

.footer-contact strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-contact .links {
    color: #ff6b6b;
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: inline-block;
    width: 55px;
    height: 55px;
    background: rgba(255,107,107,0.2);
    color: white;
    text-align: center;
    line-height: 55px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b6b;
    font-size: 20px;
}

.social-links a:hover {
    background: #ff6b6b;
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 15px 35px rgba(255,107,107,0.5);
}

/* Footer Bottom */
.copyright {
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #ff6b6b;
    color: #95a5a6;
}

.copyright strong {
    color: #ffffff;
}

.copyright a {
    color: #ff6b6b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.copyright a:hover {
    color: #ffffff;
}

/* Back to Top - Premium */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(255,107,107,0.5);
    border: 4px solid #ffffff;
    font-size: 24px;
    font-weight: bold;
}

.back-to-top:hover {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 20px 60px rgba(255,107,107,0.6);
}

/* Site Map Link */
.site_map {
    position: fixed;
    left: 50px;
    top: 150px;
    z-index: 1000;
}

.site_map a {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
    font-weight: 800;
    border: 3px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.site_map a:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 45px rgba(39, 174, 96, 0.6);
}

/* What We Offer */
.whatweoffer {
    position: fixed;
    left: 50px;
    top: 220px;
    z-index: 1000;
}

.whatweoffer a {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
    font-weight: 800;
    border: 3px solid #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.whatweoffer a:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 18px 45px rgba(243, 156, 18, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top ul {
        flex-direction: column;
        text-align: center;
    }
    
    .top li {
        margin: 8px 0;
    }
    
    #logo {
        float: none;
        text-align: center;
        padding: 20px 0;
    }
    
    .logo a {
        font-size: 24px;
    }
    
    .logo img {
        height: 40px;
    }
    
    #nav-menu-container {
        float: none;
        padding: 20px 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-menu li {
        margin: 5px 0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .site_map,
    .whatweoffer {
        position: static;
        text-align: center;
        margin: 20px 0;
    }
    
    .site_map a,
    .whatweoffer a {
        display: inline-block;
        margin: 10px;
    }
    
    #header-row {
        padding: 80px 0;
    }
    
    .parking-finder h3 {
        font-size: 32px;
    }
    
    .prod {
        padding: 30px;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-custom {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-menu a {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .parking-finder h3 {
        font-size: 28px;
    }
    
    .action-buttons {
        padding: 30px;
    }
    
    .action-buttons h4 {
        font-size: 20px;
    }
}
