: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.8);

    /* 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 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: 26px;
    --fs-hero-tablet: 36px;
    --fs-hero-laptop: 48px;
    --fs-section-mobile: 28px;
    --fs-section-tablet: 42px;

    /* 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;
}

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

/* Ensure smooth section transitions */
section {
    margin: 0;
    background-color: var(--bg-primary);
}

/* Hero section should have no bottom margin/padding */
.hero {
    margin-bottom: 0;
    padding-bottom: 0;
    background-color: var(--bg-primary);
}

/* Ensure no gap between hero and about sections */
.hero+.about {
    margin-top: 0;
    /* padding-top: var(--spacing-5xl); */
    background-color: var(--bg-primary);
}

html {
    overflow-x: hidden;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    background-color: var(--bg-primary);
}

body {
    font-family: var(--font-primary);
    line-height: 1.875;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-size: var(--fs-md);
    font-weight: 400;
    word-break: break-word;
    margin: 0;
    padding: 0;
}

.home-page {
    background-color: var(--bg-primary) !important;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 var(--spacing-lg);
    color: var(--text-dark);
}

h1 {
    font-size: var(--fs-6xl);
}

h2 {
    font-size: var(--fs-5xl);
}

h3 {
    font-size: var(--fs-4xl);
}

h4 {
    font-size: var(--fs-3xl);
}

h5 {
    font-size: var(--fs-2xl);
}

h6 {
    font-size: var(--fs-xl);
}

p {
    margin: 0 0 var(--spacing-lg);
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    transition: all var(--transition-fast) linear;
    -webkit-transition: all var(--transition-fast) linear;
    -moz-transition: all var(--transition-fast) linear;
    -o-transition: all var(--transition-fast) linear;
    -ms-transition: all var(--transition-fast) linear;
    font-size: var(--fs-sm);
    -webkit-border-radius: var(--radius-none);
    -moz-border-radius: var(--radius-none);
    border-radius: var(--radius-none);
    padding: 18px 41px;
    line-height: 1.42857143;
    display: inline-block;
    margin-bottom: 0;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-align: center;
    background: var(--bg-secondary);
    cursor: pointer;
    border: 1px solid transparent;
    color: var(--text-light);
    outline: none;
    position: relative;
}

.btn:not(.no-line):before,
.btn:not(.no-line):after {
    content: "";
    position: absolute;
    background: var(--bg-secondary);
    transition: all var(--transition-fast) linear;
    -webkit-transition: all var(--transition-fast) linear;
    -moz-transition: all var(--transition-fast) linear;
    -o-transition: all var(--transition-fast) linear;
    -ms-transition: all var(--transition-fast) linear;
}

.btn:before {
    width: calc(100% + 2px);
    height: 1px;
    bottom: -6px;
    left: 10px;
}

.btn:after {
    width: 1px;
    height: calc(100% + 2px);
    top: 10px;
    right: -6px;
}

.btn:hover,
.btn:active,
.btn:focus {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn:hover:before,
.btn:active:before,
.btn:focus:before {
    width: 0;
}

.btn:hover:after,
.btn:active:after,
.btn:focus:after {
    height: 0;
}

.btn-light {
    background: var(--bg-light);
    color: var(--text-dark);
}

.btn-light:before,
.btn-light:after {
    background: var(--bg-light);
}

.btn-light:hover,
.btn-light:focus {
    color: var(--text-light);
    background: var(--text-dark);
    border-color: var(--text-dark);
}

/* Hero Section Button - Daha küçük boyut */
.hero .btn {
    padding: 14px 32px;
    font-size: var(--fs-xs);
    letter-spacing: 0.3px;
}

.hero .btn:before {
    bottom: -4px;
    left: 8px;
}

.hero .btn:after {
    top: 8px;
    right: -4px;
}

/* Side Navigation */
.sidebar {
    width: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 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;
}

.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 button */
.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;
    min-height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
    background-color: var(--bg-primary) !important;
    transition: margin-left var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    /* Dynamic viewport height for mobile */
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    background-color: var(--bg-primary) !important;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Carousel Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--text-light);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    max-width: 1000px;
    padding: 0 var(--spacing-xl);
    width: 100%;
}

.hero-logo {
    margin-bottom: 50px;
    max-width: 600px;
    width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: var(--spacing-2xl);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(0, 0, 0, 2);

}

