/*

TemplateMo 552 Video Catalog

https://templatemo.com/tm-552-video-catalog

*/

/* ========================================
   DARK MODE COLOR PALETTE
   ======================================== */

:root {
    /* Background Colors */
    --bg-primary: #0a0e27;           /* Ana zemin (koyu mavi-siyah) */
    --bg-secondary: #1a1f3a;         /* Kartlar */
    --bg-tertiary: #252b4a;          /* Hover states */
    --bg-card: rgba(26, 31, 58, 0.6);  /* Transparan kartlar */
    
    /* Text Colors */
    --text-primary: #ffffff;          /* Ana başlıklar */
    --text-secondary: #e0e0e0;        /* Paragraflar */
    --text-muted: #a0a0b8;           /* Açıklamalar */
    
    /* Accent Colors */
    --accent-primary: #09c5f7;        /* Turkuaz */
    --accent-hover: #0796bd;          /* Hover */
    --accent-glow: rgba(9, 197, 247, 0.5);  /* Glow effect */
    
    /* Gradient Colors (Hero için - optimize) */
    --gradient-1-start: #667eea;
    --gradient-1-end: #764ba2;
    --gradient-2-start: #f093fb;
    --gradient-2-end: #f5576c;
    --gradient-3-start: #4facfe;
    --gradient-3-end: #00f2fe;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    line-height: 2em;
    overflow-x: hidden;
    background: var(--bg-primary) !important;
    color: var(--text-secondary) !important;
}

a {
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

a:hover {
    color: var(--accent-primary);
    text-decoration: none;
}

h2, p { color: var(--text-secondary) !important; }

/* Selection Color */
::selection {
    background: var(--accent-primary);
    color: white;
}

.tm-site-header {
    position: absolute;
    z-index: 1000;
    width: 100%;
    top: 0;
    left: 0;
    padding: 40px;
}

.tm-logo-container {
    display: block;
    padding: 30px;
    width: 320px;
    height: 160px;
}

.tm-site-logo { font-size: 3rem; }
.tm-site-name { font-size: 1.9rem; }

#tm-video-container {
    max-height: 720px;
    overflow: hidden;
    background-color: #333;
}

#tm-video {
    width: 100%;
    height: auto;
}

.tm-bg-black {
    background-color: rgba(0,0,0,0.5);
    color: white;
}

.tm-bg-gray { 
    background: var(--bg-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tm-bg-gray:hover {
    background: var(--bg-tertiary) !important;
    border-color: rgba(9, 197, 247, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tm-text-primary { color: var(--accent-primary) !important; }
.tm-text-secondary { color: var(--accent-primary) !important; }

.tm-nav-link {
    color: white;
    font-size: 1.4rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Alt çizgi animasyonu */
.tm-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.tm-nav-link:hover::after,
.tm-nav-link.active::after {
    width: 100%;
}

.tm-nav-link:hover {
    color: var(--accent-primary) !important;
    transform: translateY(-2px);
}

#tm-main-nav .nav-item .nav-link { border-bottom: 1px solid transparent; }

#tm-main-nav .nav-item.active .nav-link,
#tm-main-nav .nav-item:hover .nav-link {
    border-bottom: 1px solid white;
    color: white;
}

.tm-welcome-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    z-index: 999;
}

.tm-welcome-container-inner { margin-top: 100px; }
.tm-welcome-text { font-size: 1.6rem; }

.btn {
    padding: 15px 60px;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
}

.btn-primary { 
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary:hover { 
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow),
                0 0 30px var(--accent-glow);
    animation: pulse-btn 1.5s ease infinite;
    color: #ffffff !important;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 10px 30px var(--accent-glow),
                    0 0 30px var(--accent-glow);
    }
    50% {
        box-shadow: 0 15px 40px var(--accent-glow),
                    0 0 40px var(--accent-glow);
    }
}

/* Ripple effect on click */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:active::after {
    width: 300px;
    height: 300px;
}

/*
    Button hover effect: https://tympanus.net/Development/CreativeButtons/
*/

.tm-btn-animate {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.3s ease;
}

.tm-btn-animate:before {
    left: 0;
    top: -100%;
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 2.5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.tm-btn-animate:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.tm-btn-animate:hover:before { top: 13px; }

.tm-btn-animate span {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.3s;
    -moz-backface-visibility: hidden;
    transition: all 0.3s;
    backface-visibility: hidden;
}

.tm-btn-animate:hover span {
    -webkit-transform: translateY(300%);
    -moz-transform: translateY(300%);
    -ms-transform: translateY(300%);
    transform: translateY(300%);
}

.tm-btn-cta {
    color: white;
    background-color: rgba(0,0,0,0.5);
}

.tm-btn-cta:before { font-size: 180%; }
.tm-btn-download:before { font-size: 120%; }
.tm-btn-submit:before { font-size: 120%; }
.tm-icon-down:before { content: '\f078'; }
.tm-icon-download:before { content: '\f019'; }
.tm-icon-submit:before { content: '\f1d8'; }
.tm-icon-submit:hover:before { top: 18px; }
.tm-btn-cta:hover { 
    color: white;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.tm-btn-download:hover,
.tm-btn-download:focus,
.tm-btn-submit:hover,
.tm-btn-submit:focus {
    color: white;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%) !important;
    box-shadow: 0 10px 30px var(--accent-glow);
}

.tm-btn-download span { padding-top: 10px; }
.tm-btn-small { 
    padding: 10.5px 35px;
    font-size: 1.2rem; 
}

#tm-video-control-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.tm-content-container {
    max-width: 1422px;
    padding-top: 80px;
    padding-bottom: 35px;
    background: var(--bg-primary);
}

.tm-page-title { 
    font-size: 2.5rem;
    color: var(--text-primary) !important;
}
.tm-catalog-item-list { justify-content: space-between; }

.tm-catalog-item {
    max-width: 462px;
    display: flex;
    flex-direction: column;
    margin-bottom: 64px;
}

.tm-thumbnail-container { overflow: hidden; }
.tm-thumbnail-container img { transition: all 0.3s ease; }
.tm-thumbnail-container:hover img { transform: scale(1.2) rotate(5deg); }

.tm-img-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.4);
    cursor: pointer;
    transition: all 0.3s ease: ;
}

