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

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

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

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

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

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

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

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

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

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

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

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

@keyframes text {
    50% {
        color: #ffffff;
    }
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

.page-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), url('https://wpdemo.archiwp.com/theratio-sidenav/wp-content/uploads/sites/6/2020/06/bg-left-menu.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    padding: 2rem;
    transition: transform var(--transition-fast);
}

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

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

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

.logo-icon {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-icon::before,
.logo-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
}

.logo-icon::before {
    top: 8px;
    left: 8px;
    transform: rotate(45deg);
}

.logo-icon::after {
    bottom: 8px;
    right: 8px;
    transform: rotate(45deg);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.8;
}

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

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

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

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

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

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

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

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

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

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

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

/* Main Content */
.main-content {
    margin-left: 300px;
    flex: 1;
    min-height: 100vh;
    width: calc(100% - 300px);
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 45vh;
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), url('/assets/services-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

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

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

/* Content Sections */
.content-wrapper {
    background: var(--bg-primary);
    color: var(--text-light);
    padding: 0;
}

.container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Services Section */
.services-section {
    margin-top: 0;
    margin-bottom: 0;
    background-color: var(--bg-primary);
    padding: 3.5rem 0;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 3.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.section-header {
    padding-top: 0.612rem;
    flex: 1;
    max-width: 45%;
}

.section-header h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: #999;
    font-weight: 400;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.3;
    color: white;
}

.view-projects-btn {
    background: white;
    border: none;
    color: #000;
    padding: 16px 32px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.view-projects-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 1;
    max-width: 55%;
}

.service-card {
    text-align: center;
    padding: 0.612rem 0.459rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

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

.service-icon {
    margin-bottom: 2rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    stroke: white;
    fill: transparent;
}

.service-card h4 {
    font-size: 1.2rem;
    /* biraz küçülttüm ki kelime sığsın */
    font-weight: 600;
    /* kalınlığı artırdım */
    margin-bottom: 1.2rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* harf aralığını azalttım */
    line-height: 1.4;
    /* satır yüksekliğini artırdım */
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}


.service-card h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.4s ease;
}

.service-card h4:hover::after {
    width: 100%;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Experience Cards Section */
.experience-cards-section {
    background: #1A1A1A;
    width: 100%;
    margin: 0;
    padding: 3rem 0;
    position: static;
}


.experience-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;

}

.experience-card {
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-card:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.experience-icon {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: white;
}

.experience-content {
    flex: 1;
}

.experience-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-content p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Main Principles Section */
.main-principles-section {
    margin: 0;
    padding: 5rem 0;
    background: #000;
    overflow-x: hidden;
    box-sizing: border-box;
}

.principles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    box-sizing: border-box;
    overflow-x: hidden;
}

.principles-image {
    flex: 1;
    max-width: 50%;
    box-sizing: border-box;
    overflow: hidden;
}

.principles-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 0;
    display: block;
    max-width: 100%;
}

.principles-content {
    flex: 1;
    max-width: 50%;
    padding-left: 2rem;
}

.principles-content h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #999;
    font-weight: 400;
}

.principles-content h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
}

.principles-divider {
    width: 50px;
    height: 2px;
    background: #666;
    margin-bottom: 3rem;
}

.principles-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

.principle-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0;
}

.principle-number {
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    margin-bottom: 0.5rem;
}

.principle-info h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: white;
    text-transform: capitalize;
    line-height: 1.3;
}

.principle-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #999;
    margin: 0;
}



/* Our Services Section */
.our-services-section {
    background: dark;
    padding: 5rem 0;
    margin: 0;
}

.our-services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.our-services-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.our-services-section h3 {
    color: #ccc;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.our-services-section h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.2;
}

