:root {
    --primary-color: #FFA500;
    --secondary-color: #1A1A1A;
    --accent-color: #FF8C00;
    --light-color: #F5F5F5;
    --text-color: #333333;
    --dark-gray: #666;
    --light-orange: #FFA500;
    --dark-rgb: 26, 26, 26;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
    background: transparent;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav.scrolled {
    background: rgba(var(--dark-rgb), 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    
    .footer-logo img {
        height: 70px;
    }
}

nav.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav.scrolled .nav-links a {
    color: var(--light-color);
}

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

@media (max-width: 768px) {
    nav {
        padding: 20px 0;
    }

    nav .container {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        display: none;
    }
}

/* Banner Yeni Tasarım */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary-color);
    padding-top: 120px; /* Header ile banner arası mesafe */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.97) 0%,
        rgba(26, 26, 26, 0.95) 40%,
        rgba(255, 165, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero-text {
    position: relative;
    padding-left: 30px;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 2px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero h1 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.stat-item {
    width: 100%;
    min-width: 0;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3px;
    width: 100%;
    text-align: center;
}

.stat-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-align: center;
    word-wrap: break-word;
}

.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
    z-index: 2;
}

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

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* About Section */
.about {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, var(--light-color) 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        repeating-linear-gradient(45deg, 
            transparent 0px,
            transparent 10px,
            rgba(255, 165, 0, 0.03) 10px,
            rgba(255, 165, 0, 0.03) 11px
        ),
        repeating-linear-gradient(-45deg,
            transparent 0px,
            transparent 10px,
            rgba(26, 26, 26, 0.03) 10px,
            rgba(26, 26, 26, 0.03) 11px
        );
}

.about::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFA500' stroke-width='1' opacity='0.05'%3E%3Cpath d='M0 0h100v100H0z'/%3E%3Cpath d='M20 20h60v60H20z'/%3E%3Cpath d='M35 35h30v30H35z'/%3E%3Ccircle cx='50' cy='50' r='15'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: 600px;
    margin-top: 30px;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.05;
    border-radius: 0;
    top: -50px;
    left: -100px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%, 0 50%);
    animation: rotateTechnical 20s linear infinite;
}

@keyframes rotateTechnical {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.about-text {
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 165, 0, 0.1);
}

.about-text::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(255, 165, 0, 0.2);
    border-radius: 10px;
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.about-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.about-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: 600px;
    margin-top: 30px;
}

.about-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 45px;
    display: inline-block;
}

.about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.about-text h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: auto;
    padding-top: 30px;
}

.feature-item {
    background: rgba(255, 165, 0, 0.03);
    border: 1px solid rgba(255, 165, 0, 0.1);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.1);
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item h4 i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.about-image {
    position: relative;
    height: 100%;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

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

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

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    pointer-events: none;
}

.experience-years {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 165, 0, 0.2);
}

.years-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

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

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
        min-height: auto;
    }

    .about-image {
        min-height: 500px;
    }

    .about-features {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 40px 0;
    }

    .about-header h2 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        padding: 30px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-top: 15px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 0px;
    }

    .feature-item {
        padding: 20px;
        text-align: center;
    }

    .feature-item h4 {
        justify-content: center;
    }

    .about-image {
        display: none;
    }

    .experience-years {
        display: none;
    }
}

/* Projects Section */
.projects {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        repeating-linear-gradient(45deg, 
            transparent 0px,
            transparent 10px,
            rgba(255, 165, 0, 0.03) 10px,
            rgba(255, 165, 0, 0.03) 11px
        ),
        repeating-linear-gradient(-45deg,
            transparent 0px,
            transparent 10px,
            rgba(26, 26, 26, 0.03) 10px,
            rgba(26, 26, 26, 0.03) 11px
        );
}

.projects h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.projects h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.projects-header {
    text-align: left;
    max-width: 800px;
    margin-bottom: 80px;
}

.projects-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
}

.projects-header h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.projects-header p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 15px;
    line-height: 1.8;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    aspect-ratio: 1;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 165, 0, 0.2);
}

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

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

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, 
        rgba(26, 26, 26, 0.95) 0%,
        rgba(26, 26, 26, 0.8) 60%,
        transparent 100%
    );
    color: white;
    transform: translateY(60%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.project-info p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.project-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.project-specs i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link:hover {
    gap: 15px;
}

.project-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .projects {
        padding: 40px 0;
    }

    .projects-header h2 {
        font-size: 2.5rem;
    }

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

    .project-info {
        transform: translateY(0);
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 70%,
            transparent 100%
        );
    }
}

