/* ========================================
   ðŸš€ YAPIMONTAJ - UNIVERSAL PAGES STYLESHEET
   Alt Sayfalar (bahcecit, oluk, Ã§elik, vb.) iÃ§in Ortak TasarÄ±m
   Deep Space Dark Theme + Neon Accents
   ======================================== */

/* ===== IMPORT MAIN DESIGN SYSTEM ===== */
:root {
    /* Color Palette - Deep Space Theme */
    --color-deep-space: #0a0a0f;
    --color-space-layer: #13131a;
    --color-slate: #1a1a24;

    /* Neon Accents */
    --neon-cyan: #00e5ff;
    --neon-orange: #ff6b35;
    --neon-purple: #b84dff;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Inter', 'Outfit', -apple-system, sans-serif;

    /* Spacing */
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;

    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-deep-space);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 229, 255, 0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08), transparent 40%);
    z-index: -1;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-5%, -5%);
    }
}

/* ===== BACK TO HOME BUTTON ===== */
.back-home-btn {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.875rem 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--neon-cyan);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--neon-cyan);
    border-radius: 0.5rem;
    transition: all var(--transition-base);
    z-index: 1000;
}

.back-home-btn:hover {
    background: var(--neon-cyan);
    color: var(--color-deep-space);
    transform: translateX(-5px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.5);
}

/* ===== HERO HEADER SECTION ===== */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-deep-space) 100%);
    z-index: -1;
}

.overlay-gradient,
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
    z-index: 0;
}

.hero-content,
.header-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.sub-title,
.sub-headline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--neon-orange);
    margin-bottom: var(--space-md);
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 2rem;
}

.hero-section h1,
.main-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--neon-cyan);
}

.hero-section p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

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

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===== CONTAINER & SECTIONS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Container - Prevents content from sticking to edges */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    padding: var(--space-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: -1;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 229, 255, 0.3);
}

.img-box {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .img-box img {
    transform: scale(1.1);
}

.text-box {
    padding: 1.5rem;
}

.text-box h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
}

.text-box p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===== PRODUCT SECTION (Alternating Layout) ===== */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: var(--space-xl) 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-section.reverse {
    direction: rtl;
}

.product-section.reverse>* {
    direction: ltr;
}

.prod-visual {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.prod-visual img {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-base);
}

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

.visual-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--neon-orange);
    color: var(--color-deep-space);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 0.25rem;
    z-index: 10;
}

.prod-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.prod-content h2 span {
    color: var(--neon-cyan);
}

.prod-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* ===== BUTTONS ===== */
.btn-gallery,
.gallery-trigger,
.opt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--color-deep-space);
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
    margin-top: var(--space-md);
}

.btn-gallery:hover,
.gallery-trigger:hover,
.opt-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(0, 229, 255, 0.4),
        0 0 40px rgba(184, 77, 255, 0.3);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: var(--space-md) 0;
}

.opt-btn {
    margin: 0;
}

/* ===== PROCESS STEPS ===== */
.process-section {
    background: var(--color-slate);
    padding: var(--space-xl) 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    transition: all var(--transition-base);
}

.step:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--neon-cyan);
    position: relative;
}

.step-num {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--neon-orange);
    color: var(--color-deep-space);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.step h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.step p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    opacity: 0.5;
}

/* ===== TECHNICAL DETAILS ===== */
.technical-details {
    padding: var(--space-xl) 0;
}

.tech-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tech-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    margin-bottom: var(--space-lg);
}

.tech-list {
    list-style: none;
}

.tech-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    transition: all var(--transition-base);
}

.tech-list li:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
}

.tech-list li i {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-top: 0.25rem;
}