.hero-subtitle {
    font-size: var(--fs-2xl);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    color: var(--text-light);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.scroll-down {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--fs-base);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--transition-fast);
    z-index: 3;
}

.scroll-down:hover {
    color: var(--text-accent);
}

/* Section Headers */
.section-header {
    margin-bottom: 70px;
}

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

.section-header h2 {
    font-size: var(--fs-5xl);
    margin-top: var(--spacing-sm);
    color: var(--text-primary);
}

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

/* About Section */
.about {
    background-color: var(--bg-primary) !important;
    background-image: url('/assets/about.png');
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin-top: -20px;
    top: 0;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-overlay);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

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

.about-text {
    color: var(--text-light);
}

.about-text .section-header h2 {
    color: var(--text-light);
}

.about-text .section-header span {
    color: var(--text-gray);
}

.accordion-header h3 {
    color: var(--text-light) !important;
}

.accordion-content p {
    color: var(--text-light-gray);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-none);
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: var(--spacing-lg);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accordion-header h3 {
    font-size: var(--fs-lg);
    margin: 0;
    color: var(--text-dark);
}

.accordion-icon {
    font-size: var(--fs-2xl);
    color: var(--text-gray);
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding 0.25s ease;
    padding-bottom: 0;
}

.accordion-item.active .accordion-content {
    padding-bottom: var(--spacing-lg);
}

/* Skills Section */
.skills {
    padding: var(--spacing-5xl) 0;
    background-color: var(--bg-primary) !important;
    background-image: url('/assets/skills.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--text-light);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-3xl);
    text-align: center;
}

.skill-item h4 {
    color: var(--text-light);
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.skill-item p {
    color: var(--text-gray);
    font-size: var(--fs-base);
    margin-bottom: var(--spacing-lg);
}

.skill-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--text-gray) 0deg, var(--text-gray) 0deg, var(--text-light) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.skill-circle-inner {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-percent {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--text-light);
}

/* Portfolio Section */
.portfolio {
    padding: var(--spacing-5xl) 0;
    background-color: var(--bg-secondary) !important;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: 50px;
    flex-wrap: wrap;
    max-width: 100%;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: var(--fs-xl);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--text-gray);
    border-bottom-color: var(--text-gray);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-2xl);
}

.portfolio-item {
    background: var(--bg-light);
    border-radius: var(--radius-none);
    overflow: hidden;
    box-shadow: none;
    transition: all var(--transition-fast);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    color: var(--text-light);
}

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

.portfolio-overlay h5 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.portfolio-overlay i {
    font-size: var(--fs-2xl);
}

.portfolio-info {
    padding: var(--spacing-lg);
}

.portfolio-info h5 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.portfolio-info p {
    color: var(--text-gray);
    font-size: var(--fs-base);
    margin: 0;
}

/* Services Section */
.services {
    padding: var(--spacing-5xl) 0;
    background-color: var(--bg-tertiary) !important;
}

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

.services-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

.service-item {
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-none);
    box-shadow: none;
    transition: all var(--transition-fast);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon i {
    font-size: var(--fs-2xl);
    color: var(--text-light);
}

.service-item h5 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: var(--fs-xs);
    letter-spacing: 1px;
    margin-top: 15px;
    display: inline-block;
}

.service-link:hover {
    text-decoration: underline;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-none);
    box-shadow: none;
}

/* Stats Section */
.stats {
    background-color: var(--bg-primary) !important;
    background-image: url('/assets/bg1-home6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: var(--spacing-5xl) 0;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-3xl);
    text-align: center;
    background-color: var(--text-gray);
    border-radius: var(--radius-xl) var(--radius-2xl);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg-gray);
    margin-bottom: var(--spacing-sm);
}

.stat-item h6 {
    color: var(--bg-gray);
    font-size: var(--fs-2xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Process Section */
.process {
    padding: var(--spacing-5xl) 0;
    background-color: var(--bg-secondary) !important;
}

.process-tabs {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-4xl);
    margin-top: 70px;
}

.process-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.process-nav-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    cursor: pointer;
    border-radius: var(--radius-none);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.process-nav-item.active,
.process-nav-item:hover {
    background: var(--bg-gray);
    border-color: var(--text-gray);
}

.process-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--text-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: var(--fs-xl);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--bg-secondary);
    color: var(--text-light);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: 700;
}