.tm-overlay-icon {
    color: #a7a7a7;
    opacity: 1;
    font-size: 2rem;
    padding: 10px 15px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 8px;
    z-index: 1002;
    transition: all 0.3s ease;  
}

.tm-img-overlay:hover { background-color: transparent; }
.tm-img-overlay:hover .tm-overlay-icon { opacity: 0; }
.tm-catalog-item-description { flex: 1; }

.tm-categories-container {
    display: flex;
    align-items: center;
}

.tm-categories-text { margin-right: 16px; }
.tm-category-list { font-size: 1.75rem; }
.tm-category-item { margin: 16px; }

.tm-category-link {
    color: var(--accent-primary) !important;
    padding: 10px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tm-category-link.active,
.tm-category-link:hover {
    border-bottom: 3px solid var(--accent-primary);
    color: var(--accent-primary) !important;
}

.tm-paging-link {
    background-color: var(--bg-secondary);
    margin-right: 12px;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.nav-item.active > .tm-paging-link,
.nav-item:hover > .tm-paging-link {
    background-color: var(--bg-tertiary);
    color: var(--accent-primary) !important;
    transform: translateY(-3px);
}

.tm-subscribe-form { 
    display: flex; 
    align-items: center;
}

.tm-subscribe-form > input {
    padding: 5px 15px;
    margin-right: 20px;
    flex: 1;
    max-width: 382px;
}

.tm-footer-links > li { margin-bottom: 10px; }

/*Video detail page*/

.tm-video-title { font-size: 2.5rem; }
.tm-share-box { 
    font-size: 1.4rem; 
    padding: 3rem;
}
.tm-share-box-title { font-size: 1.4rem; }

.tm-bg-white {
    background-color: var(--bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.tm-share-button {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    transition: all 0.3s ease;
}

.tm-share-button:last-child { margin-right: 0; }
.tm-text-link { color: var(--accent-primary) !important; }

.tm-likes-box,
.tm-btn-download {
    width: 280px;
    height: 60px;
}

.tm-likes-box { padding-top: 12px; }
.tm-video-description-box { max-width: 920px; }
.tm-text-gray { color: var(--text-muted) !important; }

.tm-fixed-header {
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;    
    background-color: #666;
}

#tm-fixed-header-bg { height: 450px; }
.tm-fixed-header-1 { background-image: url(../img/video-detail-1.jpg); }
.tm-fixed-header-2 { background-image: url(../img/about-1.jpg); }
.tm-fixed-header-3 { background-image: url(../img/contact-1.jpg); }

video {
  width: 100%;
  height: auto;
}

.fa-facebook { color: #3b5998; }
.fa-twitter { color: #00acee; }
.fa-pinterest { color: #c8232c; }
.tm-liked-icon { display: none; }
.tm-not-liked-icon { display: inline-block; }
.tm-liked-icon, .tm-not-liked-icon { margin-top: 3px; }
.tm-liked .tm-liked-icon { display: inline-block; }
.tm-liked .tm-not-liked-icon { display: none; }
.tm-welcome-text-2 { max-width: 575px; }
.tm-share-button:hover { 
    background-color: var(--bg-tertiary);
    transform: translateY(-3px) scale(1.1);
}

/*About*/
.tm-about-text-container { 
    max-width: 920px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.tm-about-list li {
    color: var(--text-secondary) !important;
}

.tm-about-list strong {
    color: var(--text-primary) !important;
}

.parallax-window {
    min-height: 270px;
    background: transparent;
}

.parallax-window-2 {
    min-height: 360px;
}

.tm-about-icon {
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

/* Contact */
.mapouter{
    position:relative;
    text-align:right;
    height:540px;
    width:100%;
}

.gmap_canvas {
    overflow:hidden;
    background:none!important;
    height:540px;
    width:100%;
}

.form-control {
    font-size: 1.2rem;
    padding: 21px 25px;
    background: var(--bg-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-primary) !important;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: var(--bg-tertiary) !important;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 20px var(--accent-glow);
    color: var(--text-primary) !important;
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

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

#contact-select {
    height: 60px;
    border-radius: 0;
}

#contact-select:not([multiple]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-image: url(../img/select-arrow.png);
  padding: 14px 20px;
  padding-right: 20px;
  color: #666;
}
.tm-testimonial-text {
    max-width: 420px;
    font-style: italic;
}

@media (min-width: 992px) {
    #tm-main-nav .nav-item { margin: 20px 40px; }
    .navbar-expand-lg .navbar-nav .nav-link { padding: 8px 0px; }
    .navbar-expand-lg .navbar-collapse { justify-content: flex-end; }
}

@media (max-width: 1419px) {
    .tm-catalog-item { margin-bottom: 30px; }
}

@media (max-width: 991px) {
    .navbar {
        max-width: 220px;
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
    }
    
    .navbar-collapse {
        background-color: rgba(0,0,0,0.5);
        border-radius: 5px;
        border-top-right-radius: 0;
        padding: 10px 15px;
    }

    .nav-item { margin-bottom: 10px; }

    .navbar-toggler {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        width: 52px;
        height: 40px;
    }

    .navbar-toggler.collapsed {
        border-bottom-left-radius: .25rem;
        border-bottom-right-radius: .25rem;   
    }

    .navbar-toggler i.tm-menu-opened-icon { display: block; }
    .navbar-toggler i.tm-menu-closed-icon { display: none; }
    .navbar-toggler.collapsed i.tm-menu-opened-icon { display: none; }
    .navbar-toggler.collapsed i.tm-menu-closed-icon { display: block; }
    .tm-welcome-container-inner { margin-top: 150px; }
    .tm-welcome-text { font-size: 1.4rem; }

    #tm-video {
        width: 888px;
        height: 500px;
    }

    .tm-logo-container {
        height: 160px;
        width: 250px;
    }

    .tm-site-header { padding: 20px; }
    .tm-catalog-item-list { max-width: 924px; }
    .tm-share-box { max-width: 400px; }
    
    /* Responsive: Social Project Visual */
    .social-project-visual {
        min-height: 400px;
        margin-bottom: 30px;
    }
}

@media (max-width: 879px) {
    .tm-categories-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .tm-subscribe-form { 
        flex-direction: column; 
        align-items: stretch;
    }

    .tm-subscribe-form > input {
       max-width: 100%;
    }

    .tm-subscribe-form input {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .tm-share-box {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 419px) {
    .tm-testimonial {
        flex-direction: column;
    }
}

/* ========================================
   MODERN PORTFOLIO ADDITIONS
   ======================================== */

/* Hero Section - Modern Gradient */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
    margin-bottom: 60px;
}

/* Smooth geçiş hero'dan content'e */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 
                 0 4px 40px rgba(0, 0, 0, 0.4),
                 0 0 60px rgba(9, 197, 247, 0.3);
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.typing-text {
    display: inline-block;
    border-right: 2px solid var(--accent-primary);
    padding-right: 5px;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--accent-primary); }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    opacity: 0;
    animation: countUp 1s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.5s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.9s;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary) !important;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px var(--accent-glow),
                 0 0 40px var(--accent-glow);
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%) !important;
    color: #fff !important;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--accent-glow),
                0 0 30px var(--accent-glow);
    color: #fff !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
    font-weight: 700;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.7) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--gradient-1-start) 0%, var(--gradient-1-end) 100%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--gradient-2-start) 0%, var(--gradient-2-end) 100%);
    bottom: -200px;
    right: -200px;
    animation-delay: -7s;
}

