/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --text-white: #ffffff;
    --accent-red: #D35400;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    max-width: 100vw;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Renkli kaydırma çubuğu (scrollbar) */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #111111;
}

body::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: #e67e22;
}

/* Firefox için */
html {
    scroll-behavior: smooth;
    scrollbar-color: var(--accent-red) #111111;
    scrollbar-width: thin;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-logo a {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.logo-red {
    color: var(--accent-red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--accent-red);
}

.language-switch {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-switch:hover {
    background: rgba(211, 84, 0, 0.2);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/foto/68c95b51-c63b-409d-92f3-bcb930d433eb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* hafif koyuluk, artık turuncu ton yok */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 40px;
    max-width: 1200px;
    margin-top: -60px;
}

.hero-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 120px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 8px;
    text-transform: uppercase;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title-text {
    display: inline-block;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-scrolling-text-wrapper {
    width: 100%;
    height: 40px;
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
}

.hero-scrolling-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    animation: scroll-text 15s infinite;
}

.hero-scrolling-text span {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fade-slide-up 3s infinite;
}

.hero-scrolling-text span:nth-child(1) {
    animation-delay: 0s;
}

.hero-scrolling-text span:nth-child(2) {
    animation-delay: 3s;
}

.hero-scrolling-text span:nth-child(3) {
    animation-delay: 6s;
}

.hero-scrolling-text span:nth-child(4) {
    animation-delay: 9s;
}

.hero-scrolling-text span:nth-child(5) {
    animation-delay: 12s;
}

@keyframes fade-slide-up {
    0%, 20% {
        opacity: 0;
        transform: translateY(20px);
    }
    25%, 75% {
        opacity: 1;
        transform: translateY(0);
    }
    80%, 100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.hero-button-secondary {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
}

.hero-button-secondary::before {
    background-color: transparent;
}

.hero-button-secondary:hover {
    background: transparent;
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.hero-button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    background: transparent;
    border: 2px solid var(--text-white);
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-red);
    transition: left 0.3s ease;
    z-index: -1;
}

.hero-button:hover {
    border-color: var(--accent-red);
    color: var(--text-white);
}

.hero-button:hover::before {
    left: 0;
}

/* Hero Bottom UI */
.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    z-index: 1;
}

/* Scroll Indicator Animation */
.scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 15px;
    position: relative;
    opacity: 0.8;
}

.wheel {
    width: 4px;
    height: 10px;
    background-color: var(--text-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
    
    .nav-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-label {
        font-size: 13px;
        letter-spacing: 2px;
    }
    
    p,
    .about-description,
    .contact-details p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .statistics-number,
    .stat-counter-number {
        font-size: 40px;
    }
    
    .stat-circle-number {
        font-size: 32px;
    }
    
    .service-card-title,
    .project-card-title {
        font-size: 18px;
    }
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-logo a {
        font-size: 22px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 60px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 18px;
    }
    
    .nav-right {
        gap: 15px;
    }
    
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-title {
        font-size: 48px;
        letter-spacing: 3px;
        line-height: 1;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-bottom {
        padding: 0 20px;
    }
    
    .hero-title {
        min-height: 100px;
        font-size: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-button,
    .hero-button-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-scrolling-text span {
        font-size: 16px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-section {
        padding: 80px 0 60px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-wrapper {
        height: 300px;
    }
    
    .about-content .section-header {
        text-align: center;
    }
    
    .about-content .section-title {
        font-size: 48px;
    }
    
    .about-description {
        text-align: center;
        font-size: 16px;
    }
    
    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .highlight-card {
        padding: 25px 15px;
    }
    
    .highlight-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .highlight-card-number {
        font-size: 32px;
        min-height: 40px;
    }
    
    .highlight-card-label {
        font-size: 13px;
    }
    
    .animated-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .stat-circle-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .stat-circle-number {
        font-size: 40px;
    }
    
    .stat-circle-suffix {
        font-size: 28px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-image-wrapper {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .stats-counter-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-counter-number {
        font-size: 64px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-slider-wrapper {
        overflow: visible;
    }
    
    .project-card-slider {
        min-width: 300px;
        width: 300px;
        height: 380px;
    }
    
    .project-card-icon {
        width: 50px;
        height: 50px;
        top: 20px;
        left: 20px;
    }
    
    .project-card-icon i {
        font-size: 24px;
    }
    
    .project-card-content {
        padding: 30px 20px;
    }
    
    .project-card-title {
        font-size: 20px;
    }
    
    .project-card-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .projects-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-section {
        height: 50vh;
        min-height: 400px;
    }
    
    .service-hero-title {
        font-size: 60px;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 20px 0;
        min-height: auto;
    }
    
    .about-content-wrapper {
        gap: 25px;
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .about-text {
        align-items: center;
        text-align: center;
    }
    
    .about-image-wrapper {
        height: 250px;
        margin-bottom: 15px;
    }
    
    .about-content .section-title {
        font-size: 42px;
    }
    
    .about-badge {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 20px;
    }
    
    .feature-text h4 {
        font-size: 16px;
    }
    
    .feature-text p {
        font-size: 13px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .highlight-card {
        padding: 20px 15px;
    }
    
    .highlight-card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .highlight-card-number {
        font-size: 28px;
        min-height: 35px;
    }
    
    .highlight-card-label {
        font-size: 12px;
    }
    
    .animated-stats-section {
        padding: 80px 0;
    }
    
    .animated-stats-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 40px;
    }
    
    .stat-circle-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .stat-circle-number {
        font-size: 36px;
    }
    
    .stat-circle-suffix {
        font-size: 24px;
    }
    
    .stat-circle-label {
        font-size: 14px;
    }
    
    .statistics-counter-section {
        padding: 80px 0;
    }
    
    .statistics-counter-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 40px;
    }
    
    .statistics-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .statistics-number {
        font-size: 56px;
    }
    
    .statistics-label {
        font-size: 12px;
    }
    
    .stats-counter-section {
        padding: 80px 0;
    }
    
    .stats-counter-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
        gap: 40px;
    }
    
    .stat-counter-number {
        font-size: 56px;
    }
    
    .stat-counter-label {
        font-size: 14px;
    }
    
    .services-section {
        padding: 100px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .service-card-slider {
        min-width: 300px;
        width: 300px;
        height: 380px;
    }
    
    .service-card-icon {
        width: 50px;
        height: 50px;
        top: 20px;
        left: 20px;
    }
    
    .service-card-icon i {
        font-size: 24px;
    }
    
    .service-card-content {
        padding: 30px 20px;
    }
    
    .service-card-title {
        font-size: 20px;
    }
    
    .service-card-button {
        width: 45px;
        height: 45px;
    }
    
    .service-hero-section {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
    }
    
    .service-hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }
    
    .service-detail-section {
        padding: 60px 0;
    }
    
    .service-detail-container {
        padding: 0 20px;
    }
    
    .service-detail-heading {
        font-size: 28px;
    }
    
    .service-detail-paragraph {
        font-size: 15px;
    }
    
    .service-features-box,
    .service-contact-box {
        padding: 30px;
    }
    
    .service-features-title,
    .service-contact-title {
        font-size: 20px;
    }
    
    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 56px;
    }
    
    .projects-grid {
        gap: 30px;
    }
    
    .projects-preview-section {
        padding: 80px 0;
    }
    
    .project-card-slider {
        min-width: 280px;
        width: 280px;
        height: 360px;
    }
    
    .project-card-title {
        font-size: 18px;
    }
    
    .project-card-icon {
        width: 45px;
        height: 45px;
        top: 20px;
        left: 20px;
    }
    
    .project-card-icon i {
        font-size: 22px;
    }
    
    .project-card-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .projects-detail-section {
        padding: 80px 0;
    }
    
    .projects-detail-wrapper {
        gap: 40px;
    }
    
    .project-detail-card {
        min-height: 350px;
    }
    
    .project-detail-image {
        height: 200px;
    }
    
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-container {
        padding: 0 20px;
    }
    
    .gallery-grid {
        gap: 20px;
    }
    
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-bottom {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
        line-height: 1.1;
        min-height: 50px;
    }
    
    .hero-scrolling-text span {
        font-size: 14px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-button,
    .hero-button-secondary {
        padding: 12px 24px;
        font-size: 14px;
        max-width: 100%;
    }
    
    .hero-label {
        font-size: 12px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-button {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .about-section {
        padding: 30px 0;
        min-height: auto;
    }
    
    .about-container {
        padding: 0 16px;
    }
    
    .about-image-wrapper {
        height: 200px;
    }
    
    .about-content-wrapper {
        gap: 20px;
    }
    
    .about-content .section-title {
        font-size: 28px;
        word-break: break-word;
    }
    
    .about-visual,
    .about-content {
        max-width: 100%;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .about-highlights-section {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .about-highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
        max-width: 100%;
    }
    
    .highlight-card {
        padding: 20px 15px;
    }
    
    .highlight-card-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .highlight-card-number {
        font-size: 32px;
        min-height: 40px;
    }
    
    .highlight-card-label {
        font-size: 13px;
    }
    
    .about-badge {
        top: 15px;
        right: 15px;
        padding: 12px 16px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .badge-text {
        font-size: 12px;
    }
    
    .feature-item {
        padding: 12px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .feature-text h4 {
        font-size: 14px;
    }
    
    .feature-text p {
        font-size: 12px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .highlight-item {
        font-size: 13px;
    }
    
    .animated-stats-section {
        padding: 40px 0;
    }
    
    .animated-stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-circle-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .stat-circle-number {
        font-size: 32px;
    }
    
    .stat-circle-suffix {
        font-size: 20px;
    }
    
    .stat-circle-label {
        font-size: 13px;
    }
    
    .statistics-counter-section {
        padding: 60px 0;
    }
    
    .statistics-counter-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .statistics-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .statistics-number {
        font-size: 48px;
    }
    
    .statistics-label {
        font-size: 11px;
    }
    
    .stats-counter-section {
        padding: 60px 0;
    }
    
    .stats-counter-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-counter-number {
        font-size: 48px;
    }
    
    .services-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .projects-preview-section {
        padding: 60px 0;
    }
    
    .projects-preview-container {
        padding: 0 16px;
    }
    
    .projects-slider-track {
        gap: 16px;
    }
    
    .project-card-slider {
        min-width: min(260px, calc(100vw - 32px));
        width: min(260px, calc(100vw - 32px));
        height: 340px;
    }
    
    .service-card-slider {
        min-width: min(260px, calc(100vw - 32px));
        width: min(260px, calc(100vw - 32px));
        height: 320px;
    }
    
    .services-container {
        padding: 0 16px;
    }
    
    .services-slider-track {
        gap: 16px;
    }
    
    .project-card-title {
        font-size: 16px;
    }
    
    .project-card-icon {
        width: 40px;
        height: 40px;
        top: 15px;
        left: 15px;
    }
    
    .project-card-icon i {
        font-size: 20px;
    }
    
    .project-card-content {
        padding: 25px 15px;
    }
    
    .project-card-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-left: 15px;
    }
    
    .projects-detail-section {
        padding: 60px 0;
    }
    
    .projects-detail-container {
        padding: 0 16px;
    }
    
    .column-title {
        font-size: 22px;
    }
    
    .project-detail-card {
        min-height: 320px;
    }
    
    .project-detail-image {
        height: 180px;
    }
    
    .project-detail-title {
        font-size: 18px;
    }
    
    .project-detail-description {
        font-size: 14px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-container {
        padding: 0 16px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-title {
        font-size: 20px;
    }
    
    .contact-section {
        padding: 60px 0 50px;
    }
    
    .contact-container {
        padding: 0 16px;
        gap: 32px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }
    
    .contact-item {
        gap: 14px;
    }
    
    .contact-details h3 {
        font-size: 18px;
    }
    
    .contact-details p {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .footer-container {
        padding: 0 16px;
    }
    
    .service-hero-section {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
    }
    
    .service-hero-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .service-detail-section {
        padding: 60px 0;
    }
    
    .service-detail-container {
        padding: 0 20px;
    }
    
    .service-detail-heading {
        font-size: 24px;
    }
    
    .service-detail-paragraph {
        font-size: 14px;
    }
    
    .service-features-box,
    .service-contact-box {
        padding: 25px;
    }
    
    .service-features-list li {
        font-size: 14px;
    }
}

/* Services Section */
.services-section {
    position: relative;
    padding: 10px 0;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.services-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-container .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Hizmetler sayfası için grid yerleşimi */
.services-grid-page {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    justify-items: stretch;
}

@media (max-width: 1024px) {
    .services-grid-page {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .services-grid-page {
        grid-template-columns: 1fr;
    }
}

.services-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

/* Slider navigation arrows (common) */
.slider-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.slider-nav-button i {
    font-size: 18px;
}

.slider-nav-button.slider-nav-prev {
    left: 10px;
}

.slider-nav-button.slider-nav-next {
    right: 10px;
}

.slider-nav-button:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.05);
}

/* Ensure buttons are visible on top of slider content */
.services-slider-wrapper .slider-nav-button,
.projects-slider-wrapper .slider-nav-button {
    pointer-events: auto;
}

.services-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    will-change: transform;
}

.service-card-slider {
    position: relative;
    min-width: 300px;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card-slider:hover {
    transform: translateY(-5px);
}

.service-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-slider:hover .service-card-image {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    transition: background 0.4s ease;
}

.service-card-slider:hover .service-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.service-card-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

.service-card-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.service-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.service-card-button {
    width: 50px;
    height: 50px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-card-button i {
    color: var(--text-white);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-card-slider:hover .service-card-button {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.5);
}

.service-card-slider:hover .service-card-button i {
    transform: translateX(3px);
}

.section-header {
    margin-bottom: 50px;
}

.section-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-description {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 10px 0 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow-x: hidden;
    margin-top: 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    width: 100%;
}

.about-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    min-width: 0;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    min-width: 0;
}

.about-content-wrapper > * {
    grid-column: span 1;
    min-width: 0;
}

/* Left Side: Visual */
.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.about-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.badge-number {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.badge-text {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--accent-red);
    transform: translateX(10px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    color: var(--accent-red);
    font-size: 20px;
}

.feature-text h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

/* Right Side: Content */
.about-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
    margin-top: 0;
}

.about-content .section-label {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.about-content .section-title {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: flex-start;
}

.about-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.about-description strong {
    color: var(--accent-red);
    font-weight: 500;
}

/* Highlights Cards Section - Right Side */
.about-highlights-section {
    width: 100%;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

@media (max-width: 1024px) {
    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .highlight-card {
        padding: 25px 15px;
    }
    
    .highlight-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .highlight-card-number {
        font-size: 32px;
        min-height: 40px;
    }
    
    .highlight-card-label {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .highlight-card {
        padding: 20px 15px;
    }
    
    .highlight-card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .highlight-card-number {
        font-size: 28px;
        min-height: 35px;
    }
    
    .highlight-card-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-highlights-section {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .about-highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .highlight-card {
        padding: 20px 15px;
    }
    
    .highlight-card-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .highlight-card-number {
        font-size: 32px;
        min-height: 40px;
    }
    
    .highlight-card-label {
        font-size: 13px;
    }
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    background: rgba(227, 30, 36, 0.1);
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 12px;
    color: var(--accent-red);
    font-size: 24px;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-card-icon {
    background: var(--accent-red);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.highlight-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-card-number {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-number {
    color: var(--accent-red);
    font-weight: 700;
    display: inline-block;
}

.highlight-suffix {
    color: var(--accent-red);
    font-weight: 700;
}

.highlight-card-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Old highlight-item styles - keeping for backward compatibility */
.about-highlights {
    display: none;
}

.highlight-item {
    display: none;
}

/* Animated Statistics Graphics Section */
.animated-stats-section {
    padding: 5px 0 10px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(227, 30, 36, 0.05) 50%, rgba(10, 10, 10, 0) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.animated-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
}

.animated-stat-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
}

.animated-stat-item.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-circle-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.stat-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 12;
}

.stat-circle-progress {
    fill: none;
    stroke: var(--accent-red);
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    transition: stroke-dashoffset 2s ease;
}

.stat-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.stat-circle-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
}

.stat-circle-suffix {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-red);
    line-height: 1;
}

.stat-circle-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
}

/* Statistics Counter Section */
.statistics-counter-section {
    padding: 60px 0;
    background-color: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.statistics-counter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
}

.statistics-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.statistics-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.statistics-icon {
    font-size: 48px;
    color: var(--accent-red);
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent-red);
}

.statistics-icon i {
    color: var(--accent-red);
}

.statistics-item.animate .statistics-icon {
    opacity: 1;
    transform: scale(1);
}

.statistics-number {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.statistics-label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Stats Counter Section (Old - keeping for backward compatibility) */
.stats-counter-section {
    padding: 100px 0;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.stats-counter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    align-items: center;
}

.stat-counter-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.stat-counter-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-counter-number {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.stat-counter-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Stats Section */
.stats-section {
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(227, 30, 36, 0.05) 50%, rgba(10, 10, 10, 0) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    align-items: center;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
}

.stat-item.animate {
    opacity: 1;
    transform: scale(1);
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.stat-suffix {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Slider style gallery on home page */
.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.gallery-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    will-change: transform;
}

.gallery-card {
    position: relative;
    min-width: 300px;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.gallery-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-image {
    transform: scale(1.05);
}

/* Grid-based gallery styles for galeri.html tam ekran sayfa */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .gallery-item {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .gallery-item {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .gallery-item {
        height: 220px;
    }
}

/* Projects Preview Section */
.projects-preview-section {
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.projects-preview-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.projects-slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    will-change: transform;
}

.project-card-slider {
    position: relative;
    min-width: 300px;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.project-card-slider:hover {
    transform: translateY(-5px);
}

.project-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: none;
}

.project-card-slider:hover .project-card-image {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    transition: background 0.4s ease;
}

.project-card-slider:hover .project-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.project-card-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.4);
}

.project-card-icon i {
    font-size: 28px;
    color: var(--text-white);
}

.project-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    flex: 1;
}

.project-card-button {
    width: 50px;
    height: 50px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 20px;
}

.project-card-slider:hover .project-card-button {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.5);
}

.project-card-slider:hover .project-card-button i {
    transform: translateX(3px);
}

.project-preview-card {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.project-preview-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85);
}

.project-preview-card:hover .project-preview-image {
    transform: scale(1.2);
    filter: brightness(1);
}

.project-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

.project-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.3), transparent);
    z-index: 2;
    transition: left 0.6s ease;
}

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

.project-preview-card:hover {
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.4), 0 0 60px rgba(227, 30, 36, 0.3);
    transform: translateY(-5px);
}

.project-preview-card:hover .project-preview-overlay {
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.project-preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.project-preview-card:hover .project-preview-content {
    transform: translateY(0);
}

.project-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-status.completed {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.project-status.ongoing {
    background: rgba(255, 193, 7, 0.2);
    color: #FFC107;
    border: 1px solid #FFC107;
}

.project-preview-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.project-preview-card:hover .project-preview-title {
    color: var(--accent-red);
}

.project-preview-description {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.projects-preview-button-wrapper {
    text-align: center;
    margin-top: 40px;
}

.projects-view-all-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    background: transparent;
    border: 2px solid var(--accent-red);
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.projects-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-red);
    transition: left 0.3s ease;
    z-index: -1;
}

.projects-view-all-btn:hover {
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.4);
}

.projects-view-all-btn:hover::before {
    left: 0;
}

.projects-view-all-btn i {
    transition: transform 0.3s ease;
}

.projects-view-all-btn:hover i {
    transform: translateX(5px);
}

/* Projects Detail Section */
.projects-detail-section {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(227, 30, 36, 0.03) 50%, rgba(10, 10, 10, 0) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.projects-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.projects-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.projects-column-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.column-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.column-title i {
    color: var(--accent-red);
    font-size: 24px;
}

.projects-column-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-detail-card {
    position: relative;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
}

.project-detail-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-detail-card:hover {
    border-color: var(--accent-red);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.3);
    transform: translateY(-5px);
}

.project-detail-image {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-detail-card:hover .project-detail-image {
    transform: scale(1.1);
}

.project-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.project-detail-card:hover .project-detail-overlay {
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.project-detail-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.project-status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-status-badge.completed {
    background: rgba(76, 175, 80, 0.15);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.project-status-badge.ongoing {
    background: rgba(255, 193, 7, 0.15);
    color: #FFC107;
    border: 1px solid #FFC107;
}

.project-detail-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.project-detail-card:hover .project-detail-title {
    color: var(--accent-red);
}

.project-detail-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-detail-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-detail-meta span {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-detail-meta i {
    color: var(--accent-red);
    font-size: 14px;
}

/* Service Detail Page Styles */
.service-hero-section {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    filter: brightness(0.4);
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.service-detail-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-detail-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.service-detail-paragraph {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 25px;
}

.service-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-features-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
}

.service-features-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-red);
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.service-features-list li i {
    color: var(--accent-red);
    font-size: 20px;
    flex-shrink: 0;
}

.service-contact-box {
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.service-contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-contact-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    background: var(--accent-red);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-contact-button:hover {
    background: transparent;
    border: 2px solid var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(227, 30, 36, 0.3);
}

.service-contact-button i {
    transition: transform 0.3s ease;
}

.service-contact-button:hover i {
    transform: translateX(5px);
}

/* Parallax Background */
.parallax-bg {
    will-change: transform;
}

/* GSAP Animation Classes */
.gsap-fade-in {
    opacity: 0;
}

.gsap-slide-up {
    transform: translateY(100px);
    opacity: 0;
}

/* Contact Section */
.contact-section {
    background-color: #111;
    padding: 120px 0 80px;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    min-width: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
    min-width: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid var(--accent-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 24px;
}

.contact-details h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-form-wrapper {
    min-width: 0;
    width: 100%;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    resize: none;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    min-height: 150px;
}

.submit-button {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    background-color: var(--accent-red);
    border: 2px solid var(--accent-red);
    padding: 16px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: transparent;
    color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.3);
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: rgba(227, 30, 36, 0.2);
    border-color: var(--accent-red);
    color: var(--accent-red);
    transform: translateY(-3px);
}

/* Çok küçük ekranlar (360px ve altı) – telefonda akıcı görünüm */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 12px;
        height: 64px;
    }
    
    .nav-logo a {
        font-size: 20px;
    }
    
    .hero-content,
    .hero-bottom {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
        min-height: 44px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-label {
        font-size: 11px;
    }
    
    .hero-button,
    .hero-button-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .about-container,
    .projects-preview-container,
    .projects-detail-container,
    .gallery-container,
    .contact-container,
    .footer-container,
    .services-container {
        padding: 0 12px;
    }
    
    .project-card-slider,
    .service-card-slider {
        min-width: calc(100vw - 24px);
        width: calc(100vw - 24px);
    }
    
    .project-card-slider {
        height: 300px;
    }
    
    .service-card-slider {
        height: 280px;
    }
    
    .nav-links {
        top: 64px;
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
    }
    
    .about-content .section-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 13px;
    }
    
    .contact-section {
        padding: 40px 0 36px;
    }
    
    .contact-container {
        gap: 24px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 16px;
    }
}
