/* CSS Custom Properties - Tüm renkler, fontlar ve boyutlar buradan yönetilir */
:root {
    /* Ana Renkler */
    --bg-primary: #000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #0f0f0f;
    --bg-light: #fff;
    --bg-gray: #f7f7f7;
    --bg-dark-gray: #333;
    --bg-overlay: rgba(0, 0, 0, 0.6);

    /* Metin Renkleri */
    --text-primary: #f1f1f1;
    --text-secondary: #555555;
    --text-dark: #1a1a1a;
    --text-light: #fff;
    --text-gray: #9f9e9e;
    --text-light-gray: #ccc;
    --text-muted: #666;
    --text-footer: #999;
    --text-accent: #7e7e7e;

    /* Border Renkleri */
    --border-light: #e0e0e0;
    --border-dark: #333;

    /* Font Aileleri */
    --font-primary: "Raleway", sans-serif;
    --font-secondary: "Titillium Web", sans-serif;
    --font-accent: "Josefin Sans", sans-serif;
    --font-fallback: 'Arial', sans-serif;

    /* Font Boyutları */
    --fs-xs: 12px;
    --fs-sm: 13px;
    --fs-base: 14px;
    --fs-md: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 30px;
    --fs-4xl: 36px;
    --fs-5xl: 42px;
    --fs-6xl: 48px;
    --fs-hero: 120px;

    /* Responsive Font Boyutları */
    --fs-hero-mobile: 2rem;
    --fs-hero-tablet: 2.5rem;
    --fs-hero-laptop: 4rem;
    --fs-section-mobile: 1.8rem;
    --fs-section-tablet: 2.8rem;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;
    --spacing-4xl: 100px;
    --spacing-5xl: 140px;

    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 15px;
    --radius-2xl: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 15px 30px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.8s;

    /* Renkler */
    --bg: #f9f9fb;
    --surface: #ffffff;
    --border: #e0e0e0;
    --text: #333333;
    --muted: #666666;
    --primary: #d0a85c;

    /* Ölçüler */
    --radius: 14px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: "Raleway", sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/sidebar-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    padding: 2rem;
    transition: transform var(--transition-fast);
}

.sidebar.hidden {
    transform: translateX(-100%);
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.logo img {
    max-width: 150px;
    height: auto;
}

.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    color: var(--text-light-gray);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-light);
    padding-left: 1rem;
}

.nav-menu a.active::before {
    content: '→';
    position: absolute;
    left: -10px;
    font-size: 1.2rem;
}

.social-links {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: var(--text-light);
    border-color: var(--text-light);
    transform: scale(1.1);
}

.elementor-screen-only {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px !important;
    height: 1px !important;
    overflow: hidden;
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    cursor: pointer;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: var(--radius-sm);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Main Content */
.main-content {
    margin-left: 300px;
    flex: 1;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Dikey ortalama */
    align-items: center;
    /* Yatay ortalama */
    text-align: center;
    height: 300px;
    /* Arka plan yüksekliği */
    background: url("arka-plan.jpg") no-repeat center center;
    background-size: cover;
    /* Resmi sayfaya uygun şekilde kapla */
    color: white;
    /* Yazıyı beyaz yap */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    /* Resmi karartma */
}

.hero-content {
    font-size: 3rem;
    margin: 0;
}

.hero-content h1 {
    font-family: var(--font-secondary);
    font-size: var(--fs-hero-laptop);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.breadcrumb {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

/* Genel container */
.container {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 40px 0;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-tertiary);
    padding: 80px 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-column,
.contact-form-column {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.06);
    /* daha şeffaf (önceden 0.12 idi) */
    border-radius: 16px;
    /* köşeleri yumuşatır */
    padding: 20px;
    /* iç boşluk */
    backdrop-filter: blur(6px);
    /* cam efekti için */
}


.section-header {
    margin-bottom: 2rem;
}

.section-header span {
    font-family: var(--font-accent);
    font-size: var(--fs-xs);
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-form-column p {
    color: rgba(255, 255, 255, 0.9);
    /* Açık beyaz, %90 opak */
    line-height: 1.6;
    margin-bottom: 2rem;
}


.contact-form input,
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    /* hafif beyaz şeffaf */
    border: 1px solid var(--border-dark);
    /* alt çizgi yerine tam çerçeve */
    border-radius: 12px;
    /* oval kenarlar */
    padding: 12px 14px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    outline: none;
    margin-bottom: 1rem;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    border-color: rgba(255, 255, 255, 0.18) !important;
    /* %18 opaklık */
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 300px;
    border-top: 1px solid var(--border-dark);
}

.contact-form input,
.contact-form textarea {
    border-bottom-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.18) !important;
    /* %18 opaklık */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.18) !important;
    /* %18 opaklık */
}