.orb-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--gradient-3-start) 0%, var(--gradient-3-end) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(60px, -60px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(40px, 50px) scale(1.05);
    }
}

/* Featured Projects Section */
.featured-projects-section {
    padding: 80px 0;
    margin-bottom: 60px;
    background: var(--bg-primary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--accent-primary) !important;
    text-shadow: 0 0 30px var(--accent-glow);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted) !important;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.featured-project-card {
    background: var(--bg-card) !important;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.featured-project-card:nth-child(1) {
    animation-delay: 0.3s;
}

.featured-project-card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Glow effect overlay */
.featured-project-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(9, 197, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.featured-project-card:hover::before {
    opacity: 1;
}

.featured-project-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(9, 197, 247, 0.3),
                0 0 50px rgba(9, 197, 247, 0.2) !important;
    border-color: rgba(9, 197, 247, 0.5) !important;
}

.project-video {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 for Shorts */
    height: 0;
    overflow: hidden;
    background: #000;
}

.project-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.project-info {
    padding: 25px;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

.project-info h3 {
    color: var(--accent-primary) !important;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.project-info p {
    color: var(--text-secondary) !important;
    margin-bottom: 1rem;
}

.project-badges {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%) !important;
    color: #ffffff !important;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-right: 8px;
    margin-bottom: 8px;
    border: none !important;
    box-shadow: 0 3px 15px var(--accent-glow);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.project-badges .badge:nth-child(1) {
    animation-delay: 0.6s;
}

.project-badges .badge:nth-child(2) {
    animation-delay: 0.7s;
}

.project-badges .badge:nth-child(3) {
    animation-delay: 0.8s;
}

.btn-more {
    color: var(--accent-primary) !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-more:hover {
    color: var(--accent-hover) !important;
    text-decoration: none;
    transform: translateX(5px);
    display: inline-block;
}

/* Projects Page */
.project-detail-card {
    background: var(--bg-card) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Glow effect overlay */
.project-detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(9, 197, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.project-detail-card:hover::before {
    opacity: 1;
}

.project-detail-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(9, 197, 247, 0.3),
                0 0 50px rgba(9, 197, 247, 0.2) !important;
    border-color: rgba(9, 197, 247, 0.5) !important;
}

.project-video-container {
    position: relative;
    padding-bottom: 177.78%;
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.project-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.project-tag {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 15px rgba(102, 126, 234, 0.4);
}

.project-features ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.project-features li {
    padding: 12px 0;
    color: var(--text-secondary) !important;
    font-size: 1rem;
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    opacity: 1 !important;
}

.project-features li:hover {
    color: var(--text-primary) !important;
    padding-left: 10px;
    border-left: 3px solid var(--accent-primary);
}

.project-features li i {
    color: var(--accent-primary) !important;
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Ensure first item is visible */
.project-features li:first-child {
    color: var(--text-secondary) !important;
    opacity: 1 !important;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%) !important;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: none !important;
    font-weight: 500;
    box-shadow: 0 3px 15px var(--accent-glow);
    transition: all 0.3s ease;
}

.tech-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.project-links .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 25px;
    padding: 12px 25px;
    font-weight: 600;
}

/* ===== X TWEET EMBED STİLLERİ ===== */

.social-project-visual {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    transition: all 0.3s ease;
}

.social-project-visual:hover {
    border-color: rgba(9, 197, 247, 0.3);
    box-shadow: 0 10px 30px rgba(9, 197, 247, 0.2);
}

/* Twitter embed iframe dark mode override */
.social-project-visual iframe {
    max-width: 100% !important;
    border-radius: 10px !important;
}

/* Loading state */
.social-project-visual blockquote {
    margin: 0;
    max-width: 100%;
}

/* Contact Page */
.contact-card {
    transition: all 0.3s ease;
    background: var(--bg-card) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary) !important;
    box-shadow: 0 10px 30px rgba(9, 197, 247, 0.3);
}

.contact-card i {
    color: var(--accent-primary) !important;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ===== CONTACT PAGE COMPACT DESIGN ===== */

/* Contact cards more prominent */
.contact-card {
    margin-bottom: 30px;
}

.social-card-link {
    text-decoration: none;
    display: block;
}

.social-card {
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    background: rgba(9, 197, 247, 0.1) !important;
}

/* Footer Social */
.tm-social-footer a {
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.tm-social-footer a:hover {
    color: var(--accent-primary) !important;
    transform: translateY(-5px) rotate(5deg) scale(1.2);
}

.tm-social-footer a:hover i {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* About Page */
.tm-about-list li {
    color: var(--text-secondary) !important;
}

.tm-about-list strong {
    color: var(--text-primary) !important;
}

/* ===== VİDEO PORTFOLIO SECTION (PROJECTS PAGE) ===== */

.video-portfolio-section {
    padding: 80px 0 100px 0;
    background: var(--bg-primary);
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-portfolio-section .section-title {
    color: var(--accent-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 30px var(--accent-glow);
}

.video-portfolio-section .section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Video category cards with thumbnail area */
.tm-video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-category-thumbnail {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}

.video-category-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(9, 197, 247, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-category-thumbnail i {
    font-size: 4rem;
    color: var(--accent-primary);
    z-index: 1;
    transition: all 0.3s ease;
}

/* Different gradient styles for each category */
.video-category-thumbnail[data-category="3d"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-category-thumbnail[data-category="infographic"] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.video-category-thumbnail[data-category="tv"] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.video-category-thumbnail[data-category="editing"] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.video-category-thumbnail[data-category="other"] {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Video item hover effects */
.tm-video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(9, 197, 247, 0.2);
}

.tm-video-item:hover .video-category-thumbnail::before {
    opacity: 1;
}

.tm-video-item:hover .video-category-thumbnail i {
    transform: scale(1.2) rotate(5deg);
}

/* Video link play button */
.tm-video-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(9, 197, 247, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: none;
}

.tm-video-link-icon {
    color: white;
    font-size: 1.5rem;
    margin-left: 3px;
}

.tm-video-item:hover .tm-video-link {
    opacity: 1;
    pointer-events: all;
}

.tm-video-link:hover {
    background: var(--accent-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Ensure dark mode compatibility */
.video-portfolio-section .tm-bg-gray {
    background: var(--bg-secondary) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-portfolio-section .tm-bg-gray:hover {
    background: var(--bg-tertiary) !important;
    border-color: rgba(9, 197, 247, 0.3);
}

.video-portfolio-section .tm-catalog-item-title {
    color: var(--accent-primary) !important;
}

.video-portfolio-section .tm-catalog-item-text {
    color: var(--text-secondary) !important;
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-portfolio-section .tm-catalog-item {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.video-portfolio-section .tm-catalog-item:nth-child(1) {
    animation-delay: 0.1s;
}

.video-portfolio-section .tm-catalog-item:nth-child(2) {
    animation-delay: 0.2s;
}

.video-portfolio-section .tm-catalog-item:nth-child(3) {
    animation-delay: 0.3s;
}

.video-portfolio-section .tm-catalog-item:nth-child(4) {
    animation-delay: 0.4s;
}

.video-portfolio-section .tm-catalog-item:nth-child(5) {
    animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 20px;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .project-detail-card {
        padding: 20px;
    }
    
    .gradient-orb {
        filter: blur(60px);
    }
    
    .orb-1,
    .orb-2,
    .orb-3 {
        width: 300px;
        height: 300px;
    }
    
    .featured-project-card {
        margin-bottom: 30px;
    }
    
    /* Video portfolio section responsive */
    .video-portfolio-section {
        padding: 60px 0 80px 0;
        margin-top: 40px;
    }
    
    .video-portfolio-section .section-title {
        font-size: 2rem;
    }
    
    .video-category-thumbnail {
        height: 200px;
    }
    
    .video-category-thumbnail i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Responsive: Social Project Visual for mobile */
    .social-project-visual {
        min-height: 350px;
        padding: 15px;
    }
}

/* Footer Styling */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

footer p {
    color: var(--text-muted) !important;
}

footer .tm-text-link {
    color: var(--accent-primary) !important;
}

footer .tm-text-link:hover {
    color: var(--accent-hover) !important;
}

/* ============================================
   FOOTER ENHANCEMENT: SUBSCRIBE + CONTACT CARDS
   ============================================ */

/* ----- Footer Main Section ----- */
.footer-main-section {
    margin: 40px 0 50px 0;
    padding: 40px 30px;
    background: rgba(26, 31, 58, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-main-section:hover {
    background: rgba(26, 31, 58, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ----- Footer Headings ----- */
.footer-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ----- Subscribe Form ----- */
.tm-subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 100%;
}

.tm-email-input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tm-email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    box-shadow: 0 0 20px rgba(9, 197, 247, 0.3);
}

.tm-email-input::placeholder {
    color: var(--text-muted);
}

.tm-subscribe-btn {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-hover) 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tm-subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(9, 197, 247, 0.4);
}

.tm-subscribe-btn:active {
    transform: translateY(-1px);
}

/* ----- Contact Quick Cards Container ----- */
.footer-contact-quick {
    width: 100%;
}

/* ----- Individual Contact Cards ----- */
.footer-quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background: rgba(26, 31, 58, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 90px;
}

.footer-quick-card:hover {
    background: rgba(26, 31, 58, 0.8);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(9, 197, 247, 0.25);
}

.footer-quick-card i {
    font-size: 1.75rem;
    color: var(--accent-primary);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-quick-card:hover i {
    transform: scale(1.1);
    color: var(--accent-hover);
}

.footer-quick-card span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    transition: color 0.3s ease;
}

.footer-quick-card:hover span {
    color: var(--text-primary);
}

/* ----- Social Media Footer (mevcut stilleri koruyoruz) ----- */
.tm-social-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 30px 0;
}

.tm-social-link {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tm-social-link:hover {
    color: var(--accent-primary);
    transform: translateY(-3px) scale(1.1);
}

/* ----- Copyright Text ----- */
.copyright-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    padding-bottom: 30px;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ----- Tablet (768px - 991px) ----- */
@media (max-width: 991px) {
    .footer-main-section {
        padding: 30px 20px;
        margin: 30px 0 40px 0;
    }
    
    .footer-title {
        font-size: 1.75rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    /* Subscribe form altına contact cards geçer */
    .tm-subscribe-form {
        margin-bottom: 0;
    }
    
    /* Contact cards 2x2 grid olur */
    .footer-contact-quick .col-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }
}

/* ----- Mobile (576px - 767px) ----- */
@media (max-width: 767px) {
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-subtitle {
        font-size: 0.95rem;
    }
    
    .footer-main-section {
        padding: 25px 15px;
    }
}

/* ----- Small Mobile (≤576px) ----- */
@media (max-width: 576px) {
    .footer-title {
        font-size: 1.35rem;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
    }
    
    .footer-main-section {
        padding: 20px 15px;
        margin: 25px 0 35px 0;
    }
    
    /* Form elemanları dikey olur */
    .tm-subscribe-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .tm-subscribe-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    /* Contact cards biraz küçülür */
    .footer-quick-card {
        padding: 18px 10px;
        min-height: 85px;
    }
    
    .footer-quick-card i {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }
    
    .footer-quick-card span {
        font-size: 0.8rem;
    }
    
    /* Social icons biraz küçülür */
    .tm-social-link {
        font-size: 1.3rem;
    }
    
    .tm-social-footer {
        gap: 15px;
        margin: 30px 0 25px 0;
    }
    
    .copyright-text {
        font-size: 0.85rem;
        padding-bottom: 25px;
    }
}

/* ----- Extra Small Mobile (≤400px) ----- */
@media (max-width: 400px) {
    .footer-quick-card {
        padding: 16px 8px;
        min-height: 80px;
    }
    
    .footer-quick-card i {
        font-size: 1.4rem;
    }
    
    .footer-quick-card span {
        font-size: 0.75rem;
    }
}

/* ============================================
   YENİ BÜYÜK DİJİTAL ZİYARETÇİ SAYACI
   ============================================ */

/* ----- Ana Kart ----- */
.hero-visitor-badge {
    position: absolute;
    top: 300px; /* Below the logo box to avoid overlap */
    left: 40px;
    width: 250px;
    height: 220px;
    padding: 30px 20px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    /* Zemin - Oval/Rounded Kare */
    background: rgba(10, 14, 39, 0.4); /* Opacity düşük */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(9, 197, 247, 0.3); /* Turkuaz glow */
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

/* Hover effect */
.hero-visitor-badge:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(9, 197, 247, 0.4),
                0 0 80px rgba(9, 197, 247, 0.2);
    border-color: rgba(9, 197, 247, 0.6);
}

/* ----- Göz İkonu ----- */
.visitor-badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #09c5f7 0%, #0796bd 100%);
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    animation: pulse-glow 2s infinite ease-in-out;
}

.visitor-badge-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Pulse animation */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(9, 197, 247, 0.6);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 40px rgba(9, 197, 247, 1),
                    0 0 60px rgba(9, 197, 247, 0.5);
        transform: scale(1.05);
    }
}

/* ----- Dijital Sayı ----- */
.visitor-badge-number {
    font-family: 'Orbitron', 'Courier New', monospace;
    font-size: 3rem; /* BÜYÜK! */
    font-weight: 700;
    letter-spacing: 4px; /* Rakamlar aralıklı */
    
    /* Gradient text */
    color: #09c5f7; /* Fallback */
    background: linear-gradient(180deg, #09c5f7 0%, #0796bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Neon glow */
    text-shadow: 0 0 20px rgba(9, 197, 247, 0.8),
                 0 0 40px rgba(9, 197, 247, 0.4);
    
    /* Smooth transition for number changes */
    transition: all 0.3s ease;
}

/* ----- Label ----- */
.visitor-badge-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE ===== */

/* Tablet (991px ve altı) */
@media (max-width: 991px) {
    .hero-visitor-badge {
        width: 220px;
        height: 200px;
        padding: 25px 15px;
    }
    
    .visitor-badge-icon {
        width: 55px;
        height: 55px;
    }
    
    .visitor-badge-icon i {
        font-size: 1.75rem;
    }
    
    .visitor-badge-number {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
}

/* Tablet Small (768px ve altı) */
@media (max-width: 768px) {
    .hero-visitor-badge {
        width: 180px;
        height: 170px;
        padding: 20px 12px;
        top: 80px;
        left: 20px;
    }
    
    .visitor-badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .visitor-badge-icon i {
        font-size: 1.5rem;
    }
    
    .visitor-badge-number {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .visitor-badge-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* Mobile (576px ve altı) */
@media (max-width: 576px) {
    .hero-visitor-badge {
        width: 160px;
        height: 150px;
        padding: 15px 10px;
        top: 70px;
        left: 15px;
        gap: 10px;
    }
    
    .visitor-badge-icon {
        width: 45px;
        height: 45px;
    }
    
    .visitor-badge-icon i {
        font-size: 1.25rem;
    }
    
    .visitor-badge-number {
        font-size: 1.75rem;
        letter-spacing: 1px;
    }
    
    .visitor-badge-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}

/* Extra Small (400px ve altı) */
@media (max-width: 400px) {
    .hero-visitor-badge {
        width: 140px;
        height: 130px;
        padding: 12px 8px;
        top: 65px;
        left: 10px;
    }
    
    .visitor-badge-icon {
        width: 40px;
        height: 40px;
    }
    
    .visitor-badge-icon i {
        font-size: 1.1rem;
    }
    
    .visitor-badge-number {
        font-size: 1.5rem;
        letter-spacing: 0px;
    }
    
    .visitor-badge-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS
   ============================================ */

/* ===== TOUCH-FRIENDLY BUTTONS ===== */

/* Tüm butonlar */
.btn,
button,
a.btn,
.tm-subscribe-btn,
.hero-cta a {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Navbar toggle */
.navbar-toggler {
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
}

/* Social icons */
.footer-social-icons a,
.social-links a,
.tm-social-link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer quick cards */
.footer-quick-card {
    min-height: 60px;
    padding: 15px;
}

/* Navigation links */
.nav-link {
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */

/* Base font size */
body {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive headings */
@media (max-width: 991px) {
    h1, .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2, .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    h1, .hero-title {
        font-size: 2rem;
    }
    
    h2, .section-title {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    h1, .hero-title {
        font-size: 1.75rem;
    }
    
    h2, .section-title {
        font-size: 1.5rem;
    }
    
    body,
    p,
    .tm-text-gray {
        font-size: 0.95rem;
    }
}

/* Line height for readability */
p, li, .tm-text-gray {
    line-height: 1.7;
}

/* ===== HERO SECTION RESPONSIVE ===== */

@media (max-width: 991px) {
    .hero-section {
        min-height: 600px;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    /* Stats stack vertically */
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    /* Buttons stack */
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-cta a {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    /* Gradient orbs smaller */
    .gradient-orb {
        width: 300px !important;
        height: 300px !important;
        filter: blur(60px);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* ===== NAVBAR MOBILE ===== */

@media (max-width: 991px) {
    /* Navbar background */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    /* Mobile menu */
    .navbar-collapse {
        background: rgba(10, 14, 39, 0.98);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav {
        gap: 10px;
    }
    
    .nav-link {
        padding: 15px 20px;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(9, 197, 247, 0.1);
        color: #09c5f7 !important;
    }
    
    /* Navbar toggler */
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(9, 197, 247, 0.3);
    }
}

/* ===== CONTENT CARDS MOBILE ===== */

@media (max-width: 991px) {
    .featured-project-card,
    .project-detail-card,
    .tm-catalog-item {
        margin-bottom: 30px;
    }
    
    .featured-project-card .row,
    .project-detail-card .row {
        flex-direction: column;
    }
    
    .project-video,
    .social-project-visual {
        margin-bottom: 20px;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    /* Card padding */
    .featured-project-card,
    .project-detail-card,
    .contact-card,
    .footer-quick-card {
        padding: 20px;
    }
    
    /* Grid gaps */
    .row {
        gap: 20px;
    }
    
    /* Video embeds */
    .project-video iframe {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .featured-project-card,
    .project-detail-card {
        padding: 15px;
    }
    
    .project-badges {
        gap: 8px;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

/* ===== FOOTER MOBILE ===== */

@media (max-width: 991px) {
    .footer-main-section {
        flex-direction: column;
    }
    
    /* Subscribe form full width on top */
    .footer-main-section > div:first-child {
        margin-bottom: 30px;
    }
    
    .tm-subscribe-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .tm-email-input,
    .tm-subscribe-btn {
        width: 100%;
    }
    
    /* Contact cards 2x2 grid */
    .footer-contact-quick .row {
        gap: 15px;
    }
    
    .footer-quick-card {
        min-height: 80px;
    }
}

@media (max-width: 768px) {
    .tm-footer {
        padding: 40px 0 20px;
    }
    
    .footer-title {
        font-size: 1.75rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    .footer-social-icons {
        gap: 15px;
    }
    
    .footer-social-icons a,
    .tm-social-link {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .footer-quick-card {
        padding: 12px;
        min-height: 70px;
    }
    
    .footer-quick-card i {
        font-size: 1.25rem;
    }
    
    .footer-quick-card span {
        font-size: 0.85rem;
    }
    
    .tm-copyright,
    .copyright-text {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* ===== MOBILE SPACING ===== */

@media (max-width: 991px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    section,
    .tm-section {
        padding: 60px 0;
    }
    
    .mb-5,
    .my-5 {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    section,
    .tm-section {
        padding: 40px 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    section,
    .tm-section {
        padding: 30px 0;
    }
}

/* ===== FORMS MOBILE ===== */

@media (max-width: 768px) {
    /* Input fields */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px 16px;
        min-height: 44px;
    }
    
    /* Labels */
    label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    /* Form groups */
    .form-group,
    .mb-3 {
        margin-bottom: 20px;
    }
    
    /* Submit buttons */
    button[type="submit"],
    input[type="submit"] {
        width: 100%;
        min-height: 48px;
        font-size: 1.1rem;
    }
}

/* ===== MOBILE PERFORMANCE ===== */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hardware acceleration */
.featured-project-card,
.project-detail-card,
.contact-card,
.footer-quick-card,
.visitor-counter-card {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .featured-project-card:hover,
    .project-detail-card:hover,
    .contact-card:hover {
        transform: none;
    }
    
    /* Active states instead */
    .featured-project-card:active,
    .project-detail-card:active {
        transform: scale(0.98);
    }
}

/* ============================================
   2 KARTLI HIZLI BİLGİLER & PROJELER SECTION
   ============================================ */

/* ----- Genel Info Card Stilleri ----- */
.info-card {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(9, 197, 247, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(9, 197, 247, 0.3);
    border-color: rgba(9, 197, 247, 0.6);
}

.info-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #09c5f7;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.info-card-title i {
    margin-right: 10px;
    font-size: 1.75rem;
}

/* ----- Sol Kart: Hızlı Bilgiler ----- */
.quick-info-card .info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-info-card .info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-info-card .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.quick-info-card .info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-info-card .info-value {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.quick-info-card .info-link {
    color: #09c5f7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-info-card .info-link:hover {
    color: #0bb5e7;
    text-shadow: 0 0 10px rgba(9, 197, 247, 0.5);
}

/* ----- Sağ Kart: Kanallar & Projeler ----- */
.projects-channels-card {
    position: relative;
}

.projects-channels-content {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Custom Scrollbar - Turkuaz */
.projects-channels-content::-webkit-scrollbar {
    width: 8px;
}

.projects-channels-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.projects-channels-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #09c5f7 0%, #0796bd 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.projects-channels-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0bb5e7 0%, #0886ad 100%);
}

/* Kategori Başlıkları */
.projects-category {
    margin-bottom: 30px;
}

.projects-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(9, 197, 247, 0.3);
    display: flex;
    align-items: center;
}

.category-title i {
    margin-right: 8px;
    color: #09c5f7;
}

/* Kanal Grupları */
.channel-group {
    margin-bottom: 20px;
}

.channel-group:last-child {
    margin-bottom: 0;
}

.channel-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.channel-name::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #09c5f7;
    font-size: 1.2rem;
}

/* Proje Listeleri */
.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 30px;
}

.project-list li {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    padding-left: 15px;
    position: relative;
    margin-bottom: 5px;
}

.project-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(9, 197, 247, 0.6);
    font-size: 1.2rem;
}

/* ----- Responsive ----- */

/* Tablet (≤991px) */
@media (max-width: 991px) {
    .info-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .info-card-title {
        font-size: 1.35rem;
    }
    
    .projects-channels-content {
        max-height: 450px;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .info-card {
        padding: 20px;
    }
    
    .info-card-title {
        font-size: 1.25rem;
    }
    
    .quick-info-card .info-label {
        font-size: 0.85rem;
    }
    
    .quick-info-card .info-value {
        font-size: 1rem;
    }
    
    .projects-channels-content {
        max-height: 400px;
        padding-right: 10px;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .channel-name {
        font-size: 0.95rem;
    }
    
    .project-list li {
        font-size: 0.9rem;
    }
}

/* Small Mobile (≤576px) */
@media (max-width: 576px) {
    .info-card {
        padding: 18px;
    }
    
    .info-card-title {
        font-size: 1.15rem;
    }
    
    .info-card-title i {
        font-size: 1.5rem;
    }
    
    .projects-channels-content {
        max-height: 350px;
    }
    
    .channel-name {
        font-size: 0.9rem;
    }
    
    .project-list {
        margin-left: 20px;
    }
    
    .project-list li {
        font-size: 0.85rem;
    }
}
}