/* Contact Section */
.contact {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        repeating-linear-gradient(45deg, 
            transparent 0px,
            transparent 10px,
            rgba(255, 165, 0, 0.03) 10px,
            rgba(255, 165, 0, 0.03) 11px
        ),
        repeating-linear-gradient(-45deg,
            transparent 0px,
            transparent 10px,
            rgba(26, 26, 26, 0.03) 10px,
            rgba(26, 26, 26, 0.03) 11px
        );
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.contact-header h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.contact-wrapper {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
}

.contact-info {
    background: var(--secondary-color);
    padding: 25px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 60%);
    opacity: 0.1;
    top: -500px;
    right: -500px;
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.contact-info-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-color);
    background: rgba(255, 165, 0, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-item-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info-header h3 {
        font-size: 1.8rem;
    }
}

/* Footer */
footer {
    position: relative;
    background: linear-gradient(45deg, var(--secondary-color), #1a1a1a);
    color: white;
    padding: 60px 0 30px;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%
    );
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
    margin: 0 40px 30px 40px;
    text-align: left;
}

.footer-info {
    text-align: left;
}

.footer-info h3 {
    text-align: left;
}

.footer-info p {
    text-align: left;
}

.footer-links h4 {
    text-align: left;
}

.footer-links h4::after {
    left: 0;
    transform: none;
}

.footer-links ul {
    text-align: left;
}

.footer-bottom {
    margin: 0 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        margin: 0 20px 30px 20px;
    }

    .footer-info {
        text-align: left;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .footer-contact .contact-item {
        justify-content: flex-start;
    }

    .footer-links h4 {
        text-align: left;
    }

    .footer-links h4::after {
        left: 0;
        transform: none;
    }

    .footer-links ul {
        text-align: left;
    }

    .footer-bottom {
        margin: 0 20px;
        text-align: left;
    }
}

.footer-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-info p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 400px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links ul li a:hover::before {
    width: 15px;
}

.footer-bottom {
    position: relative;
    padding-top: 40px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
}

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

.footer-social a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    text-decoration: none;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
    bottom: 0 !important;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-info h3 {
        font-size: 1.8rem;
    }
    
    .footer-links h4 {
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2em;
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 0 20px;
    }
} 

/* Loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
}

.loader div:nth-child(1) {
    border-top-color: rgba(255, 255, 255, 0.9);
    animation: spin1 2s linear infinite;
}

.loader div:nth-child(2) {
    border-right-color: rgba(255, 255, 255, 0.8);
    animation: spin2 2s linear infinite;
}

.loader div:nth-child(3) {
    border-bottom-color: rgba(255, 255, 255, 0.7);
    animation: spin3 2s linear infinite;
}

.loader div:nth-child(4) {
    border-left-color: rgba(255, 255, 255, 0.6);
    animation: spin4 2s linear infinite;
}

@keyframes spin1 {
    0% { transform: rotate(0deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1.1); }
}

@keyframes spin2 {
    0% { transform: rotate(90deg) scale(1.05); }
    100% { transform: rotate(450deg) scale(1.05); }
}

@keyframes spin3 {
    0% { transform: rotate(180deg) scale(1); }
    100% { transform: rotate(540deg) scale(1); }
}

@keyframes spin4 {
    0% { transform: rotate(270deg) scale(0.95); }
    100% { transform: rotate(630deg) scale(0.95); }
}

.loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    animation: fadeInUp 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes fadeInUp {
    0% { transform: translate(-50%, 20px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 1; }
}

/* Navigation Enhancements */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

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

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

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

/* Enhanced Project Cards */
.project-image {
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: rotateY(10deg) scale(1.1);
}

/* Form Enhancements */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(128, 0, 32, 0.1);
    outline: none;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2em;
        padding: 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 0 20px;
    }
} 

/* Geometrik Desenler */
.geometric-pattern {
    display: none;
}

