/* Genel Stil Ayarları */
:root {
    --dark-bg: #10141c;
    --card-bg: #1c222c;
    --gold-primary: #FFB300;
    --gold-light: #FFD54F;
    --text-color: #f0f2f5;
    --text-light: #aeb2b9;
    --border-color: #333;
    --font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

h1, h2, h3, h4 {
    color: var(--text-color);
    font-weight: 600;
}

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

/* Header */
.header {
    background: rgba(16, 20, 28, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 21px;
    font-weight: bold;
    color: var(--gold-primary);
}

.logo i {
    color: var(--gold-light);
    margin-right: 8px;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status {
    color: var(--gold-primary);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.status .available {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 5px var(--gold-primary);
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

.hero h1 span {
    color: var(--gold-primary);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 20px 0;
}

.hero-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.icon-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-color);
    transition: transform 0.3s;
}

.icon-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 15px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    position: relative;
}

.icon-box:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 179, 0, 0.3);
}

.icon-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1; /* ::before'u arka plana al */
}

.icon-box:hover::before {
    opacity: 1;
    border-color: var(--gold-primary);
    animation: pulse-glow 2s infinite;
}

/* Icon'ları ön plana getir */
.icon-box i {
    color: var(--gold-primary);
    margin-right: 10px;
    font-size: 1.5rem;
    position: relative;
    z-index: 2; /* Icon'ları ön plana al */
}

/* Yazıyı da ön plana getir */
.icon-box {
    z-index: 1;
}

.icon-box > *:not(::before) {
    position: relative;
    z-index: 2;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 179, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn.primary {
    background-color: var(--gold-primary);
    color: var(--dark-bg);
    border: 2px solid var(--gold-primary);
}

.btn.primary:hover {
    background-color: var(--gold-light);
    box-shadow: 0 0 10px var(--gold-primary);
    transform: translateY(-3px);
}

.btn.secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn.secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
    transform: translateY(-3px);
}

/* Section Styling */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

/* Bölüm ayırıcı çizgi stili */
.section-divider {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 40px 0;
}

/* Güncellenmiş About Section */
#about {
    padding: 80px 0;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.about-text {
    max-width: 800px;
    text-align: left;
}

.about-text h2 {
    text-align: center;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-text p b {
    color: var(--gold-primary);
}

.about-image i {
    font-size: 150px;
    color: var(--gold-primary);
    background-color: var(--card-bg);
    border-radius: 50%;
    padding: 20px;
    border: 3px solid var(--gold-primary);
    box-shadow: 0 0 20px rgba(255, 179, 0, 0.2);
}

.about-content .btn {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        justify-content: center;
    }
    .about-text {
        text-align: left;
    }
    .about-image {
        margin-left: 40px;
    }
}

/* Skills Section */
.skills {
    padding-top: 40px;
    padding-bottom: 40px;
}

.skills h2 {
    margin-bottom: 20px;
}

.skills-grid, .expertise-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 0;
}

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

.expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
}

.skill-item, .expertise-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.skill-item:hover, .expertise-item:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 179, 0, 0.3);
    z-index: 10;
}

.skill-item::before, .expertise-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-item:hover::before, .expertise-item:hover::before {
    opacity: 1;
    border-color: var(--gold-primary);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 179, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
    }
}

.skill-item i, .expertise-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.skill-item p, .expertise-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 10px 0;
}

.skill-item h4, .expertise-item h4 {
    margin: 0 0 10px;
}

.progress-bar-container {
    background-color: var(--dark-bg);
    border-radius: 10px;
    height: 8px;
    margin-top: 10px;
}

.progress-bar {
    height: 100%;
    background-color: var(--gold-primary);
    border-radius: 10px;
}

.skill-item span {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 600;
    color: var(--gold-primary);
}

/* Testimonials Section */
.testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
}

