/* ============================================
   Bandırma Kiralık Vinç - Custom CSS
   kv- prefix ile custom class'lar
   ============================================ */

:root {
    /* Dark Mode Colors - Neon Turuncu/Cyan Paleti */
    --kv-bg-primary: #0a0a0a;
    --kv-bg-secondary: #141414;
    --kv-bg-tertiary: #1a1a1a;
    --kv-text-primary: #ffffff;
    --kv-text-secondary: #b0b0b0;
    --kv-text-muted: #707070;
    /* Neon Turuncu & Cyan Renkler */
    --kv-accent: #ff6b35;
    --kv-accent-hover: #ff8c5a;
    --kv-accent-light: #ff9d6b;
    --kv-accent-secondary: #00d9ff;
    --kv-accent-secondary-hover: #33e0ff;
    --kv-border: #2a2a2a;
    --kv-border-light: #3a3a3a;
    /* Neon Gradient - Turuncu Açık Turuncu */
    --kv-gradient: linear-gradient(135deg, #ff6b35 0%, #ffab00 100%);
    --kv-gradient-neon: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 50%, #ffab00 100%);
    /* Neon Shadows */
    --kv-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --kv-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.7);
    --kv-shadow-neon-orange: 0 0 20px rgba(255, 107, 53, 0.5), 0 0 40px rgba(255, 107, 53, 0.3);
    --kv-shadow-neon-cyan: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.3);
    --kv-shadow-neon-mixed: 0 0 30px rgba(255, 107, 53, 0.4), 0 0 60px rgba(0, 217, 255, 0.3);
}

/* ============================================
   Typography - Büyük ve Modern Fontlar
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
        font-size: 20px;
  }
}

@media (min-width: 1200px) {
    html {
        font-size: 22px;
}
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--kv-bg-primary);
    color: var(--kv-text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection Color */
::selection {
    background: var(--kv-accent);
    color: white;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

::-moz-selection {
    background: var(--kv-accent);
    color: white;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--kv-bg-secondary);
    border-left: 1px solid var(--kv-border);
}

::-webkit-scrollbar-thumb {
    background: var(--kv-gradient);
    border-radius: 6px;
    border: 2px solid var(--kv-bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8c5a 0%, #ffb84d 100%);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--kv-accent) var(--kv-bg-secondary);
}

.kv-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ============================================
   Container & Layout
   ============================================ */

.kv-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .kv-container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   Header & Navigation
   ============================================ */

.kv-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--kv-border);
}

.kv-nav {
    padding: 1.5rem 0;
}

    .kv-nav .kv-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.kv-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.kv-logo-text {
    color: var(--kv-text-primary);
}

.kv-logo-accent {
    color: var(--kv-accent);
    background: var(--kv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kv-nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.kv-nav-link {
    color: var(--kv-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .kv-nav-link:hover {
        color: var(--kv-text-primary);
    }

    .kv-nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--kv-gradient);
        transition: width 0.3s ease;
        box-shadow: var(--kv-shadow-neon-mixed);
    }

    .kv-nav-link:hover::after {
        width: 100%;
    }

.kv-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.kv-nav-link:hover .kv-icon {
    color: var(--kv-accent);
    filter: drop-shadow(0 0 4px var(--kv-accent));
}

.kv-nav-cta {
    background: var(--kv-gradient);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    box-shadow: var(--kv-shadow-neon-mixed);
    animation: kv-pulse-neon 2s ease-in-out infinite;
}

    .kv-nav-cta::after {
        display: none;
    }

    .kv-nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: var(--kv-shadow-neon-mixed), 0 10px 30px rgba(255, 107, 53, 0.4);
        animation: none;
    }

@keyframes kv-pulse-neon {
    0%, 100% {
        box-shadow: var(--kv-shadow-neon-mixed);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 53, 0.6), 0 0 80px rgba(0, 217, 255, 0.4);
    }
}

.kv-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

    .kv-nav-toggle span {
        width: 28px;
        height: 3px;
        background: var(--kv-text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

@media (max-width: 968px) {
    .kv-nav-toggle {
        display: flex;
    }

    .kv-nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--kv-bg-secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        border-top: 1px solid var(--kv-border);
        z-index: 999;
    }

    .kv-nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .kv-nav-cta {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Main Content
   ============================================ */

.kv-main {
    flex: 1;
}

/* ============================================
   Hero Section
   ============================================ */

.kv-hero {
    padding: 6rem 0;
    background: radial-gradient(ellipse at top, rgba(255, 107, 53, 0.1) 0%, rgba(0, 217, 255, 0.05) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

    .kv-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

    .kv-hero::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        animation: kv-rotate 20s linear infinite;
        pointer-events: none;
    }

@keyframes kv-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.kv-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.kv-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--kv-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3), 0 0 60px rgba(0, 217, 255, 0.2);
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.2));
}

