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

:root {
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #AA8C2C;
    --black-mat: #121212;
    --black-coal: #0F0F0F;
    --anthracite: #1A1A1A;
    --white: #F5F5F5;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(26, 26, 26, 0.6);
    --glass-border: rgba(212, 175, 55, 0.2);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.5);
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.5);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--black-coal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.text-gold { color: var(--gold); }
.bg-gold { background-color: var(--gold); color: var(--black-mat); }
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: var(--shadow-premium);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-padding { padding: 80px 0; }
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    box-shadow: var(--gold-glow);
    border-radius: 2px;
}

/* Buttons */
.btn-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black-mat);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--gold-glow);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}
.btn-gold:hover::before {
    left: 100%;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black-mat);
    box-shadow: var(--gold-glow);
}

/* Header */
header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}
header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: var(--gold-glow);
}
.logo span {
    color: var(--white);
    font-weight: 300;
}
.nav-links {
    display: flex;
    gap: 25px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold);
    transition: var(--transition);
    box-shadow: var(--gold-glow);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.header-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-phone i {
    animation: pulse 2s infinite;
}
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--gold);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../assets/images/1.jpeg') center/cover no-repeat;
    z-index: -2;
    filter: brightness(0.4);
    animation: zoom 20s infinite alternate;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15,15,15,0.9) 0%, rgba(15,15,15,0.4) 100%);
    z-index: -1;
}
.hero-content {
    max-width: 800px;
}
.hero-subtitle {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}
.hero-desc {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 600px;
}
.hero-btns {
    display: flex;
    gap: 20px;
}

/* Feature Cards (Neden Biz) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}
.feature-card:hover::before {
    opacity: 1;
}
.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7), inset 0 0 20px rgba(212,175,55,0.05);
}
.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.4));
}
.feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Counters */
.counters-section {
    background: linear-gradient(rgba(15,15,15,0.9), rgba(15,15,15,0.9)), url('../assets/images/2.jpeg') center/cover fixed;
    padding: 80px 0;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}
.counter-item .number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Montserrat';
    color: var(--gold);
    text-shadow: var(--gold-glow);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.counter-item .label {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vehicles Preview */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.vehicle-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    group: hover;
}
.vehicle-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}
.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.vehicle-card:hover .vehicle-img {
    transform: scale(1.1);
}
.vehicle-info {
    padding: 25px;
    background: var(--anthracite);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: relative;
    z-index: 2;
}
.vehicle-name {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.vehicle-features {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.vehicle-features span {
    display: flex;
    align-items: center;
    gap: 5px;
}
.vehicle-features i {
    color: var(--gold);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
}
.whatsapp-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8);
}
.call-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black-mat);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: var(--gold-glow);
    transition: var(--transition);
}
.call-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

/* Footer */
footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212,175,55,0.1);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 40px; height: 2px;
    background: var(--gold);
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.2);
}
.social-icons a:hover {
    background: var(--gold);
    color: var(--black-mat);
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-bottom a {
    color: var(--gold);
    font-weight: 600;
}

/* Animations */
@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Inner Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(15,15,15,0.8), rgba(15,15,15,0.95)), url('../assets/images/WhatsApp\ Image\ 2026-07-13\ at\ 13.12.54.jpeg') center/cover;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.page-title {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: var(--gold-glow);
}
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.breadcrumb a {
    color: var(--white);
}
.breadcrumb a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 70%; height: 100vh;
        background: rgba(15,15,15,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        border-left: 1px solid rgba(212,175,55,0.2);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: block; }
    .header-phone { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .btn-gold, .btn-outline { width: 100%; text-align: center; }
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}
.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.2);
    background: rgba(255,255,255,0.1);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Blog Cards */
.blog-card {
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}
.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-img {
    transform: scale(1.05);
}
.blog-content {
    padding: 25px;
}
.blog-meta {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}
.read-more {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.read-more:hover {
    gap: 10px;
}

/* Lightbox Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15,15,15,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}
.gallery-overlay i {
    color: var(--gold);
    font-size: 2rem;
    transform: scale(0);
    transition: 0.3s 0.1s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}
