/*
Theme Name: Conpera
Theme URI: https://conpera.com
Author: Conpera
Author URI: https://conpera.com
Description: Modern ve profesyonel WordPress teması. Elementor ile tam uyumludur.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: conpera
Tags: custom, elementor, construction, business
*/

/* ============================================
   FONTAWESOME IMPORT
   ============================================ */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ============================================
   MODERN HEADER - OVERLAY STICKY
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header - Overlay & Sticky */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 30px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.header-phone:hover {
    opacity: 0.7;
}

.header-phone i,
.header-phone .fa,
.header-phone .fas {
    font-size: 22px !important;
    opacity: 0.8;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

@media (max-width: 768px) {
    .header-phone {
        display: none;
    }
}

/* Logo / Branding */
.site-branding {
    z-index: 1001;
}

.site-title {
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.site-title a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-title a:hover {
    opacity: 0.7;
}

.custom-logo-link {
    display: block;
    line-height: 0;
}

.custom-logo {
    max-height: 35px;
    width: auto;
    transition: all 0.4s ease;
}

.site-header.scrolled .custom-logo {
    max-height: 30px;
}

/* Hamburger Menu - Minimalist Lines */
.hamburger-menu {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    padding: 0;
}

.hamburger-menu:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-menu:focus {
    outline: none;
}

.hamburger-line {
    position: absolute;
    left: 50%;
    width: 26px;
    height: 2px;
    background: #ffffff;
    transform: translateX(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-line:nth-child(1) {
    top: 16px;
}

.hamburger-line:nth-child(2) {
    top: 24px;
}

.hamburger-line:nth-child(3) {
    top: 32px;
}

/* Hamburger Animation - X Shape */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-inner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px 60px;
}

/* Menu Content */
.menu-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-nav li {
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fullscreen-menu.active .fullscreen-nav li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation */
.fullscreen-menu.active .fullscreen-nav li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(5) { transition-delay: 0.3s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(6) { transition-delay: 0.35s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(7) { transition-delay: 0.4s; }
.fullscreen-menu.active .fullscreen-nav li:nth-child(8) { transition-delay: 0.45s; }

.fullscreen-nav a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 20px 0;
    position: relative;
    transition: all 0.3s ease;
}

.fullscreen-nav a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.4s ease;
}

.fullscreen-nav a:hover {
    color: #cccccc;
}

.fullscreen-nav a:hover::after {
    width: 100%;
}

.fullscreen-nav .current-menu-item a,
.fullscreen-nav .current_page_item a {
    color: #ffffff;
}

.fullscreen-nav .current-menu-item a::after,
.fullscreen-nav .current_page_item a::after {
    width: 100%;
}

/* Submenu */
.fullscreen-nav .sub-menu {
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
}

.fullscreen-nav .sub-menu a {
    font-size: 24px;
    padding: 10px 0;
    letter-spacing: 2px;
    opacity: 0.7;
}

.fullscreen-nav .sub-menu a:hover {
    opacity: 1;
}

/* Menu Footer */
.menu-footer {
    margin-top: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.fullscreen-menu.active .menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.menu-contact {
    text-align: center;
}

.menu-contact p {
    color: #999999;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 10px 0;
}

.menu-contact a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-contact a:hover {
    color: #ffffff;
}

.menu-contact i,
.menu-contact .fa,
.menu-contact .fas {
    margin-right: 8px;
    opacity: 0.7;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    display: inline-block !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Content padding for fixed header */
.site-content {
    padding-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .fullscreen-nav a {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .site-header {
        padding: 20px 0;
    }
    
    .site-header.scrolled {
        padding: 15px 0;
    }
    
    .hamburger-menu {
        width: 45px;
        height: 45px;
    }
    
    .fullscreen-nav a {
        font-size: 28px;
        padding: 15px 0;
    }
    
    .fullscreen-nav .sub-menu a {
        font-size: 18px;
    }
    
    .fullscreen-menu-inner {
        padding: 80px 20px 40px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
    
    .custom-logo {
        max-height: 30px;
    }
    
    .site-header.scrolled .custom-logo {
        max-height: 25px;
    }
    
    .hamburger-menu {
        width: 40px;
        height: 40px;
    }
    
    .hamburger-line {
        width: 22px;
    }
    
    .hamburger-line:nth-child(1) {
        top: 14px;
    }
    
    .hamburger-line:nth-child(2) {
        top: 19px;
    }
    
    .hamburger-line:nth-child(3) {
        top: 24px;
    }
    
    .hamburger-menu.active .hamburger-line:nth-child(1),
    .hamburger-menu.active .hamburger-line:nth-child(3) {
        top: 19px;
    }
    
    .fullscreen-nav a {
        font-size: 24px;
        padding: 12px 0;
        letter-spacing: 2px;
    }
    
    .menu-contact p {
        font-size: 12px;
    }
    
    .header-container {
        padding: 0 15px;
        gap: 15px;
    }
    
    .header-right {
        gap: 15px;
    }
}



/* ============================================
   PROJELER ARCHIVE PAGE
   ============================================ */

/* Page Header with Black Background */
.projeler-page-header {
    background: #000000;
    padding: 150px 0 60px;
    margin-bottom: 60px;
}

.projeler-page-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.projeler-page-header .page-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 40px;
    text-align: center;
}

/* Proje Filters */
.proje-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-btn.active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Filtre butonları için özel renkler */
.filter-btn[href*="devam-eden-projeler"]:hover,
.filter-btn[href*="devam-eden-projeler"].active {
    background: rgba(255, 152, 0, 0.9);
    border-color: rgba(255, 152, 0, 0.9);
    color: #ffffff;
}

.filter-btn[href*="satistaki-projeler"]:hover,
.filter-btn[href*="satistaki-projeler"].active {
    background: rgba(76, 175, 80, 0.9);
    border-color: rgba(76, 175, 80, 0.9);
    color: #ffffff;
}

.filter-btn[href*="tamamlanan-projeler"]:hover,
.filter-btn[href*="tamamlanan-projeler"].active {
    background: rgba(211, 47, 47, 0.9);
    border-color: rgba(211, 47, 47, 0.9);
    color: #ffffff;
}

/* Projeler Grid */
.projeler-archive .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0 80px;
}

.projeler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.projeler-grid.columns-1 {
    grid-template-columns: 1fr;
}

.projeler-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.projeler-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.projeler-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Proje Item Card */
.proje-item {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proje-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Proje Thumbnail */
.proje-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.proje-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.proje-item:hover .proje-thumbnail img {
    transform: scale(1.05);
}

/* Status Badges */
.proje-status-badges {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proje-status-badge {
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 2px;
}

.proje-status-badge.status-ongoing {
    background: rgba(255, 193, 7, 0.31);
    border: 1px solid rgba(255, 193, 7, 0.51);
}

.proje-status-badge.status-sale {
    background: rgba(76, 175, 80, 0.31);
    border: 1px solid rgba(76, 175, 80, 0.51);
}

.proje-status-badge.status-completed {
    background: rgba(211, 47, 47, 0.31);
    border: 1px solid rgba(211, 47, 47, 0.51);
}

/* Proje Content */
.proje-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.proje-content .entry-header {
    margin-bottom: 20px;
}

/* Proje Logo */
.proje-logo {
    margin-bottom: 15px;
}

.proje-logo img {
    max-width: 180px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Entry Title */
.proje-item .entry-title {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    line-height: 1.3;
}

.proje-item .entry-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.proje-item .entry-title a:hover {
    color: #666666;
}

/* Proje Slogan */
.proje-slogan {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Read More Button */
.entry-footer {
    margin-top: auto;
}

.read-more {
    display: inline-block;
    padding: 12px 30px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #333333;
    transform: translateX(5px);
}

/* No Projects Message */
.no-projects {
    text-align: center;
    font-size: 18px;
    color: #666666;
    padding: 60px 20px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination .page-numbers {
    padding: 10px 18px;
    background: #f5f5f5;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.pagination .page-numbers:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.pagination .page-numbers.current {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
}

.pagination .page-numbers.dots:hover {
    background: transparent;
    color: #333333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projeler-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 0;
    }
    
    .projeler-grid.columns-3,
    .projeler-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projeler-page-header {
        padding: 120px 0 40px;
        margin-bottom: 20px;
    }
    
    .projeler-page-header .container {
        padding: 0 20px;
    }
    
    .projeler-page-header .page-title {
        font-size: 32px;
        margin-bottom: 0px;
    }
    
    .proje-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .projeler-archive .container {
        padding: 0;
    }
    
    .projeler-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .projeler-grid.columns-2,
    .projeler-grid.columns-3,
    .projeler-grid.columns-4 {
        grid-template-columns: 1fr !important;
    }
    
    .proje-item {
        height: auto;
        min-height: 450px;
    }
    
    .proje-thumbnail {
        height: 250px;
    }
    
    .proje-content {
        padding: 20px;
    }
    
    .proje-item .entry-title {
        font-size: 20px;
    }
    
    .proje-logo img {
        max-width: 150px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .projeler-page-header {
        padding: 100px 0 30px;
        margin-bottom: 0px;
    }
    
    .projeler-page-header .page-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .proje-item {
        min-height: 400px;
    }
    
    .proje-thumbnail {
        height: 200px;
    }
    
    .proje-status-badges {
        top: 15px;
        right: 15px;
    }
    
    .proje-status-badge {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .proje-content {
        padding: 15px;
    }
    
    .proje-item .entry-title {
        font-size: 18px;
    }
    
    .proje-slogan {
        font-size: 13px;
    }
    
    .read-more {
        padding: 10px 24px;
        font-size: 11px;
    }
}


/* ============================================
   BLOG ARCHIVE PAGE
   ============================================ */

/* Page Header with Black Background */
.blog-page-header {
    background: #000000;
    padding: 150px 0 60px;
    margin-bottom: 60px;
}

.blog-page-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-page-header .page-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 40px;
    text-align: center;
}

/* Blog Archive Container */
.blog-archive .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0 80px;
}

/* Blog Grid - Elementor widgets CSS'den geliyor ama burada da tanımlayalım */
.blog-archive .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.blog-archive .blog-grid.columns-1 {
    grid-template-columns: 1fr;
}

.blog-archive .blog-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.blog-archive .blog-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.blog-archive .blog-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    font-size: 18px;
    color: #666666;
    padding: 60px 20px;
}

/* Blog Pagination */
.blog-archive .pagination,
.blog-archive .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.blog-archive .page-numbers,
.blog-archive .nav-links a,
.blog-archive .nav-links span {
    padding: 12px 20px;
    background: #f5f5f5;
    color: #333333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    min-width: 45px;
    text-align: center;
}

.blog-archive .page-numbers:hover,
.blog-archive .nav-links a:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.blog-archive .page-numbers.current,
.blog-archive .nav-links .current {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.blog-archive .page-numbers.dots {
    background: transparent;
    border: none;
    cursor: default;
}

.blog-archive .page-numbers.dots:hover {
    background: transparent;
    color: #333333;
}

.blog-archive .page-numbers.prev,
.blog-archive .page-numbers.next {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-archive .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blog-archive .blog-grid.columns-3,
    .blog-archive .blog-grid.columns-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page-header {
        padding: 120px 0 40px;
        margin-bottom: 40px;
    }
    
    .blog-page-header .container {
        padding: 0 20px;
    }
    
    .blog-page-header .page-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .blog-archive .container {
        padding: 0 0 60px;
    }
    
    .blog-archive .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .blog-archive .blog-grid.columns-2,
    .blog-archive .blog-grid.columns-3,
    .blog-archive .blog-grid.columns-4 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .blog-page-header {
        padding: 100px 0 30px;
        margin-bottom: 30px;
    }
    
    .blog-page-header .page-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
}


/* ============================================
   ELEMENTOR THEME BUILDER SUPPORT
   ============================================ */

/* Elementor Footer aktif olduğunda tema header'ını koru */
body.elementor-footer-active .site-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Elementor Header aktif olduğunda tema header'ını gizle */
body.elementor-header-active .site-header {
    display: none !important;
}

/* Elementor Header/Footer için z-index ayarları */
.elementor-location-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.elementor-location-footer {
    position: relative;
    z-index: 10;
}

/* Elementor Canvas template için düzeltmeler */
.elementor-template-canvas .site-header {
    display: block !important;
}

.elementor-template-canvas .site-content {
    padding-top: 0;
}

/* Elementor ile oluşturulan header için sticky desteği */
.elementor-location-header.elementor-sticky--active {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}


/* ============================================
   STICKY CONTACT BUTTON & MODAL
   ============================================ */

/* Sticky Contact Button - Sağda Dikey */
.sticky-contact-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.contact-trigger {
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 20px 15px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

.contact-trigger:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    padding-right: 20px;
}

.contact-trigger-icon {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
}

.contact-trigger:hover .contact-trigger-icon {
    transform: rotate(-90deg) scale(1.1);
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal.active {
    display: flex;
    opacity: 1;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.contact-modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: #ffffff;
    margin-left: auto;
    padding: 60px 40px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.contact-modal.active .contact-modal-content {
    transform: translateX(0);
}

/* Modal Close Button */
.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0;
    padding: 0 !important;
}

.contact-modal-close:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: rotate(90deg);
}

/* Modal Header */
.contact-modal-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-modal-header h3 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 15px;
    color: #000000;
}

.contact-modal-header p {
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Contact Info */
.contact-modal-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #000000;
    border-color: #000000;
}

.contact-info-item:hover i {
    color: #ffffff;
}

.contact-info-item:hover .contact-info-label,
.contact-info-item:hover .contact-info-value {
    color: #ffffff;
}

.contact-info-item i {
    font-size: 20px;
    color: #000000;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999999;
    transition: color 0.3s ease;
}

.contact-info-value {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    opacity: 0.7;
}

/* Contact Form */
.contact-modal-form {
    margin-top: 0;
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid #000000;
    background: #ffffff;
}

/* CF7 Placeholder */
.cf7-placeholder {
    padding: 40px;
    background: #f5f5f5;
    border: 2px dashed rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cf7-placeholder p {
    margin: 0 0 10px;
    color: #666666;
    font-size: 14px;
}

.cf7-placeholder code {
    display: inline-block;
    padding: 10px 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: #000000;
}

/* Body scroll lock when modal is open */
body.contact-modal-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-modal-content {
        max-width: 100%;
        padding: 50px 30px 30px;
    }
    
    .contact-modal-header h3 {
        font-size: 24px;
    }
    
    .contact-info-value {
        font-size: 16px;
    }
    
    .sticky-contact-button {
        right: 0;
    }
    
    .contact-trigger {
        padding: 15px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        padding: 40px 20px 20px;
    }
    
    .contact-modal-header h3 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .contact-modal-header p {
        font-size: 13px;
    }
    
    .contact-info-item {
        padding: 15px;
    }
    
    .contact-info-value {
        font-size: 14px;
    }
}


/* ============================================
   CONTACT FORM 7 STYLING - Minimalist Black & White
   ============================================ */

/* Form Container */
.wpcf7 {
    margin: 0;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Fields */
.wpcf7-form-control-wrap {
    display: block;
    position: relative;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-size: 14px;
    font-weight: 300;
    color: #000000;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: #000000;
    background: #f9f9f9;
}

.wpcf7-form textarea {
    resize: vertical;
}

/* Placeholder Styling */
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
    color: #999999;
    opacity: 1;
}

/* Labels */
.wpcf7-form label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000000;
}

/* Submit Button */
.wpcf7-form input[type="submit"],
.wpcf7-form button[type="submit"] {
    width: 100%;
    padding: 16px 40px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form button[type="submit"]:hover {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}

.wpcf7-form input[type="submit"]:active,
.wpcf7-form button[type="submit"]:active {
    transform: scale(0.98);
}

/* Checkbox & Radio */
.wpcf7-form input[type="checkbox"],
.wpcf7-form input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0;
    cursor: pointer;
}

.wpcf7-form .wpcf7-list-item {
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}

.wpcf7-form .wpcf7-list-item-label {
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

/* Acceptance (KVKK vb.) */
.wpcf7-form .wpcf7-acceptance {
    margin: 10px 0;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

/* Validation Errors */
.wpcf7-form .wpcf7-not-valid-tip {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #d32f2f;
    letter-spacing: 0.5px;
}

.wpcf7-form input.wpcf7-not-valid,
.wpcf7-form textarea.wpcf7-not-valid,
.wpcf7-form select.wpcf7-not-valid {
    border-color: #d32f2f;
    background: rgba(211, 47, 47, 0.05);
}

/* Response Messages */
.wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px 20px;
    border: 1px solid;
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.wpcf7-mail-sent-ok {
    background: rgba(76, 175, 80, 0.1);
    border-color: #4caf50;
    color: #2e7d32;
}

.wpcf7-mail-sent-ng,
.wpcf7-validation-errors,
.wpcf7-spam-blocked {
    background: rgba(211, 47, 47, 0.1);
    border-color: #d32f2f;
    color: #c62828;
}

/* Loading Spinner */
.wpcf7-form .ajax-loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000000;
    border-radius: 50%;
    animation: wpcf7-spin 0.6s linear infinite;
}

@keyframes wpcf7-spin {
    to {
        transform: rotate(360deg);
    }
}

/* File Upload */
.wpcf7-form input[type="file"] {
    padding: 10px;
    font-size: 13px;
}

.wpcf7-form input[type="file"]::file-selector-button {
    padding: 8px 16px;
    background: #000000;
    border: 1px solid #000000;
    border-radius: 0;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.wpcf7-form input[type="file"]::file-selector-button:hover {
    background: #ffffff;
    color: #000000;
}

/* Select Dropdown */
.wpcf7-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    cursor: pointer;
}

/* Quiz (Eğer kullanılıyorsa) */
.wpcf7-form .wpcf7-quiz-label {
    font-size: 14px;
    color: #333333;
    margin-bottom: 10px;
}

/* reCAPTCHA */
.wpcf7-form .wpcf7-recaptcha {
    margin: 20px 0;
}

/* Form Row (Yan yana alanlar için) */
.wpcf7-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .wpcf7-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Required Field Indicator */
.wpcf7-form .wpcf7-form-control.wpcf7-validates-as-required {
    /* Gerekli alan göstergesi için */
}

.wpcf7-form label .required {
    color: #d32f2f;
    margin-left: 3px;
}

/* Modal içindeki form için özel ayarlar */
.contact-modal-form .wpcf7-form {
    background: transparent;
}

.contact-modal-form .wpcf7-form input[type="text"],
.contact-modal-form .wpcf7-form input[type="email"],
.contact-modal-form .wpcf7-form input[type="tel"],
.contact-modal-form .wpcf7-form textarea {
    background: #f9f9f9;
}

.contact-modal-form .wpcf7-form input[type="text"]:focus,
.contact-modal-form .wpcf7-form input[type="email"]:focus,
.contact-modal-form .wpcf7-form input[type="tel"]:focus,
.contact-modal-form .wpcf7-form textarea:focus {
    background: #ffffff;
}