.kv-hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--kv-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.kv-hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.kv-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.kv-btn-primary {
    background: var(--kv-gradient);
    color: white;
    box-shadow: var(--kv-shadow-neon-mixed);
    position: relative;
    overflow: hidden;
}

    .kv-btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .kv-btn-primary:hover::before {
        left: 100%;
    }

    .kv-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: var(--kv-shadow-neon-mixed), 0 15px 50px rgba(255, 107, 53, 0.4);
    }

.kv-btn-secondary {
    background: var(--kv-bg-tertiary);
    color: var(--kv-text-primary);
    border: 2px solid var(--kv-border-light);
}

    .kv-btn-secondary:hover {
        background: var(--kv-bg-secondary);
        border-color: var(--kv-accent);
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
    }

/* ============================================
   Content Sections
   ============================================ */

.kv-section {
    padding: 5rem 0;
}

.kv-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: var(--kv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    padding: 0 3rem;
}

.kv-section-title::before,
.kv-section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--kv-gradient);
    transform: translateY(-50%);
}

.kv-section-title::before {
    left: 0;
}

.kv-section-title::after {
    right: 0;
}

@media (max-width: 768px) {
    .kv-section-title {
        padding: 0 2rem;
    }
    
    .kv-section-title::before,
    .kv-section-title::after {
        width: 1.5rem;
    }
}

.kv-section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--kv-text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
}