.process-nav-item h5 {
    margin: 0;
    color: var(--text-dark);
}

.process-content {
    position: relative;
}

.process-step {
    display: none;
    padding: var(--spacing-xl);
    background: var(--bg-gray);
    border-radius: var(--radius-none);
    font-size: var(--fs-lg);
    line-height: 1.8;
}

.process-step.active {
    display: block;
}

/* 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 {
    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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

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

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

/* ===========================
   RESPONSIVE TASARIM DÜZENİ
   =========================== */

/* Tablet ve küçük laptoplar */
@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);
    }

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

    .hero-logo {
        max-width: 300px;
    }

    /* Logo - Tablet boyutunda */
    .logo img {
        max-width: 110px;
    }

    .about-content,
    .services-content,
    .contact-content,
    .process-tabs {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    /* Hero Section Button - Tablet boyutunda */
    .hero .btn {
        padding: 16px 36px;
        font-size: var(--fs-sm);
        letter-spacing: 0.4px;
    }
}

/* Mobil cihazlar */
@media (max-width: 768px) {
    .about .container {
        margin-top: -170px;
        position: relative;
        z-index: 2;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

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

    .hero h1 {
        font-size: var(--fs-hero-tablet);
        line-height: 1.2;
    }

    .hero-logo {
        max-width: 220px;
    }

    /* Hero Section Button - Mobil boyutunda */
    .hero .btn {
        padding: 12px 28px;
        font-size: var(--fs-xs);
        letter-spacing: 0.3px;
    }

    .section-header h2 {
        font-size: var(--fs-section-mobile);
    }

    .portfolio-filters {
        gap: var(--spacing-sm);
        flex-wrap: wrap;
    }

    .filter-btn {
        font-size: var(--fs-base);
        padding: 5px 10px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .skills-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 280px;
        z-index: 1000;
    }

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

    .main-content {
        margin-left: 0;
    }

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

/* Küçük ekranlı telefonlar */

/* **DOĞRU KOD: Fotoğrafı mobilde gizlemek için bu kodu en alta ekle** */
@media (max-width: 767px) {
    .about-image img {
        display: none !important;
    }
}

/* **DOĞRU KOD: Fotoğrafı webde göstermek için bu kodu en alta ekle** */
@media (min-width: 768px) {
    .about-image img {
        display: block !important;
        max-width: 100%;
        height: auto;
    }
}



/* Web için ana sayfa başlığını büyütme */
.hero h1 {
    font-size: 3rem;
    /* Veya istediğin herhangi bir boyutu yazabilirsin */
    font-weight: 900;
}

/* 1200 pikselden büyük ekranlar için daha da büyütme */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 6.5rem;
        /* Daha etkileyici bir görünüm için */
    }
}

/* Tablet ve masaüstü ekranlar için (768px ve üzeri) */
@media (min-width: 768px) {

    /* Ana başlığı büyütme (daha önceki kodumuz) */
    .hero h1 {
        font-size: 4.5rem;
    }

    /* Alt başlık yazısını büyütme */
    .hero-subtitle {
        font-size: 1.1rem;
        /* Veya 20px gibi bir değer kullanabilirsin */
    }

    /* Butonun kutucuğunu ve yazısını büyütme */
    .hero .btn {
        padding: 18px 41px !important;
        /* Standart buton boyutu */
        font-size: 14px !important;
        /* Yazı boyutu */
    }
}

/* Tablet cihazlar için (768px - 1024px arası) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Mobil cihazlar için (768px ve altı) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px !important;
        line-height: 1.3;
    }

    /* Alt başlık yazısını büyütme */
    .hero-subtitle {
        font-size: 14px !important;
        /* İstediğin boyutu yazabilirsin */
    }

    /* Butonun kutucuğunu ve yazısını büyütme */
    .hero .btn {
        padding: 14px 28px !important;
        /* Mobil için biraz daha büyük */
        font-size: 12px !important;
    }
}

