@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #ae0011;
    --primary-light: #d71920;
    --primary-dark: #8a000d;
    --secondary: #5f5e5e;
    --background: #f8f9fa;
    --surface: #ffffff;
    --text: #191c1d;
}

body {
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Premium Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Header */
.glass-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Hero Section Enhancements */
.hero-gradient-overlay {
    background: linear-gradient(90deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0.8) 30%, rgba(248, 249, 250, 0) 100%);
}

/* Service Card Hover */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(174, 0, 17, 0.08);
}

.service-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Fuel Price Ticker */
.price-ticker {
    background: #191c1d;
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
}

.ticker-wrap {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.price-item {
    display: inline-flex;
    align-items: center;
    margin-right: 40px;
}

.price-value {
    color: #ae0011;
    font-weight: 700;
    margin-left: 8px;
}

/* Custom Buttons */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s ease;
}

.btn-premium:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) translateY(-100%);
}

/* Section Spacing */
.py-premium {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Varol Yazılım Signature Style */
.varol-signature {
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.varol-signature:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-5px);
}

.varol-text {
    background: linear-gradient(90deg, #9ca3af, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.varol-signature:hover .varol-text {
    background: linear-gradient(90deg, #ae0011, #8a000d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(174, 0, 17, 0.2);
}

.varol-logo {
    filter: drop-shadow(0 0 0px rgba(174, 0, 17, 0));
    transition: all 0.5s ease;
}

.varol-signature:hover .varol-logo {
    filter: drop-shadow(0 0 10px rgba(174, 0, 17, 0.4));
}

#mobile-menu.animate-in { animation: slideInDown 0.3s ease-out forwards; }
@keyframes slideInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