.kv-content {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--kv-text-secondary);
}

    .kv-content h2 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 700;
        margin: 2.5rem 0 1.5rem;
        line-height: 1.3;
        background: var(--kv-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
        display: inline-block;
        padding: 0 2.5rem;
    }

    .kv-content h2::before,
    .kv-content h2::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 1.5rem;
        height: 2px;
        background: var(--kv-gradient);
        transform: translateY(-50%);
    }

    .kv-content h2::before {
        left: 0;
    }

    .kv-content h2::after {
        right: 0;
    }

    .kv-content h3 {
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 600;
        margin: 2rem 0 1rem;
        line-height: 1.4;
        background: var(--kv-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    @media (max-width: 768px) {
        .kv-content h2 {
            padding: 0 1.5rem;
        }
        
        .kv-content h2::before,
        .kv-content h2::after {
            width: 1rem;
        }
    }

    .kv-content p {
        margin-bottom: 1.5rem;
    }

    .kv-content ul,
    .kv-content ol {
        margin: 1.5rem 0;
        padding-left: 2rem;
    }

    .kv-content li {
        margin-bottom: 0.75rem;
        color: var(--kv-text-secondary);
    }

    .kv-content strong {
        color: var(--kv-text-primary);
        font-weight: 600;
    }

    .kv-content a {
        color: var(--kv-accent);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    }

        .kv-content a:hover {
            border-bottom-color: var(--kv-accent);
            text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
            color: var(--kv-accent-light);
        }

/* ============================================
   Cards & Grid
   ============================================ */

.kv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.kv-card {
    background: var(--kv-bg-secondary);
    border: 1px solid var(--kv-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

    .kv-card:hover {
        transform: translateY(-5px);
        border-color: var(--kv-accent);
        box-shadow: var(--kv-shadow), 0 0 30px rgba(255, 107, 53, 0.2);
    }

.kv-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--kv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kv-card-text {
    color: var(--kv-text-secondary);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */

.kv-footer {
    background: var(--kv-bg-secondary);
    border-top: 1px solid var(--kv-border);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.kv-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.kv-footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--kv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kv-footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: var(--kv-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kv-footer-text {
    color: var(--kv-text-secondary);
    line-height: 1.7;
}

.kv-footer-links {
    list-style: none;
}

    .kv-footer-links li {
        margin-bottom: 0.75rem;
    }

    .kv-footer-links a {
        color: var(--kv-text-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

.kv-footer-links a:hover {
    color: var(--kv-accent);
}

.kv-footer-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.kv-footer-icon {
    width: 18px;
    height: 18px;
    color: var(--kv-accent);
    flex-shrink: 0;
}

.kv-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--kv-border);
    text-align: center;
    color: var(--kv-text-muted);
    font-size: 0.9rem;
}

.kv-footer-credit {
    margin-top: 0.5rem;
}

.kv-footer-link {
    color: var(--kv-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.kv-footer-link:hover {
    color: var(--kv-text-secondary);
}

.kv-footer-link-accent {
    color: var(--kv-accent);
    transition: all 0.3s ease;
}

.kv-footer-link:hover .kv-footer-link-accent {
    color: var(--kv-accent-light);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* ============================================
   Contact Form
   ============================================ */

.kv-form {
    max-width: 600px;
    margin: 0 auto;
}

.kv-form-group {
    margin-bottom: 1.5rem;
}

.kv-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--kv-text-primary);
}

.kv-form-input,
.kv-form-textarea {
    width: 100%;
    padding: 1rem;
    background: var(--kv-bg-tertiary);
    border: 1px solid var(--kv-border);
    border-radius: 8px;
    color: var(--kv-text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

    .kv-form-input:focus,
    .kv-form-textarea:focus {
        outline: none;
        border-color: var(--kv-accent);
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1), 0 0 20px rgba(255, 107, 53, 0.2);
    }

.kv-form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   Utilities
   ============================================ */

.kv-text-center {
    text-align: center;
}

.kv-mt-1 {
    margin-top: 1rem;
}

.kv-mt-2 {
    margin-top: 2rem;
}

.kv-mt-3 {
    margin-top: 3rem;
}

.kv-mb-1 {
    margin-bottom: 1rem;
}

.kv-mb-2 {
    margin-bottom: 2rem;
}

.kv-mb-3 {
    margin-bottom: 3rem;
}

/* ============================================
   Responsive Adjustments
   ============================================ */

/* ============================================
   Scroll to Top Button
   ============================================ */

.kv-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--kv-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--kv-shadow-neon-mixed);
}

    .kv-scroll-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .kv-scroll-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--kv-shadow-neon-mixed), 0 10px 40px rgba(255, 107, 53, 0.5);
    }

    .kv-scroll-top .kv-icon {
        width: 24px;
        height: 24px;
        color: white;
    }

/* ============================================
   Swiper Slider
   ============================================ */

.kv-swiper-section {
    padding: 4rem 0;
    background: var(--kv-bg-secondary);
    position: relative;
    overflow: hidden;
}

.kv-swiper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.kv-swiper-slide {
    width: 400px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .kv-swiper-slide {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .kv-swiper-slide {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .kv-swiper-slide {
        width: 250px;
    }
}

.kv-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.kv-swiper-slide:hover img {
    transform: scale(1.1);
}

.swiper-pagination {
    display: none;
}

@media (max-width: 768px) {
    .kv-swiper {
        height: 300px;
    }
}

/* ============================================
   Blob Animations
   ============================================ */

.kv-section-with-blob {
    position: relative;
    overflow: hidden;
}

.kv-blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--kv-gradient);
    opacity: 0.1;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: kv-blob-animation 20s ease-in-out infinite;
}

.kv-blob-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.kv-blob-2 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    animation-delay: 5s;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.kv-blob-3 {
    width: 450px;
    height: 450px;
    bottom: -200px;
    right: -200px;
    animation-delay: 10s;
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
}

.kv-blob-4 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -150px;
    animation-delay: 15s;
    border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
}

@keyframes kv-blob-animation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
}

.kv-section-with-blob > .kv-container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Image Sections
   ============================================ */

.kv-image-section {
    padding: 3rem 0;
}

.kv-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--kv-border);
    box-shadow: var(--kv-shadow);
    transition: all 0.3s ease;
}

.kv-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--kv-shadow-lg), 0 0 30px rgba(255, 107, 53, 0.2);
    border-color: var(--kv-accent);
}

.kv-image-wrapper-large {
    max-width: 1200px;
}

.kv-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 400px;
    background: var(--kv-bg-tertiary);
}

.kv-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.kv-image-grid .kv-image-wrapper {
    max-width: 100%;
}

.kv-image-grid .kv-image {
    min-height: 300px;
}

@media (max-width: 768px) {
    .kv-image {
        min-height: 250px;
    }
    
    .kv-image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .kv-image-grid .kv-image {
        min-height: 200px;
    }
}

/* ============================================
   CTA Section
   ============================================ */

.kv-cta-section {
    padding: 5rem 0;
    background: var(--kv-bg-secondary);
    position: relative;
    overflow: hidden;
}

    .kv-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.kv-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kv-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--kv-gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kv-cta-text {
    font-size: 1.2rem;
    color: var(--kv-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.kv-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .kv-hero {
        padding: 4rem 0;
    }

    .kv-section {
        padding: 3rem 0;
    }

    .kv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kv-card {
        padding: 2rem;
    }

    .kv-scroll-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }

    .kv-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

        .kv-cta-buttons .kv-btn {
            width: 100%;
        }
}
