/* =========================================
   VARIABLES & BASE STYLES
   ========================================= */
:root {
    --primary: #f5b900;
    /* Zirve Makine Yellow/Gold */
    --primary-hover: #d29e00;
    --dark: #0f1012;
    --dark-alt: #1a1c1f;
    --light: #f8f9fa;
    --gray: #9ba0a3;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.bg-dark {
    background-color: var(--dark-alt);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.highlight {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 12px 28px;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 9px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 185, 0, 0.2);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 12px 28px;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(15, 16, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
    font-weight: 300;
    margin-left: 5px;
}

.logo img {
    max-height: 165px;
    /* 110px'in tam 1.5 katı */
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
    /* Hafif bir derinlik (gölge) şıklık katar */
    transform-origin: left center;
}

.navbar.scrolled .logo img {
    max-height: 90px;
    /* Scrolled (aşağı inildiğinde) hali de 1.5 kat büyütüldü (60px -> 90px) */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu li a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-menu li a:not(.btn-primary):hover::after,
.nav-menu li a.active:not(.btn-primary)::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('zirvewebgaleri/foto_11.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax Efekti İçin Eklendi */
    animation: zoomInBg 20s ease-out forwards;
    z-index: 0;
}

@keyframes zoomInBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 16, 18, 0.9) 0%, rgba(15, 16, 18, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
    /* Offset for navbar */
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    display: inline-block;
    padding: 8px 15px;
    background-color: rgba(245, 185, 0, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item h3 {
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 50%;
    height: 50%;
    border-top: 5px solid var(--primary);
    border-left: 5px solid var(--primary);
    z-index: 0;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50%;
    height: 50%;
    border-bottom: 5px solid var(--primary);
    border-right: 5px solid var(--primary);
    z-index: 0;
}

.img-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

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

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--dark);
    padding: 40px 30px;
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(245, 185, 0, 0.05) 0%, rgba(15, 16, 18, 0) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(245, 185, 0, 0.1);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--dark);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background-color: var(--dark-alt);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.info-list {
    margin-top: 30px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-list span {
    color: var(--light);
    font-size: 1.1rem;
}

.contact-form {
    background-color: var(--dark);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.08);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background-color: #080808;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary);
    font-weight: 300;
}

.footer-logo p {
    max-width: 300px;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-alt);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--dark-alt);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo p {
        margin: 0 auto;
    }
}

/* Typewriter Cursor */
.cursor {
    display: inline-block;
    color: var(--primary);
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Yüzen WhatsApp Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: wa-bounce 2.5s infinite ease-in-out;
}

.whatsapp-btn:hover {
    transform: scale(1.15) rotate(15deg);
    background-color: #1ebe57;
    color: white;
}

@keyframes wa-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-7px); }
}

/* Lightbox Modal (Galeri için) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 18, 0.95);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    border: 3px solid var(--primary);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.2) rotate(90deg);
}

/* =========================================
   ABOUT HEADER
   ========================================= */
.about-header {
    background: url('zirvewebgaleri/foto_6.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: none;
    padding: 0;
}

.about-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 18, 0.7);
    z-index: 1;
}