.our-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.our-service-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-service-card.dark {
    background-image: url(https://wpdemo.archiwp.com/theratio-sidenav/wp-content/uploads/sites/6/2020/06/bg-iconbox1-hover.jpg);
    color: white;
    position: relative;
    transition: all 0.3s ease;
}


.our-service-card:hover {
    background-image: url(https://wpdemo.archiwp.com/theratio-sidenav/wp-content/uploads/sites/6/2020/06/bg-iconbox1.jpg);
    color: #333;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.our-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -6px;
    width: 2px;
    height: 0;
    background: white;
    transition: all 0.5s ease-in-out;
    z-index: 3;
}

.our-service-card::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.5s ease-in-out 0.7s;
    z-index: 3;
}

.our-service-card:hover::before {
    height: 420px;
    top: -6px;
}

.our-service-card:hover::after {
    width: 360px;
    left: -6px;
}



.our-service-icon {
    margin-bottom: 2rem;
    color: inherit;
}

.our-service-icon svg {
    width: 80px;
    height: 80px;
    color: inherit;
}

.our-service-image {
    margin-bottom: 2rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid currentColor;
    position: relative;
    z-index: 3;
}

.our-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.our-service-card h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.our-service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.our-service-btn {
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.our-service-btn:hover {
    background: currentColor;
    color: white;
}

.our-service-card:hover .our-service-btn {
    color: #333;
    border-color: #333;
}

.our-service-card:hover .our-service-btn:hover {
    background: #333;
    color: white;
}

/* Services Grid with Features Section */
.services-features-section {
    background: #1A1A1A;
    padding: 0;
    margin: 0;
}

.services-features-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 5rem 3rem 5rem 0;
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 4rem;
    align-items: start;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Services Grid Area */
.services-grid-area {
    padding-left: 2rem;
    padding-right: 2rem;
}

.services-grid-container {
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.service-grid-item {
    background-image: url(https://wpdemo.archiwp.com/theratio-sidenav/wp-content/uploads/sites/6/2024/03/bg2-service1.jpg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.service-grid-item:hover {
    background-image: url(http://wpdemo.archiwp.com/theratio-sidenav/wp-content/uploads/sites/6/2024/03/bg2-hservice1.jpg);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-grid-item:hover .service-grid-icon {
    color: black;
}

.service-grid-item:hover .service-grid-icon svg {
    color: black;
}

.service-grid-item:hover h4 {
    color: black;
}

.service-grid-icon {
    margin-bottom: 1.5rem;
    color: white;
}

.service-grid-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.service-grid-item h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.2;
}

/* Philosophy Features Area */
.philosophy-features-area {
    padding-left: 2rem;
}

.features-header {
    text-align: left;
    margin-bottom: 3rem;
}

.features-header h3 {
    color: #999;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.features-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

.features-tabs {
    max-width: 100%;
}

.tab-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.tab-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 1rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn.active {
    color: white;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
}

.tab-btn:hover {
    color: white;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 0;
}

.award-icon {
    color: #666;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.award-item p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Breakpoints ---------- */
@media (max-width: 1200px) {
    .services-features-container {
        grid-template-columns: 55% 45%;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .services-features-container {
        grid-template-columns: 1fr;
        /* tek sütun */
        gap: 2.5rem;
        padding: 3.5rem 0;
        /* full-bleed koru */
    }
}

@media (max-width: 480px) {
    .services-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
    }

    .service-grid-item {
        min-height: 160px;
        padding: 2rem 1rem;
    }
}

/* New Services Section */
.new-services-section {
    padding: 80px 20px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background: #000;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ⬇️ DEĞİŞTİ: metin üstte, görseller altta; merkezleme */
.new-services-container {
    display: flex;
    flex-direction: column;
    /* row -> column */
    gap: 60px;
    align-items: center;
    /* yatay merkez */
    width: 100%;
    text-align: center;
    /* metni ortala */
}

/* ⬇️ DEĞİŞTİ: sağ padding kalktı, ortalama eklendi */
.content-left {
    padding-right: 0;
    /* 40px -> 0 */
    flex: 1;
    min-width: 0;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* içeriği ortala */
}

.section-tag {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 20px;
    font-weight: 500;
}

.main-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
}

.main-title span {
    display: block;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
}

.view-projects-btn {
    background: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    padding: 15px 35px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.view-projects-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    width: 2px;
    height: 0;
    background: #000000;
    transition: all 0.5s ease-in-out;
    z-index: 5;
}

.view-projects-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000000;
    transition: all 0.5s ease-in-out 0.3s;
    z-index: 5;
}

.view-projects-btn:hover {
    background: #000000;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.view-projects-btn:hover::before {
    height: calc(100% + 4px);
    top: -2px;
    background: #ffffff;
}

.view-projects-btn:hover::after {
    width: calc(100% + 4px);
    left: -2px;
    background: #ffffff;
}

/* ⬇️ GÖRSELLER: metnin ALTINDA yan yana */
.services-grid {
    display: flex;
    flex-direction: row;
    /* yan yana */
    gap: 30px;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: transparent;
    width: 100%;
    max-width: 480px;
}

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

.service-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
    display: block;
}

.service-card:hover img {
    transform: scale(1.05);
}

/* Image Container */
.service-card .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    height: 450px;
}

/* Plus Overlay */
.service-card .plus-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-card:hover .plus-overlay {
    opacity: 1;
}

/* Plus Button */
.plus-button {
    width: 60px;
    height: 60px;
    border: 2px solid white;
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plus-button:hover {
    background: white;
    color: black;
    transform: scale(1.1);
}

/* Modal Styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.service-overlay {
    position: static;
    background: transparent;
    padding: 30px 0;
    color: white;
    text-align: center;
}

.service-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.read-more-btn {
    background: transparent;
    border: 1px solid #666;
    color: #ccc;
    padding: 12px 25px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.read-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

/* ⬇️ MOBİL: görseller alt alta */
@media (max-width: 768px) {
    .new-services-section {
        padding: 40px 20px;
    }

    .main-title {
        font-size: 36px;
    }

    .services-grid {
        flex-direction: column;
        /* sadece mobilde alt alta */
        gap: 20px;
    }

    .service-card img,
    .service-card .image-container {
        height: 320px;
        /* mobil için daha kısa */
    }
}

/* Contact Section */
.contact {
    padding: var(--spacing-5xl) 0;
    background-color: var(--bg-primary) !important;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
}

.contact-logo {
    margin-bottom: var(--spacing-xl);
}

.contact-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

.contact-details h6 {
    margin-bottom: var(--spacing-xl);
    font-size: var(--fs-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.contact-list i {
    color: var(--text-light);
    font-size: var(--fs-lg);
    width: 20px;
}

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

.contact-list a:hover {
    color: var(--text-gray);
}

/* Contact Section */
.contact {
    padding: var(--spacing-5xl) 0;
    background-color: var(--bg-primary) !important;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
}

.contact-logo {
    margin-bottom: var(--spacing-xl);
}

.contact-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    display: block;
}

.contact-details h6 {
    margin-bottom: var(--spacing-xl);
    font-size: var(--fs-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--spacing-lg);
}

.contact-list i {
    color: var(--text-light);
    font-size: var(--fs-lg);
    width: 20px;
}

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

.contact-list a:hover {
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: var(--bg-primary) !important;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



@media (max-width: 1024px) {
    .footer-content {
        margin: 0 10px;
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

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

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

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

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

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

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }

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

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Logo - Mobil boyutunda */
    .logo img {
        max-width: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-section {
        padding: 0.918rem 0;
    }

    .services-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 2rem;
    }

    .section-header {
        max-width: 100%;
    }

    .services-grid {
        max-width: 100%;
        gap: 2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .experience-cards-container {
        flex-direction: column;
        padding: 0 2rem;
    }

    .experience-card {
        max-width: 100%;
        min-width: 100%;
    }

    .about-text h2,
    .philosophy-section h2,
    .our-services-section h2,
    .services-grid-section h2 {
        font-size: 2rem;
    }

    .services-features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }

    .services-grid-area,
    .philosophy-features-area {
        padding: 0;
    }

    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-header {
        text-align: center;
    }

    .features-header h2 {
        font-size: 2.2rem;
    }

    .tab-buttons {
        justify-content: center;
        gap: 1.5rem;
    }

    .main-principles-section {
        padding: 3rem 0;
        overflow-x: hidden;
    }

    .principles-container {
        flex-direction: column;
        gap: 3rem;
        padding: 0 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .principles-image,
    .principles-content {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .principles-content {
        padding-left: 0;
        text-align: center;
    }

    .principles-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-wrapper {
        padding: 3rem 2rem;
    }



    .our-services-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .our-service-card {
        padding: 2.5rem 1.5rem;
        min-height: 350px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-section {
        padding: 0.612rem 0;
    }

    .services-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-width: 100%;
        padding: 0.459rem 0.306rem;
    }

    .experience-cards-container {
        padding: 0 1rem;
    }

    .experience-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }



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

    .about-text h2,
    .philosophy-section h2,
    .our-services-section h2,
    .services-grid-section h2 {
        font-size: 1.8rem;
    }

    .services-features-container {
        padding: 0 1rem;
    }

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

    .service-grid-item {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .tab-buttons {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .tab-btn {
        font-size: 0.8rem;
        padding: 0.8rem 0;
    }

    .content-wrapper {
        padding: 2rem 1rem;
    }

    /* Logo - Küçük mobil boyutunda */
    .logo img {
        max-width: 80px;
    }

    .main-principles-section {
        padding: 2rem 0;
        overflow-x: hidden;
    }

    .principles-container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .principles-content h2 {
        font-size: 2rem;
    }

    .mobile-menu-toggle {
        top: 1rem;
        right: 1rem;
    }

    .our-services-section {
        padding: 3rem 0;
    }

    .our-services-content {
        padding: 0 1rem;
    }

    .our-service-card {
        padding: 2rem 1rem;
        min-height: 300px;
    }

    .our-service-card h4 {
        font-size: 1.3rem;
    }

    /* Footer responsive düzenlemeleri */
    .footer-content {
        margin: 0 10px;
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .footer-description {
        font-size: 0.9rem;
    }

    .contact-address {
        font-size: 0.8rem;
    }

    /* Hero section responsive düzenlemeleri */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* Küçük mobil cihazlar için (480px ve altı) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .breadcrumb {
        font-size: 0.7rem;
    }

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

    .footer-description {
        font-size: 0.8rem;
    }

    .contact-address {
        font-size: 0.7rem;
    }

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

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

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

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

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

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