.quote-box {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.quote-box::before {
    content: '"';
    font-family: Arial, sans-serif;
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.quote-box p {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 80%;
    position: relative;
    z-index: 1;
}

.testimonial-info-main {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-author-main {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: left;
}

.testimonial-author-main .author-details {
    display: flex;
    flex-direction: column;
}

.testimonial-author-main h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author-main small {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}

.testimonial-author-main .company {
    color: var(--gold-primary);
    font-weight: 500;
}

/* Ana referans kutusundaki logo */
.main-author-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-ratings-main {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    margin-top: 10px;
}

.testimonial-ratings-main .rating-info {
    display: flex;
    gap: 20px;
}

.testimonial-ratings-main .rating-item {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.testimonial-ratings-main .rating-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold-primary);
}

.testimonial-ratings-main .rating-item small {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Referans kartları için grid yapısı */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 25px;
    margin-top: 30px;
    padding: 0 50px;
    overflow-x: auto;
}

.testimonial-card {
    background-color: #1a1e26;
    border: 1px solid #2a2e37;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 250px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.testimonial-card.selected {
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.2);
}

/* Küçük kartlardaki logo yer tutucu */
.card-logo-placeholder {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-author-logo img {
    width: 100px;     /* ana testimonial kutusunda daha büyük */
    height: auto;
    object-fit: contain;
}

/* Kart genel: company alta insin */
.testimonial-card {
    display: flex;
    flex-direction: column;
}

/* Logo kutusu: sabit alan + ortalama */
.card-logo-placeholder {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* Logo resmi: taşmadan sığdır (global %100'ü ez) */
.card-logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

/* Ana büyük kutudaki logo için (üst referans) */
.main-author-logo {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-author-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Yıldızlar */
.testimonial-card .star-rating {
    margin: 10px 0;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}
.testimonial-card .star-rating i {
    position: static;
    font-size: 0.95rem;
    color: var(--gold-primary, #f1c40f);
}

/* Metinler */
.testimonial-card h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}
.testimonial-card small {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
}
.testimonial-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

/* Ana büyük kutudaki alıntı metni */
.quote-text-wrapper p {
    text-align: center;
    font-style: italic; /* istersen daha hoş görünür */
    margin: 0 auto;
    max-width: 800px;   /* çok uzun satırlarda okunabilirlik */
}

/* Şirket adı alta yaslansın */
.testimonial-card .company {
    color: var(--gold-primary, #f1c40f);
    font-weight: 500;
    margin-top: auto;
}


/* Portfolio Section */
.portfolio {
    padding-top: 40px;
}

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

.project-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease-in-out;
    position: relative;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 179, 0, 0.3);
    z-index: 10;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
    border-color: var(--gold-primary);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 179, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 179, 0, 0.5);
    }
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.card-header i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-right: 15px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.project-card p {
    margin: 0 0 20px;
}

.technologies, .key-features {
    margin-bottom: 20px;
}

.technologies h4, .key-features h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--gold-primary);
}

.tech-tags span {
    background-color: rgba(255, 179, 0, 0.1);
    color: var(--gold-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 8px;
}

.key-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.key-features li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.key-features li i {
    color: var(--gold-primary);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Proje İstatistikleri için Yeni Stil */
.project-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.stat-item {
    text-align: center;
    flex-grow: 1;
    padding: 0 5px;
    margin-top: -72px;
}

.stat-item.full-width {
    flex-basis: 100%;
    text-align: left;
    margin-top: 0;
    margin-bottom: 10px;
}

.stat-item.full-width h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: normal;
    margin: 0;
}

.stat-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold-primary);
}

.stat-item small {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Kart butonları için yeni stil */
.card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-card {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-card:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--dark-bg);
}

/* Butonların tıklanabilir olmasını garantiler */
.project-card .btn-card {
    position: relative;
    z-index: 11;
}

/* Farenin tıklanabilir olduğunu belirtmesi için */
.btn-card:hover {
    cursor: pointer;
}