/* Menu Button İyileştirmeleri */
.menu-btn span {
    transform-origin: center;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-btn:hover span:nth-child(1) {
    width: 20px;
}

.menu-btn:hover span:nth-child(3) {
    width: 15px;
} 

/* Scrollbar Tasarımı */
::-webkit-scrollbar {
    width: 12px;
    background: #f5f5f5;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-color), #600018);
    border-radius: 6px;
    border: 3px solid var(--light-color);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #600018, var(--primary-color));
}

/* Firefox için scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-color);
}

/* Diğer stiller aynı kalacak */ 

/* Mobil Menü İyileştirmeleri */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1100;
        cursor: pointer;
        background: transparent;
        border: none;
    }

    .menu-btn span {
        width: 30px;
        height: 2px;
        margin: 0;
        position: absolute;
        background: white;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav.scrolled .menu-btn span {
        background: var(--primary-color);
    }

    .menu-btn span:nth-child(1) {
        transform: translateY(-10px);
        width: 20px;
        left: 15px;
    }

    .menu-btn span:nth-child(2) {
        width: 30px;
        left: 15px;
    }

    .menu-btn span:nth-child(3) {
        transform: translateY(10px);
        width: 25px;
        left: 15px;
    }

    .menu-btn.active span {
        background: var(--primary-color);
    }

    .menu-btn.active span:nth-child(1) {
        width: 30px;
        transform: rotate(45deg);
    }

    .menu-btn.active span:nth-child(2) {
        width: 0;
        opacity: 0;
    }

    .menu-btn.active span:nth-child(3) {
        width: 30px;
        transform: rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.98);
        clip-path: circle(0% at calc(100% - 50px) 50px);
        transition: clip-path 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                    backdrop-filter 0.8s ease;
        backdrop-filter: blur(0px);
    }

    .nav-links.active {
        visibility: visible;
        pointer-events: all;
    }

    .nav-links.active::before {
        clip-path: circle(150% at calc(100% - 50px) 50px);
        backdrop-filter: blur(20px);
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .nav-links a {
        font-size: 2.5rem;
        color: var(--secondary-color) !important;
        position: relative;
        padding: 10px 20px;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-weight: 600;
        transition: all 0.4s ease;
        font-family: 'Playfair Display', serif;
        display: inline-block;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -30px;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transform: translateY(-50%);
        transition: width 0.4s ease;
    }

    .nav-links a:hover::before {
        width: 20px;
    }

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

    .nav-links a:hover::after {
        width: calc(100% - 40px);
    }

    .nav-links li:hover a {
        color: var(--primary-color) !important;
        transform: translateX(10px);
        text-shadow: 2px 2px 8px rgba(128, 0, 32, 0.2);
    }

    .nav-links li::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        width: 10px;
        height: 10px;
        background: var(--primary-color);
        border-radius: 50%;
        transform: translate(-20px, -50%) scale(0);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .nav-links li:hover::before {
        transform: translate(0, -50%) scale(1);
        opacity: 1;
    }

    .nav-links::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 100% 0%, rgba(128, 0, 32, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 0% 100%, rgba(128, 0, 32, 0.05) 0%, transparent 50%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.8s ease;
    }

    .nav-links.active::after {
        opacity: 1;
    }
} 

