/* ===== PARK SAFE OTOPARK - Custom Styles ===== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Font defaults */
body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
}

/* Hero gradient overlay */
.hero-gradient {
    background: linear-gradient(135deg, rgba(17,17,17,0.92) 0%, rgba(29,78,216,0.85) 100%);
}

/* Card hover effects */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(29, 78, 216, 0.15);
}

/* Price card highlight pulse */
.price-popular {
    position: relative;
    border: 2px solid #1d4ed8;
}
.price-popular::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    border: 2px solid rgba(29, 78, 216, 0.3);
    animation: pricePulse 2s ease-in-out infinite;
}
@keyframes pricePulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.01); }
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #1d4ed8, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #1d4ed8, #fbbf24);
    border-radius: 2px;
}

/* Stat counter animation */
.stat-item {
    transition: transform 0.3s ease;
}
.stat-item:hover {
    transform: scale(1.05);
}

/* Location card */
.location-card {
    transition: all 0.3s ease;
    overflow: hidden;
}
.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Contact form focus */
.form-input:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.15);
}

/* Feature icon float */
.feature-icon {
    animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Timeline line */
.timeline-line {
    position: relative;
}
.timeline-line::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #1d4ed8, #fbbf24);
}

/* Mobile responsive helpers */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem !important;
    }
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page banner pattern */
.banner-pattern {
    background-image:
        radial-gradient(circle at 20% 80%, rgba(251,191,36,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29,78,216,0.15) 0%, transparent 50%);
}

/* Parking icon spin on hover */
.park-icon-spin:hover i {
    animation: spin360 0.6s ease;
}
@keyframes spin360 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---------- Overflow / Tasma Korumasi ---------- */
html, body {
    overflow-x: hidden;
}

*, *::before, *::after {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