.send-btn {
    background-color: transparent;
    border: 2px solid var(--text-light-gray);
    color: var(--text-light-gray);
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 1rem;
    border-radius: var(--radius-2xl);
    font-family: var(--font-accent);
}

.send-btn:hover {
    background-color: var(--text-light-gray);
    color: var(--bg-primary);
}

.contact-details {
    margin-top: 2rem;
}

.contact-info-column p {
    color: rgba(255, 255, 255, 0.9);
    /* Açık beyaz, %90 opak */
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-bottom: 1.5rem;
    gap: 1rem;
    color: var(--text-light-gray);
}

.contact-item i {
    font-size: 1rem;
    color: var(--text-light);
    width: 28px;
    /* sabit sütun */
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* dikey sapmayı önler */
    transform: translateY(-22px);
}

.contact-item .info-text h6 {
    margin: 0 0 6px;
    /* sadece altta küçük boşluk */
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: var(--font-accent);
    color: rgba(255, 255, 255, .9);
}

.contact-item .info-text p {
    margin: 0.5rem;
    /* üst/alt margin kalksın */
    font-size: 0.95rem;
    color: rgba(255, 255, 255, .9);
}

.contact-item .info-text p a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item .info-text p a:hover {
    color: var(--text-light);
}


.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
}

.social-icon:hover {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    margin-top: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.footer-left {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 120px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-logo .logo-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-description {
    color: var(--text-footer);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-right h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light-gray);
}

.contact-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-footer);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--text-light);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 280px;
        transform: translateX(-100%);
        transition: transform var(--transition-fast);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        transition: margin-left var(--transition-fast);
    }

    .contact-content {
        flex-direction: column-reverse;
        /* Mobil görünümde formu üste alır */
    }

    .contact-info-column,
    .contact-form-column {
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: var(--fs-hero-tablet);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: var(--fs-hero-mobile);
    }
}

:root {
    /* Ana Renkler */
    --bg-primary: #000;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #0f0f0f;
    --bg-light: #fff;
    --bg-gray: #f7f7f7;
    --bg-dark-gray: #333;
    --bg-overlay: rgba(0, 0, 0, 0.6);

    /* Metin Renkleri */
    --text-primary: #f1f1f1;
    --text-secondary: #555555;
    --text-dark: #1a1a1a;
    --text-light: #fff;
    --text-gray: #9f9e9e;
    --text-light-gray: #ccc;
    --text-muted: #666;
    --text-footer: #999;
    --text-accent: #7e7e7e;

    /* Border Renkleri */
    --border-light: #e0e0e0;
    --border-dark: #333;

    /* Font Aileleri */
    --font-primary: "Raleway", sans-serif;
    --font-secondary: "Titillium Web", sans-serif;
    --font-accent: "Josefin Sans", sans-serif;
    --font-fallback: 'Arial', sans-serif;

    /* Font Boyutları */
    --fs-xs: 12px;
    --fs-sm: 13px;
    --fs-base: 14px;
    --fs-md: 16px;
    --fs-lg: 18px;
    --fs-xl: 20px;
    --fs-2xl: 24px;
    --fs-3xl: 30px;
    --fs-4xl: 36px;
    --fs-5xl: 42px;
    --fs-6xl: 48px;
    --fs-hero: 120px;

    /* Responsive Font Boyutları */
    --fs-hero-mobile: 2rem;
    --fs-hero-tablet: 2.5rem;
    --fs-hero-laptop: 4rem;
    --fs-section-mobile: 1.8rem;
    --fs-section-tablet: 2.8rem;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;
    --spacing-4xl: 100px;
    --spacing-5xl: 140px;

    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 5px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 15px;
    --radius-2xl: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 15px 30px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.8s;

    /* Renkler */
    --bg: #f9f9fb;
    --surface: #ffffff;
    --border: #e0e0e0;
    --text: #333333;
    --muted: #666666;
    --primary: #d0a85c;
}

.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.footer-left {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 180px;
}

/* Logonun altındaki yazıyı sola hizalamak için */
.footer-description {
    color: var(--text-footer);
    line-height: 1.6;
    font-size: 0.95rem;
    text-align: left;
}

.footer-right h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light-gray);
}

.contact-icon {
    font-size: 1rem;
    opacity: 0.7;
}

/* Adres yazısını küçültmek için */
.contact-address {
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-footer);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--text-light);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.tecno-button {
    background-color: #f5f5f5;
    /* Açık gri-beyaz ton */
    color: #111;
    /* Koyu yazı rengi */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border: 2px solid #ccc;
    /* Hafif çerçeve */
    border-radius: 8px;
    /* Yuvarlatılmış köşe */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Hafif gölge */
}

.tecno-button:hover {
    background-color: #ffffff;
    /* Hover’da daha parlak */
    border-color: #999;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.tecno-button:active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

/* WhatsApp Sabit İkonu */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.whatsapp-float i {
    color: white;
    font-size: 32px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}