/* Responsive Design İyileştirmeleri */
@media (max-width: 768px) {
    /* Header ve Navigasyon */
    nav {
        padding: 15px 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .nav-links {
        width: 100%;
        padding: 40px 0;
    }

    .nav-links a {
        font-size: 18px;
        margin: 15px 0;
    }

    /* Hero Section */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 50px; /* Mobil görünümde üst padding artırıldı */
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero h1 span {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .stat-item {
        width: 100%;
        min-width: 0;
        padding: 15px 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .stat-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.1);
    }

    .stat-item i {
        font-size: 1.8rem;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .stat-number {
        font-family: 'Montserrat', sans-serif;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 3px;
        width: 100%;
        text-align: center;
    }

    .stat-text {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        letter-spacing: 1px;
        width: 100%;
        text-align: center;
        word-wrap: break-word;
    }

    /* About Section */
    .about {
        padding: 40px 0;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        padding: 30px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-image {
        display: none;
    }

    /* Services Section */
    .services {
        padding: 40px 0;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-info h3 {
        font-size: 1.4rem;
    }

    /* Team Section */
    .team {
        padding: 40px 0;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .member-image {
        height: 280px;
    }

    .member-info {
        padding: 25px;
    }

    .member-info h3 {
        font-size: 1.4rem;
    }

    /* Gallery Section */
    .gallery {
        padding: 40px 0;
    }

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

    .gallery-item {
        height: 250px;
    }

    .gallery-overlay {
        padding: 20px;
        opacity: 1;
        transform: translateY(0);
    }

    .gallery-overlay h3 {
        font-size: 1.3rem;
    }

    /* References Section */
    .references {
        padding: 30px 0;
    }

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

    .references-wrapper {
        height: 120px;
    }

    .references-content span {
        font-size: 1.6rem;
        padding: 0 30px;
    }

    /* Contact Section */
    .contact {
        padding: 40px 0;
    }

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

    .contact-info {
        padding: 25px;
    }

    .contact-item {
        padding: 15px 0;
    }

    .contact-item i {
        width: 45px;
        height: 45px;
    }

    /* Map Section */
    .map-section {
        padding: 0 0 60px;
    }

    .map-container {
        height: 350px;
        margin: 0 20px;
    }

    .map-card {
        padding: 20px;
        width: 90%;
    }

    .map-card h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    footer {
        padding: 40px 0 20px;
    }

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

    .footer-info h3 {
        font-size: 1.8rem;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }

    .footer-links h4 {
        font-size: 1.2rem;
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links ul {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 30px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Tablet Görünümü İçin Özel Düzenlemeler */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Hero Section */
    .hero h1 {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Gallery Section */
    .gallery-item {
        height: 280px;
    }

    /* References Section */
    .references-wrapper {
        height: 130px;
    }

    .references-content span {
        font-size: 1.8rem;
    }

    /* Contact Section */
    .contact-info {
        padding: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .footer-info {
        grid-column: 1 / -1;
    }
}

/* Küçük Mobil Cihazlar İçin Özel Düzenlemeler */
@media only screen and (max-width: 480px) {
    /* Hero Section */
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 1.2rem;
    }

    .stat-item {
        padding: 20px;
    }

    /* About Section */
    .about-text {
        padding: 25px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    /* Services Section */
    .service-card {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    /* Team Section */
    .member-image {
        height: 250px;
    }

    /* Gallery Section */
    .gallery-item {
        height: 200px;
    }

    /* References Section */
    .references-content span {
        font-size: 1.4rem;
        padding: 0 25px;
    }

    /* Contact Section */
    .contact-info {
        padding: 25px;
    }

    .map-container {
        height: 300px;
        margin: 0 15px;
    }

    /* Footer */
    .footer-info h3 {
        font-size: 1.6rem;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }
}

/* Yatay Mobil Görünüm İçin Özel Düzenlemeler */
@media only screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 150px 0 50px; /* Yatay görünümde üst padding artırıldı */
    }

    .hero-stats {
        margin-top: 30px;
        padding-top: 30px;
    }

    .about {
        padding: 60px 0;
    }

    .services {
        padding: 60px 0;
    }

    .team {
        padding: 60px 0;
    }

    .member-image {
        height: 220px;
    }

    .gallery-item {
        height: 180px;
    }

    .map-container {
        height: 250px;
    }
}

/* Daha Küçük Mobil Cihazlar İçin */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 span {
        font-size: 1.2rem;
    }

    .about-text h2,
    .projects h2,
    .contact-header h2 {
        font-size: 2rem;
    }

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

    .footer-links {
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
} 

@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        margin: 0 auto;
        max-width: 80%;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 0;
    }

    nav .container {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--light-color);
        font-size: 18px;
        margin: 15px 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h1 span {
        font-size: 1.4rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
        border-left: none;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        padding: 0 0 20px 0;
    }

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

    .project-card {
        margin-bottom: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form .form-group {
        grid-template-columns: 1fr;
    }
}

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

    .hero h1 span {
        font-size: 1.2rem;
    }

    .about-text h2,
    .projects h2,
    .contact-header h2 {
        font-size: 2rem;
    }

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

    .footer-links {
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
} 

/* Team Section */
.team {
    position: relative;
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
}

.team-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.team-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.team-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.team-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.team-slider {
    position: relative;
    padding: 20px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.team-member {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.member-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(26, 26, 26, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-social {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-social {
    transform: translateY(0);
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    position: relative;
    background: white;
    z-index: 1;
}

.member-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.team-member:hover .member-info::before {
    transform: scaleY(1);
}

.member-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.team-member:hover .member-info h3 {
    transform: translateX(15px);
}

.member-info .position {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.team-member:hover .member-info .position {
    transform: translateX(15px);
}

.member-info p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.member-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.member-specs i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.slider-nav {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.prev-slide,
.next-slide {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.prev-slide:hover,
.next-slide:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 165, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team {
        padding: 40px 0;
    }

    .team-header h2 {
        font-size: 2.5rem;
    }

    .team-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 20px 0;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .team-grid::-webkit-scrollbar {
        display: none;
    }

    .team-member {
        flex: 0 0 85%;
        scroll-snap-align: center;
        transition: all 0.3s ease;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .member-image {
        height: 280px;
    }

    .slider-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }

    .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(26, 26, 26, 0.2);
        transition: all 0.3s ease;
    }

    .dot.active {
        width: 6px;
        background: var(--primary-color);
    }

    .prev-slide,
    .next-slide {
        display: none;
    }
}

@media (max-width: 480px) {
    .team-header h2 {
        font-size: 2rem;
    }

    .member-image {
        height: 250px;
    }

    .member-info {
        padding: 20px;
    }
} 

.main-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    overflow: hidden;
}

.main-wrapper::before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        repeating-linear-gradient(45deg, 
            transparent 0px,
            transparent 10px,
            rgba(255, 165, 0, 0.03) 10px,
            rgba(255, 165, 0, 0.03) 11px
        ),
        repeating-linear-gradient(-45deg,
            transparent 0px,
            transparent 10px,
            rgba(26, 26, 26, 0.03) 10px,
            rgba(26, 26, 26, 0.03) 11px
        );
    z-index: 0;
    pointer-events: none;
}

.main-wrapper::after {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFA500' stroke-width='1' opacity='0.1'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3Cpath d='M15 15h30v30H15z'/%3E%3Ccircle cx='30' cy='30' r='10'/%3E%3Cpath d='M0 30h60M30 0v60'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

/* Her bölümün arkaplan desenlerini kaldır */
.hero::before {
    background: url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.about, .projects, .team, .contact {
    position: relative;
    z-index: 1;
    background: transparent;
}

.about::before, .projects::before, .team::before, .contact::before,
.about::after, .projects::after, .team::after, .contact::after {
    display: none;
}

/* Bölüm içeriklerinin z-index'lerini ayarla */
.hero-content, .about .container, .projects .container, 
.team .container, .contact .container, footer .container {
    position: relative;
    z-index: 2;
}

/* Loader'ın z-index'ini ayarla */
#loader-wrapper {
    z-index: 9999;
}

/* Navigation'ın z-index'ini ayarla */
nav {
    z-index: 1000;
} 

/* Gallery Section */
.gallery {
    padding: 60px 0;
    position: relative;
    z-index: 1;
    background: transparent;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.gallery-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
}

.gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.gallery-content {
    position: relative;
    padding: 20px 0;
}

.gallery-swiper {
    width: 100%;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.gallery-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--light-orange);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
}

.swiper-pagination-bullet {
    background: var(--light-orange);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 250px;
    }
    
    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    }
    
    .gallery-zoom {
        opacity: 1;
        transform: scale(1);
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
} 

/* References Section */
.references {
    position: relative;
    width: 100%;
    background: linear-gradient(to right, rgba(var(--dark-rgb), 0.02), rgba(var(--dark-rgb), 0.05), rgba(var(--dark-rgb), 0.02));
    padding: 40px 0;
    overflow: hidden;
}

.references .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.references .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.references .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.references .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.references-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    /* background: linear-gradient(to right, 
        rgba(var(--dark-rgb), 0.03),
        rgba(var(--dark-rgb), 0.01) 20%,
        rgba(var(--dark-rgb), 0.01) 80%,
        rgba(var(--dark-rgb), 0.03)
    ); */
}

.references-track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    width: fit-content;
    padding: 20px 0;
}

.references-content {
    display: inline-block;
}

.references-content span {
    display: inline-block;
    padding: 0 50px;
    font-size: 2.2rem; /* Font boyutu artırıldı */
    font-weight: 600;
    font-family: 'Oswald', sans-serif; /* Yeni font */
    color: var(--secondary-color);
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px; /* Letter spacing artırıldı */
    line-height: 1.2;
    transform: skew(-5deg); /* Hafif eğik görünüm */
}

.references-content span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.references-content span::after {
    content: '';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
}

.references-content span:last-child::after {
    display: none;
}

/* Mobil için düzenlemeler */
@media (max-width: 768px) {
    .references {
        padding: 30px 0;
    }

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

.references-content span {
        font-size: 1.6rem;
        padding: 0 30px;
        letter-spacing: 1px;
    }

    .references-wrapper {
        height: 120px;
    }
} 

/* Services Section */
.services {
    position: relative;
    padding: 60px 0;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}

.services::before {
    display: none;
}

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

@keyframes movePattern {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.services .section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.services .section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.services .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.services .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
}

.service-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.1);
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    top: 100%;
    left: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon::before {
    top: 0;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon i {
    color: white;
    transform: rotateY(360deg);
}

.service-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-info h3 {
    color: var(--primary-color);
}

.service-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: auto;
}

.service-specs span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.service-specs i {
    color: var(--primary-color);
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .services {
        padding: 100px 0;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 2rem;
    }

    .service-info h3 {
        font-size: 1.3rem;
    }
} 

.footer-info {
    max-width: 400px;
}

.footer-contact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact .contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover i {
    background: var(--primary-color);
    color: white;
}

.footer-contact .contact-item span {
    font-size: 0.95rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .footer-info {
        max-width: 100%;
        text-align: center;
    }

    .footer-contact {
        align-items: start;
    }

    .footer-contact .contact-item {
        justify-content: center;
    }
}

.map-container {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        margin-top: 30px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

.map-section {
    position: relative;
    padding: 0 0 60px;
    background: transparent;
    overflow: hidden;
}

.map-section::before {
    display: none;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
}

.map-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 165, 0, 0.2);
    text-align: center;
    min-width: 300px;
    transition: all 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.map-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.map-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.map-card p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.3) contrast(1.1);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0) contrast(1);
}

@media (max-width: 768px) {
    .map-section {
        padding: 0;
        width: 100%;
        overflow: hidden;
        margin: 0;
    }

    .map-section .container {
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .map-container {
        margin: 30px auto;
        width: calc(100% - 60px);
        position: relative;
        box-sizing: border-box;
        left: 0;
        transform: none;
    }

    .map-container iframe {
        height: 350px;
        width: 100%;
        display: block;
        border-radius: 20px;
    }

    .map-container::before {
        border-radius: 20px;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    /* Header */
    .logo {
        font-size: 18px;
    }

    .logo i {
        font-size: 20px;
    }

    nav {
        padding: 10px 0;
    }

    .menu-btn {
        width: 40px;
        height: 40px;
    }

    /* Banner/Hero */
    .hero {
        padding: 80px 0 40px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h1 span {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-text {
        font-size: 0.8rem;
    }

    /* About */
    .about {
        padding: 60px 0;
    }

    .about-text {
        padding: 20px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-image {
        height: 250px;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    /* Team */
    .team {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .member-image {
        height: 220px;
    }

    /* Gallery */
    .gallery-item {
        height: 200px;
    }

    /* References */
    .references-content span {
        font-size: 1.2rem;
        padding: 0 15px;
    }

    /* Contact */
    .contact-info {
        padding: 20px;
    }

    .map-container {
        height: 250px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .container {
        max-width: 540px;
    }

    /* Banner/Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    /* Banner/Hero */
    .hero h1 {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Team */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Gallery */
    .gallery-item {
        height: 250px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    /* Banner/Hero */
    .hero h1 {
        font-size: 3.5rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Team */
    .team-grid {
        gap: 40px;
    }

    .member-image {
        height: 300px;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    /* Banner/Hero */
    .hero h1 {
        font-size: 4rem;
    }

    .hero-content {
        max-width: 800px;
    }

    /* Services */
    .services-grid {
        gap: 40px;
    }

    /* Team */
    .member-image {
        height: 350px;
    }

    /* Gallery */
    .gallery-item {
        height: 300px;
    }
}

/* Yatay Mobil Görünüm */
@media only screen and (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-stats {
        margin-top: 20px;
    }

    .member-image {
        height: 200px;
    }
}

/* Mobil Menü */
@media only screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--light-color);
        font-size: 1.4rem;
        margin: 10px 0;
    }

    .menu-btn {
        display: flex;
    }
}

/* Section Headers */
@media only screen and (max-width: 768px) {
    .section-header h2,
    .about-header h2,
    .services .section-header h2,
    .team-header h2,
    .gallery-header h2,
    .references .section-header h2,
    .contact-header h2 {
        font-size: 2rem;
    }

    .section-header p,
    .about-header p,
    .services .section-header p,
    .team-header p {
        font-size: 0.9rem;
    }
}

/* Footer */
@media only screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-contact {
        align-items: start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr;
    }
}

@media only screen and (min-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Mobil Görünüm İyileştirmeleri */
@media only screen and (max-width: 768px) {
    /* Genel Düzenlemeler */
    .container {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Standart içerik genişliği */
    .service-card,
    .project-card,
    .gallery-item,
    .contact-info,
    .about-text,
    .contact-wrapper,
    .map-container {
        margin: 0 auto;
        width: calc(100% - 30px);
        box-sizing: border-box;
    }

    /* Grid yapıları için düzenleme */
    .services-grid,
    .project-grid,
    .about-features {
        padding: 0;
        width: calc(100% - 30px);
        box-sizing: border-box;
        margin: 0 auto;
    }

    /* Section başlıkları için düzenleme */
    .section-header,
    .about-header,
    .services-header,
    .team-header,
    .gallery-header,
    .contact-header {
        padding: 0;
        width: calc(100% - 30px);
        margin: 0 auto 40px;
        text-align: center;
    }

    /* Slider içerikleri için düzenleme */
    .gallery-content {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .gallery-swiper {
        width: calc(100% - 30px);
        margin: 0 auto;
        padding: 20px 0;
    }
}

@media only screen and (max-width: 768px) {
    .contact-info {
        padding: 30px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        background: var(--secondary-color);
        border-radius: 0;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 165, 0, 0.1);
    }

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item i {
        font-size: 20px;
        color: var(--primary-color);
        background: rgba(255, 165, 0, 0.1);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        flex-shrink: 0;
    }

    .contact-item-content {
        flex: 1;
    }

    .contact-item-content h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--primary-color);
    }

    .contact-item-content p {
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }
}

@media only screen and (max-width: 768px) {
    .references-content span::after {
        display: none;
    }

    .references-content span {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 768px) {
    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .about-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        margin: 0 15px;
    }

    .footer-info {
        max-width: 100%;
        text-align: left;
    }

    .footer-info h3 {
        text-align: left;
    }

    .footer-info p {
        text-align: left;
    }

    .footer-contact {
        align-items: flex-start;
        margin-top: 20px;
    }

    .footer-contact .contact-item {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-contact .contact-item span {
        text-align: left;
    }

    .footer-links {
        text-align: left;
    }

    .footer-links h4 {
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-links h4::after {
        left: 0;
        transform: none;
        margin-left: 0;
    }

    .footer-links ul {
        text-align: left;
    }

    .footer-links ul li {
        text-align: left;
    }

    .footer-links ul li a {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        padding-top: 25px;
        margin: 0 15px;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 15px;
    }

    .footer-copyright {
        text-align: left;
    }
}

@media only screen and (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        display: flex;
        align-items: center;
        position: relative;
    }

    .hero::before {
        transform: scale(1.05);
        opacity: 0.3;
    }

    .hero::after {
        background: linear-gradient(180deg,
            rgba(26, 26, 26, 0.95) 0%,
            rgba(26, 26, 26, 0.85) 50%,
            rgba(255, 165, 0, 0.7) 100%
        );
    }

    .hero-content {
        padding: 20px;
        width: calc(100% - 40px);
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .hero-text {
        padding-left: 15px;
    }

    .hero-text::before {
        width: 3px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .hero h1 span {
        font-size: 1.1rem;
        margin-bottom: 5px;
        letter-spacing: 1.5px;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
        opacity: 0.9;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item {
        padding: 15px 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
    }

    .stat-item i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }

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

    .scroll-down {
        bottom: 25px;
        transform: translateX(-50%) scale(0.9);
    }

    .scroll-down span {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .scroll-line {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .stat-item {
        padding: 10px 8px;
    }

    .stat-item i {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }

    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .stat-text {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
} 

.about-pdf {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.pdf-link i {
    font-size: 2rem;
    color: var(--primary-color);
}

.pdf-link .pdf-text {
    text-align: left;
}

.pdf-link .pdf-text span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2px;
}

.pdf-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.2);
}

@media (max-width: 768px) {
    .pdf-link {
        padding: 12px 20px;
    }
    
    .pdf-link i {
        font-size: 1.5rem;
    }
    
    .pdf-link .pdf-text span {
        font-size: 0.8rem;
    }
}