/* Küçük mobil cihazlar için (480px ve altı) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 20px !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 12px !important;
    }

    .hero .btn {
        padding: 12px 24px !important;
        font-size: 11px !important;
    }
}

/* Web görünümü için (768px ve üzeri) */
@media (min-width: 768px) {
    /* ...diğer web stillerin... */

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /* 2 eşit sütun oluşturur */
        gap: 2rem;
        /* Sütunlar arasına boşluk ekler */
    }

    /* Çok geniş ekranlar için 3 sütunlu düzen (isteğe bağlı) */
    @media (min-width: 1200px) {
        .skills-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
}

.process-nav-item {
    background-color: #fff !important;
    /* Arka planı tamamen beyaz yapar */
    border: 1px solid #e0e0e0 !important;
    /* Hafif bir kenarlık ekler */
    color: #000 !important;
    /* Yazı rengini siyah yapar */
}

/* Mouse ile üzerine gelince veya aktifken eski rengi almasını engelleriz */
.process-nav-item:hover,
.process-nav-item.active {
    background-color: #fff !important;
    color: #000 !important;
}

/* İçindeki ikon ve sayıların rengini de değiştirelim */
.process-nav-item .process-icon i,
.process-nav-item .step-number {
    color: #000 !important;
    /* Simgelerin rengini siyah yapar */
}

.process-nav-item h5 {
    color: #000 !important;
    /* Başlık rengini siyah yapar */
}

.process {
    background-color: #1a1a1a;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.process .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process .section-header {
    margin-bottom: 60px;
}

.process .section-header span {
    color: #f0f0f0;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    opacity: 0.6;
}

.process .section-header h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

/* Adım kutucukları için modern grid yapısı */
.process-steps-container {
    display: grid;
    gap: 30px;
    padding: 20px 0;
}

.process-steps-container .step-item {
    background-color: #262626;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.process-steps-container .step-item:hover {
    background-color: #333;
    transform: translateY(-5px);
}

/* Adım numarasının stili */
.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0f0f0;
    opacity: 0.2;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.step-item:hover .step-number {
    opacity: 1;
}

/* Başlık ve metin stilleri */
.step-item h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.step-item p {
    font-size: 1rem;
    color: #f0f0f0;
    line-height: 1.6;
    opacity: 0.8;
}

/* Mobil cihazlar için düzen (varsayılan dikey) */
@media (max-width: 767px) {
    .process-steps-container {
        grid-template-columns: 1fr;
    }
}

/* Tablet ve masaüstü için responsive düzen */
@media (min-width: 768px) {
    .process-steps-container {
        grid-template-columns: repeat(2, 1fr);
        /* Tablette 2 sütun */
    }
}

/* Masaüstü için daha geniş düzen */
@media (min-width: 1024px) {
    .process-steps-container {
        grid-template-columns: repeat(4, 1fr);
        /* Masaüstünde 4 sütun */
    }

    .process-steps-container .step-item {
        padding: 50px 30px;
    }
}

/* Buton stili */
.process .btn {
    background-color: #f0f0f0;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.process .btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Adres yazısını küçültmek için */
.contact-address {
    font-size: 0.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);
}

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

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

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

@media (max-width: 768px) {

    /*
        Slider'ın ana kapsayıcısını hedefleyip yüksekliğini ayarlıyoruz.
        '40vh' ekran yüksekliğinin %40'ı demektir, bu kare bir görünüm sağlar.
        Bu değeri ihtiyacına göre değiştirebilirsin.
      */
    .hero {
        height: 100vh !important;
        overflow: hidden;
        /* Taşmayı engellemek için */
    }

    /*
        Slider'ın içindeki her bir slaytın yüksekliğini de aynı şekilde ayarlıyoruz.
      */
    .carousel-slide {
        height: 100vh !important;
        object-fit: cover;
        /* Resmi kapsayıcıya sığdırır */
    }

    /*
        Slider içindeki resimlerin de kapsayıcılarına sığmasını sağlıyoruz.
      */
    .carousel-slide img {
        height: 100% !important;
        object-fit: cover;
        /* Resmi en-boy oranını koruyarak sığdırır */
    }

    /*
        Başlık ve alt başlık metinlerinin de daha küçük görünmesini sağlayalım.
      */
    .hero-content h1 {
        font-size: 2rem !important;
        /* Başlık font boyutunu küçültür */
    }

    .hero-content p {
        font-size: 1rem !important;
        /* Alt başlık font boyutunu küçültür */
    }

    /* .scroll-down {
        bottom: 20px !important;
    } */
}

/* 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;
    }
}