/* Responsive Tasarım */
@media (max-width: 1292px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    .nav-menu ul {
        margin-top: 10px;
        gap: 15px;
        justify-content: center;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero-icons {
        flex-direction: column;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Başlık ve Alt Başlıkları Ortala */
.section-title,
.section-subtitle {
    text-align: center;
}

/* Ek Kaydırma Çubuğu Gizleme Stili */
.testimonial-grid::-webkit-scrollbar {
    height: 5px;
}

.testimonial-grid::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

.testimonial-grid::-webkit-scrollbar-track {
    background: transparent;
}

.service-item::before {
    content: "•";
    color: #f59e0b; /* amber-400 */
    margin-right: 0.5rem;
    font-weight: bold;
}
	
.site-footer {
    background-color: #111827;
    border-top: 1px solid #1f2937;
    padding: 2rem 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.footer-logo {
    color: #f59e0b;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.footer-subtitle {
    color: #9ca3af;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-credit {
    color: #6b7280;
    font-size: 0.875rem;
}

.credit-name {
    color: #f59e0b;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

.contact-section {
    --card-bg: rgba(30, 41, 59, 0.5);
    --border-color: #334155;
    --text-color: #e2e8f0;
    --amber-primary: #f59e0b;
    --amber-light: #fbbf24;
    --gray-light: #94a3b8;
    --gray-dark: #475569;
    --green: #10b981;
    --red: #ef4444;
}

.contact-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

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

.contact-section .mb-16 {
    margin-bottom: 4rem;
}

.contact-section .mb-6 {
    margin-bottom: 1.5rem;
}

.contact-section .mb-4 {
    margin-bottom: 1rem;
}

.contact-section .mb-8 {
    margin-bottom: 2rem;
}

.contact-section .mt-4 {
    margin-top: 1rem;
}

.contact-section .mr-2, .contact-section .mr-3, .contact-section .mr-4 {
    margin-right: 0.5rem;
}

.contact-section .mr-3 {
    margin-right: 0.75rem;
}

.contact-section .mr-4 {
    margin-right: 1rem;
}

.contact-section .text-4xl {
    font-size: 2.25rem;
}

.contact-section .text-2xl {
    font-size: 1.5rem;
}

.contact-section .text-xl {
    font-size: 1.25rem;
}

.contact-section .text-lg {
    font-size: 1.125rem;
}

.contact-section .text-sm {
    font-size: 0.875rem;
}

.contact-section .text-xs {
    font-size: 0.75rem;
}

.contact-section .font-bold {
    font-weight: 700;
}

.contact-section .font-semibold {
    font-weight: 600;
}

.contact-section .font-medium {
    font-weight: 500;
}

.contact-section .text-white {
    color: white;
}

.contact-section .text-amber-400 {
    color: var(--amber-primary);
}

.contact-section .text-gray-300 {
    color: var(--gray-light);
}

.contact-section .text-gray-400 {
    color: var(--gray-dark);
}

.contact-section .max-w-3xl {
    max-width: 48rem;
}

.contact-section .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.contact-section .grid {
    display: grid;
}

.contact-section .grid-cols-1 {
    grid-template-columns: 1fr;
}

.contact-section .gap-8 {
    gap: 2rem;
}

.contact-section .gap-3 {
    gap: 0.75rem;
}

.contact-section .space-y-4 > * + * {
    margin-top: 1rem;
}

.contact-section .space-y-3 > * + * {
    margin-top: 0.75rem;
}

.contact-section .space-y-8 > * + * {
    margin-top: 2rem;
}

.contact-section .rounded-lg {
    border-radius: 0.5rem;
}

.contact-section .rounded-md {
    border-radius: 0.375rem;
}

.contact-section .rounded-full {
    border-radius: 9999px;
}

.contact-section .border {
    border-width: 1px;
    border-style: solid;
}

.contact-section .border-gray-700 {
    border-color: var(--border-color);
}

.contact-section .border-amber-500 {
    border-color: var(--amber-primary);
}

.contact-section .shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.contact-section .bg-gray-800 {
    background-color: var(--card-bg);
}

.contact-section .p-6 {
    padding: 1.5rem;
}

.contact-section .p-3 {
    padding: 0.75rem;
}

.contact-section .px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.contact-section .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.contact-section .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.contact-section .py-0_5 {
    padding-top: 0.125rem;
    padding-bottom: 0.125rem;
}

.contact-section .flex {
    display: flex;
}

.contact-section .flex-1 {
    flex: 1;
}

.contact-section .flex-shrink-0 {
    flex-shrink: 0;
}

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

.contact-section .justify-center {
    justify-content: center;
}

.contact-section .justify-between {
    justify-content: space-between;
}

.contact-section .inline-flex {
    display: inline-flex;
}

.contact-section .whitespace-nowrap {
    white-space: nowrap;
}

.contact-section .h-6, .contact-section .h-9, .contact-section .h-10, .contact-section .h-5 {
    height: 1.5rem;
}

.contact-section .h-9 {
    height: 2.25rem;
}

.contact-section .h-10 {
    height: 2.5rem;
}

.contact-section .w-6, .contact-section .w-5, .contact-section .w-2, .contact-section .w-3, .contact-section .w-full {
    width: 1.5rem;
}

.contact-section .w-5 {
    width: 1.25rem;
}

.contact-section .w-2 {
    width: 0.5rem;
}

.contact-section .w-3 {
    width: 0.75rem;
}

.contact-section .w-full {
    width: 100%;
}

.contact-section .h-2 {
    height: 0.5rem;
}

.contact-section .h-3 {
    height: 0.75rem;
}

.contact-section .transition-all {
    transition: all 0.3s ease;
}

.contact-section .transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.contact-section .duration-300 {
    transition-duration: 0.3s;
}

.contact-section .duration-200 {
    transition-duration: 0.2s;
}

.contact-section .hover\:border-amber-500:hover {
    border-color: var(--amber-primary);
}

.contact-section .hover\:bg-amber-500:hover {
    background-color: var(--amber-primary);
}

.contact-section .hover\:bg-gray-700:hover {
    background-color: rgba(51, 65, 85, 0.7);
}

.contact-section .hover\:text-accent-foreground:hover {
    color: var(--text-color);
}

.contact-section .group:hover .group-hover\:text-amber-400 {
    color: var(--amber-primary);
}

.contact-section .ring-2 {
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.contact-section .bg-amber-500 {
    background-color: var(--amber-primary);
}

.contact-section .bg-amber-500\/20 {
    background-color: rgba(245, 158, 11, 0.2);
}

.contact-section .bg-amber-500\/10 {
    background-color: rgba(245, 158, 11, 0.1);
}

.contact-section .bg-gray-700 {
    background-color: rgba(51, 65, 85, 0.5);
}

.contact-section .bg-gray-700\/50 {
    background-color: rgba(51, 65, 85, 0.5);
}

.contact-section .bg-green-400 {
    background-color: var(--green);
}

.contact-section .bg-red-400 {
    background-color: var(--red);
}

.contact-section .text-black {
    color: black;
}

.contact-section .animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.contact-section .focus-visible\:outline-none:focus-visible {
    outline: none;
}

.contact-section .disabled\:pointer-events-none:disabled {
    pointer-events: none;
}

.contact-section .disabled\:opacity-50:disabled {
    opacity: 0.5;
}

/* Custom button styles */
.contact-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.25rem;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid;
    background-color: transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-section .btn-amber {
    border-color: rgba(245, 158, 11, 0.5);
    color: var(--amber-primary);
}

.contact-section .btn-amber:hover {
    background-color: rgba(245, 158, 11, 0.1);
}

.contact-section .btn-gray {
    border-color: var(--border-color);
    color: var(--gray-light);
}

.contact-section .btn-gray:hover {
    background-color: rgba(51, 65, 85, 0.7);
}

.contact-section .btn-primary {
    background: linear-gradient(to right, var(--amber-primary), #d97706);
    color: black;
    font-weight: 600;
    border: none;
    height: 2.5rem;
    padding: 0 1rem;
    width: 100%;
}

.contact-section .btn-primary:hover {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
}

.contact-section .badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid;
    padding: 0.125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--amber-primary);
    border-color: rgba(245, 158, 11, 0.5);
}

/* Grid düzeni için - DÜZELTİLDİ */
.contact-section .contact-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-section .contact-grid-container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
    
    .contact-section .contact-left-column {
        grid-column: 1;
    }
    
    .contact-section .contact-right-column {
        grid-column: 2;
    }
}

.contact-section .contact-right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-section .bg-gray-900 { background-color: #111827; }
.contact-section .border-t { border-top-width: 1px; }
.contact-section .border-gray-800 { border-color: #1f2937; }
.contact-section .py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.contact-section .flex-col { flex-direction: column; }
.contact-section .text-gray-500 { color: #6b7280; }

/* Container düzeni */
.contact-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* FontAwesome icon düzeltmeleri */
.contact-section .fas,
.contact-section .fab {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif;
    font-weight: 900;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.contact-section .fab {
    font-family: 'Font Awesome 6 Brands', sans-serif;
}

@media (min-width: 768px) {
    .contact-section .md\:flex-row {
        flex-direction: row;
    }
    .contact-section .md\:mb-0 {
        margin-bottom: 0;
    }
    .contact-section .md\:grid-cols-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-section .lg\:grid-cols-3 {
        grid-template-columns: 2fr 1fr;
    }
    
    .contact-section .text-4xl {
        font-size: 3rem;
    }
    
    .contact-section .md\:text-5xl {
        font-size: 3rem;
    }
}

@media (max-width: 1023px) {
    .contact-section .grid-cols-1 {
        grid-template-columns: 1fr;
    }
}


---
/* Oyun Referansları Sayfası için Özel Stiller */

.game-section {
    margin-bottom: 40px;
}

.game-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, border-color 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--gold-primary);
    box-shadow: 0 6px 12px rgba(255, 179, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Sayfa başlığı için üst boşluk ekleme */
#game-gallery {
    padding-top: 120px; /* Sabit header'ın altında kalması için */
}

/* Responsive Düzenleme */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

        /* Lightbox Overlay */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: none; /* Initially hidden */
            justify-content: center;
            align-items: center;
            z-index: 100;
        }

        /* Lightbox Content */
        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(255, 179, 0, 0.5);
            animation: fadeInScale 0.3s ease-out;
        }

        .lightbox-content img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        /* Close Button */
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            color: #fff;
            font-size: 40px;
            font-weight: bold;
            transition: color 0.3s ease-in-out;
            cursor: pointer;
            z-index: 101; /* Ensure button is on top */
        }

        .lightbox-close:hover {
            color: var(--gold-primary);
        }

        /* Fade-in Animation */
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* New styling for the section title */
        .section-title.stylized {
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            color: #fff; /* or your preferred text color */
            position: relative;
            margin-bottom: 20px;
        }

        .section-title.stylized::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ffb300;
            box-shadow: 0 0 10px #ffb300, 0 0 20px #ffb300;
            border-radius: 2px;
        }
        
        /* New styling for game logos */
        .game-logo {
            display: block;
            max-width: 150px;
            height: auto;
            margin: 0 auto 15px; /* Center the logo and add space below */
        }
		
/* Genel modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px); /* Arka plan blur */
    overflow: hidden; /* modal açıkken scroll olmasın */
}

/* Gallery modal içeriği */
.modal-content {
    position: relative;
    background: transparent;
    margin: 6% auto;
    padding: 0;
    max-width: 950px;
    border-radius: 0;
    box-shadow: none;
    animation: fadeIn 0.3s ease-out;
}

/* Kapatma butonu */
.gallery-close {
    position: absolute;
    top: -55px;
    right: 4px;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    z-index: 1100;
    transition: color 0.2s;
}

#lightboxModal .gallery-close {
    top: 15px;                 /* yukarıdan boşluk */
    left: 50%;                 /* ortala */
    right: auto;               
    transform: translateX(-50%);
    font-size: 22px;           /* X küçült, kutuya sığsın */
    color: #fff;
    background: rgba(0,0,0,0.6); /* yarı şeffaf arka plan */
    width: 40px;               /* kutu boyutu */
    height: 40px;
    line-height: 40px;         /* X'i dikey ortalar */
    text-align: center;
    border-radius: 50%;        /* yuvarlak kutu */
    cursor: pointer;
    z-index: 2100;
    transition: all 0.3s ease;
    text-shadow: none;         /* sade görünsün */
}

#lightboxModal .gallery-close:hover {
    background: #ff4757;        /* hover'da kırmızı arka plan */
    color: #fff;
    transform: translateX(-50%) scale(1.1); /* hover'da biraz büyüsün */
}


.gallery-close:hover {
    color: #ff4757;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
}
.gallery-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

/* Responsive grid */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Code modal */
.code-modal {
    display: none; 
    position: fixed; 
    z-index: 1500; /* gallery’den biraz daha üstte */
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.code-modal-content {
    position: relative;
    background: #1e1e1e;
    margin: 5% auto;
    padding: 25px;
    max-width: 800px;
    border-radius: 8px;
    color: #eee;
    font-family: monospace;
    overflow-x: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}
.code-close {
    position: absolute;
    top: 10px; right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}
pre {
    margin: 0;
    white-space: pre-wrap;
}
code {
    color: #9cdcfe;
}
.code-note {
    font-size: 13px; 
    color: #888; 
    margin-top: 10px;
}

/* Lightbox (büyütülen resim) */
#lightboxModal {
    z-index: 2000; /* her şeyin üstünde */
}
#lightboxModal .modal-content.enlarged {
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: none;
    border: none;
    max-width: 95%;
    max-height: 95%;
}
#lightboxImg {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