.tech-list li strong {
    display: block;
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.tech-list li span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.tech-visual img {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    animation: whatsappPulse 2s infinite;
    transition: all var(--transition-base);
    z-index: 9999;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(15deg);
}

/* ===== GALLERY ACTION AREA ===== */
.gallery-action-area {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-box {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: var(--color-slate);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color var(--transition-base);
}

.close-modal:hover {
    color: var(--neon-cyan);
}

.modal-title {
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.modal-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.modal-box .tech-list li span {
    color: var(--neon-orange);
    font-weight: 700;
}

/* ===== NAVBAR (for pages with nav) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-base);
}

.back-link:hover {
    transform: translateX(-5px);
}

.brand {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ===== PAGE HEADER (Alternative to hero-section) ===== */
.page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--color-slate) 0%, var(--color-deep-space) 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding: 5rem 1.5rem 3rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: var(--space-lg) 1.5rem;
    }

    .product-section.reverse {
        direction: ltr;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }

    .tech-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .back-home-btn {
        top: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

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

@media (max-width: 480px) {

    .hero-section h1,
    .main-headline {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .img-box {
        height: 200px;
    }
}
/* ========================================
   ?? HAKKIMIZDA.PHP - GLASSMORPHISM STYLES
   ======================================== */

.about-hero-section {
    padding: 120px 0 60px;
}

.about-hero-content {
    padding: 3rem;
}

.about-main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-base);
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.about-section-divider {
    text-align: center;
    margin: 4rem 0 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.about-section-divider h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.about-section-divider p {
    color: rgba(255, 255, 255, 0.6);
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-feature-card {
    padding: 2.5rem;
    text-align: center;
    transition: all var(--transition-base);
}

.about-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-cyan);
    box-shadow: 
        0 10px 40px rgba(0, 229, 255, 0.3),
        inset 0 0 30px rgba(0, 229, 255, 0.05);
}

.about-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--neon-cyan);
    transition: all var(--transition-base);
}

.about-feature-card:hover .about-feature-icon {
    background: var(--neon-cyan);
    color: var(--color-deep-space);
    transform: rotate(360deg);
}

.about-feature-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.about-feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ========================================
   ?? ÝLETÝÞÝM.PHP - CONTACT PAGE STYLES
   ======================================== */

.contact-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 2rem 4rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-info-card,
.contact-form-card {
    padding: 2.5rem;
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-list {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    transition: all var(--transition-base);
}

.info-item:hover {
    transform: translateX(10px);
    border-color: var(--neon-cyan);
    background: rgba(0, 229, 255, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 2rem;
    color: var(--neon-orange);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition-base);
}

.feature-badge:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.feature-badge i {
    font-size: 1rem;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    filter: grayscale(100%) invert(90%);
    transition: all var(--transition-base);
}

.map-container:hover {
    filter: grayscale(100%) invert(90%) brightness(1.1);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* ========================================
   ?? MODERN FORM STYLES (Neon Underline)
   ======================================== */

.modern-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.req {
    color: var(--neon-orange);
}

.modern-input-wrapper {
    position: relative;
}

.modern-input-wrapper .input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.125rem;
    transition: color var(--transition-base);
}

.modern-input,
.modern-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--glass-border);
    color: #ffffff;
    padding: 0.875rem 0 0.875rem 2.5rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    outline: none;
}

.modern-textarea {
    padding-left: 0;
    resize: vertical;
    min-height: 100px;
}

.modern-input::placeholder,
.modern-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.modern-input:focus,
.modern-textarea:focus {
    border-bottom-color: var(--neon-cyan);
    box-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
}

.modern-input:focus + .input-icon,
.modern-input-wrapper:focus-within .input-icon {
    color: var(--neon-cyan);
}

select.modern-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300e5ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

.security-area {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}

.kvkk-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.kvkk-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--neon-cyan);
    cursor: pointer;
}

.kvkk-box a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: color var(--transition-base);
}

.kvkk-box a:hover {
    color: var(--neon-purple);
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-deep-space);
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-purple) 100%);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(0, 229, 255, 0.4),
        0 0 40px rgba(184, 77, 255, 0.3);
}

.success-msg,
.error-msg {
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.success-msg {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
}

.error-msg {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

@media (max-width: 768px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-image {
        order: -1;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-page-container {
        padding: 100px 1.5rem 3rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content {
        padding: 2rem;
    }

    .about-feature-card {
        padding: 2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}