.about-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-header h1 {
    font-size: 4rem;
    color: var(--primary);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.about-header p {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   VISION / MISSION
   ========================================= */
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.vm-card {
    background: var(--dark-lighter);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-us.section {
    padding-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--dark);
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--dark-lighter);
    border-color: rgba(245, 185, 0, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 185, 0, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--dark);
    transform: rotateY(180deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* =========================================
   INNER PAGES / PAGE HEADER
   ========================================= */
.page-header {
    background: linear-gradient(135deg, rgba(15, 16, 18, 0.95), rgba(0, 0, 0, 0.95)),
        url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&q=80&w=1920') no-repeat center center / cover;
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 2px solid var(--primary);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.spinner {
    font-size: 3.5rem;
    color: var(--primary);
    animation: spinCog 2s linear infinite;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

@keyframes spinCog {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* =========================================
   RESPONSIVE & MOBILE
   ========================================= */
@media (max-width: 992px) {

    /* Tablet için */
    .hero h1 {
        font-size: 3.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-header h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    /* Hamburger Menü */
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(15, 16, 18, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        padding: 50px 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    /* Fontlar */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-header h1 {
        font-size: 2.5rem;
    }

    /* Layout Düzeltmeleri */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }

    .ba-slider {
        aspect-ratio: 1/1;
    }

    /* Footer Düzeltmeleri */
    .footer-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 25px;
    }

    .footer-logo p {
        margin: 10px auto 0;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    /* WhatsApp Butonu Mobil Ayarı */
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 2rem;
        bottom: 90px;
        /* Safari/Chrome mobil alt arayüzünün arkasında kalmasını kesin önlemek için 90px yapıldı */
        right: 20px;
        z-index: 9999;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 120px;
    }

    .navbar.scrolled .logo img {
        max-height: 70px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-header h1 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 200px;
    }
}

/* =========================================
   CUSTOM CURSOR (Özel İmleç)
   ========================================= */
@media (pointer: fine) {
    body {
        cursor: none;
    }

    a,
    button,
    input,
    textarea,
    .service-card,
    .gallery-item {
        cursor: none;
    }

    .cursor-dot {
        width: 6px;
        height: 6px;
        background-color: var(--primary);
        /* Sadece temiz bir sarı nokta */
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 10000;
        transition: opacity 0.3s ease;
    }

    .cursor-outline {
        width: 32px;
        height: 32px;
        border: 1px solid rgba(245, 185, 0, 0.4);
        /* Çok ince, zarif bir dış halka */
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 9999;
        transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    }

    .cursor-hover.cursor-outline {
        animation: weld-spark 0.6s infinite alternate;
        /* Orijinale göre daha yavaş, zarif titreme */
        transition: none;
        /* Animasyonun kesintisiz çalışması için */
    }

    .cursor-hover.cursor-dot {
        opacity: 1;
        background-color: #ffffff;
        /* Temiz parlak nokta */
        box-shadow: 0 0 4px #00e1ff, 0 0 8px #0051ff;
        /* Daha yumuşak mavimsi parıltı */
        animation: weld-core 0.3s infinite alternate;
        transition: none;
    }
}

/* Kaynak (Welding) Efekti Keyframeleri (Zarif Sürüm) */
@keyframes weld-core {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.85;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes weld-spark {
    0% {
        width: 32px;
        height: 32px;
        border-color: rgba(245, 185, 0, 0.8);
        background-color: rgba(245, 185, 0, 0.1);
        box-shadow: 0 0 5px rgba(245, 185, 0, 0.4);
    }

    100% {
        width: 44px;
        height: 44px;
        border-color: rgba(255, 255, 255, 0.9);
        background-color: rgba(245, 185, 0, 0.2);
        box-shadow: 0 0 15px rgba(245, 185, 0, 0.6), 0 0 25px rgba(255, 120, 0, 0.4);
    }
}

/* =========================================
   ADDED CLASSES (User Fixes)
   ========================================= */
.text-primary {
    color: var(--primary) !important;
}

.footer-brand-logo img {
    max-height: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0px 5px 15px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.footer-brand-logo img:hover {
    transform: scale(1.05);
}

.video-thumbnail {
    cursor: pointer;
}

.video-thumb-wrapper {
    position: relative;
    overflow: hidden;
}

.video-thumb-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.video-thumbnail:hover .video-thumb-wrapper img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(245, 185, 0, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark);
    font-size: 24px;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-btn {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 16, 18, 0.95);
    z-index: 10002;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(5px);
}

.video-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.video-lightbox-content {
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 8px;
    border: 3px solid var(--primary);
    transform: scale(0.9);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    background: #000;
}

.video-lightbox.active .video-lightbox-content {
    transform: scale(1);
}

/* =========================================
   INSTAGRAM CTA SECTION
   ========================================= */
.instagram-cta {
    background: linear-gradient(135deg, var(--dark-alt) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.instagram-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center,
            rgba(245, 185, 0, 0.08) 0%,
            rgba(245, 185, 0, 0.02) 40%,
            transparent 70%);
    animation: igGlow 8s ease-in-out infinite alternate;
}

@keyframes igGlow {
    0% {
        transform: translate(-5%, -5%) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

.instagram-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 22px;
    background: rgba(245, 185, 0, 0.1);
    border: 2px solid var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(245, 185, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.instagram-cta-content:hover .instagram-icon-wrapper {
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(245, 185, 0, 0.4);
    background: var(--primary);
    color: var(--dark);
}

.instagram-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.instagram-cta-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--dark);
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(245, 185, 0, 0.2);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 185, 0, 0.4);
    background: transparent;
    color: var(--primary);
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* =========================================
   LEGAL PAGES & CORPORATE FOOTER
   ========================================= */
.legal-section {
    padding: 150px 0 100px;
}

.legal-content {
    background: var(--dark-alt);
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.legal-content h2 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: var(--white);
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--gray);
    text-align: justify;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-content ul li {
    list-style: disc;
    color: var(--gray);
    margin-bottom: 10px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.form-checkbox label a:hover {
    color: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 2px;
    background: var(--primary);
}

.corporate-info {
    margin-top: 20px;
}

.corporate-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.corporate-detail i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 0.85rem;
    color: var(--gray);
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .legal-content {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}