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

:root {
    --primary-color: #fb923c;
    --secondary-color: #f97316;
    --accent-color: #ff8c42;
    --dark-color: #ea580c;
    --light-color: #fff7ed;
    --text-color: #9a3412;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    flex-direction: column;
    padding: 1rem 0 0 0;
    gap: 0;
}

.nav-wrapper > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

/* Alt Menü */
.sub-nav-wrapper {
    width: 100%;
    background: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.sub-nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.sub-nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
}

.sub-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

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

.sub-nav-menu .dropdown {
    position: relative;
}

.sub-nav-menu .dropdown > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 5px;
}

.sub-nav-menu .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.nav-login-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo h1 {
    font-size: 1.3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.75rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    padding: 0.3rem 0.5rem;
}

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

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

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

/* Dropdown Menu */
.nav-menu li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    max-width: 800px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px;
    margin-top: 8px;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2px;
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
    min-width: 180px;
}

.dropdown-menu a {
    display: block;
    padding: 6px 12px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.3;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 18px;
    transform: translateX(3px);
}

.dropdown-menu a::after {
    display: none;
}

/* Dropdown Menu Scrollbar Styling */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding-top: 2cm;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

/* Workshop Setup Section */
.workshop-setup {
    padding: 100px 0;
    background: var(--white);
}

.workshop-content {
    margin-top: 50px;
}

.workshop-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    font-weight: 700;
}

.benefit-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.benefit-list li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.workshop-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-box {
    background: var(--gradient);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 5px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(249, 115, 22, 0.4);
}

.stat-box h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-box p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-color);
    opacity: 0.8;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-placeholder {
    aspect-ratio: 1;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    padding: 20px;
    text-align: center;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-color);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-color);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

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

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-color);
    opacity: 0.8;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* Page Header */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Page */
.about-page {
    padding: 80px 0;
    background: var(--white);
}

.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-main h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-main h2:first-child {
    margin-top: 0;
}

.about-main p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
    opacity: 0.9;
}

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

.value-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-item p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item-large {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item-large h3 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-item-large p {
    color: var(--text-color);
    font-weight: 500;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: var(--light-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: auto;
    height: auto;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin: 15px 0;
    color: var(--dark-color);
}

.blog-content p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-content h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 600;
}

.blog-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.blog-content ul li {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 8px;
}

.blog-content strong {
    color: var(--dark-color);
    font-weight: 600;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

/* Blog Modal */
.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.blog-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.blog-modal-header {
    padding: 30px;
    border-bottom: 2px solid var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1;
}

.blog-modal-header h2 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.8rem;
    flex: 1;
}

.blog-modal-close {
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    margin-left: 20px;
}

.blog-modal-close:hover {
    color: var(--primary-color);
}

.blog-modal-body {
    padding: 30px;
}

.blog-modal-date {
    display: inline-block;
    background: var(--light-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.blog-modal-body h3 {
    color: var(--dark-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.blog-modal-body p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-modal-body ul {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 20px;
}

.blog-modal-body ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .blog-modal {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .blog-modal-header {
        padding: 20px;
    }
    
    .blog-modal-header h2 {
        font-size: 1.4rem;
    }
    
    .blog-modal-body {
        padding: 20px;
    }
}

/* Login Section */
.login-section {
    padding: 120px 0 80px;
    background: var(--light-color);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.login-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: var(--secondary-color);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.login-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.login-divider span {
    background: var(--white);
    padding: 0 15px;
    color: var(--text-color);
    opacity: 0.7;
    position: relative;
}

.login-info {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.login-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

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

.feature-list li {
    padding: 12px 0;
    color: var(--text-color);
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.quick-register-cta {
    margin-top: 30px;
    padding: 25px;
    background: var(--gradient);
    border-radius: 15px;
    text-align: center;
    color: white;
}

.quick-register-cta h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.quick-register-cta p {
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
}

.quick-register-cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.quick-register-cta .btn:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.quick-register-cta-section {
    padding: 60px 0;
    background: var(--light-color);
}

.quick-register-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.quick-register-cta-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-register-cta-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
}

.btn-large {
    padding: 15px 50px;
    font-size: 1.1rem;
}

.nav-login-wrapper .nav-login {
    background: var(--gradient);
    color: var(--white) !important;
    padding: 6px 15px !important;
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 0.75rem !important;
    font-weight: 500;
    white-space: nowrap;
}

.nav-login-wrapper .nav-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.nav-login-wrapper .nav-login::after {
    display: none;
}

/* Machines Section */
.machines-section {
    padding: 80px 0;
    background: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.tab-btn.active {
    background: var(--gradient);
    border-color: transparent;
    color: var(--white);
}

.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.machine-card {
    background: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.machine-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.machine-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.machine-content {
    padding: 30px;
}

.machine-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.machine-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.machine-description {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.machine-specs {
    list-style: none;
    margin-bottom: 20px;
}

.machine-specs li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.machine-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Package Section */
.package-section {
    padding: 80px 0;
    background: var(--light-color);
}

.package-badge {
    text-align: center;
    margin-bottom: 40px;
}

.package-badge span {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

.package-main {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.package-image {
    text-align: center;
    margin-bottom: 40px;
}

.package-placeholder {
    background: var(--gradient);
    border-radius: 20px;
    padding: 60px;
    color: var(--white);
    display: inline-block;
    min-width: 300px;
}

.package-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.package-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.package-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.package-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 40px;
}

.package-includes {
    margin-top: 40px;
}

.package-includes h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
}

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

.package-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.package-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.item-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.item-details > p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.item-specs {
    list-style: none;
    padding-left: 0;
}

.item-specs li {
    padding: 6px 0;
    color: var(--text-color);
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Atölye Başlangıç Paketi Section */
.atolye-baslangic-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.atolye-paket-content {
    max-width: 1200px;
    margin: 0 auto;
}

.atolye-paket-main {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.atolye-paket-badge {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.atolye-paket-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

.atolye-paket-description {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.atolye-paket-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

.atolye-paket-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.atolye-feature-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.atolye-feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.atolye-feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.atolye-feature-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.atolye-feature-card p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
}

.atolye-finansal-opsiyonlar {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.atolye-finansal-opsiyonlar h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.finansal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.finansal-card {
    background: var(--light-color);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.finansal-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.2);
}

.finansal-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.finansal-card h4 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.finansal-card > p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

.finansal-list {
    list-style: none;
    padding: 0;
}

.finansal-list li {
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
}

.finansal-list li:last-child {
    border-bottom: none;
}

.atolye-cta-box {
    background: var(--gradient);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.3);
}

.atolye-cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.atolye-cta-box p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.atolye-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.atolye-cta-buttons .btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.atolye-cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.atolye-cta-buttons .btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.atolye-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.atolye-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Responsive Design for Atölye Section */
@media (max-width: 768px) {
    .atolye-paket-main,
    .atolye-finansal-opsiyonlar {
        padding: 30px 20px;
    }
    
    .atolye-paket-info h3 {
        font-size: 1.4rem;
    }
    
    .atolye-paket-features {
        grid-template-columns: 1fr;
    }
    
    .finansal-grid {
        grid-template-columns: 1fr;
    }
    
    .atolye-cta-box {
        padding: 35px 20px;
    }
    
    .atolye-cta-box h3 {
        font-size: 1.6rem;
    }
    
    .atolye-cta-box p {
        font-size: 1rem;
    }
    
    .atolye-cta-buttons {
        flex-direction: column;
    }
    
    .atolye-cta-buttons .btn-large {
        width: 100%;
    }
}

/* Bayi Benefits Section */
.bayi-benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card-large {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-align: center;
}

.benefit-card-large > p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
}

.benefit-features {
    list-style: none;
    padding-left: 0;
}

.benefit-features li {
    padding: 10px 0;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-features li:last-child {
    border-bottom: none;
}

/* Application Section */
.application-section {
    padding: 80px 0;
    background: var(--light-color);
}

.application-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.application-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.advantage-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.advantage-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.whatsapp-info {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-top: 30px;
}

.whatsapp-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 10px;
    color: var(--white);
    margin-bottom: 15px;
}

.whatsapp-icon {
    font-size: 2rem;
}

.whatsapp-badge strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.whatsapp-badge p {
    margin: 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

.whatsapp-desc {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.application-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-color);
    opacity: 0.8;
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.application-form .form-group {
    margin-bottom: 20px;
}

.application-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea,
.application-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.application-form textarea {
    resize: vertical;
}

.application-form select {
    cursor: pointer;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-icon-small {
    font-size: 1.2rem;
}

/* WhatsApp CTA Section */
.whatsapp-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    text-align: center;
}

.whatsapp-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.whatsapp-cta-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.whatsapp-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.whatsapp-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-whatsapp {
    background: var(--white);
    color: #25D366;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp span {
    font-size: 1.3rem;
}

.whatsapp-status {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Services Page */
.services-page {
    padding: 80px 0;
    background: var(--light-color);
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-page-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.service-page-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-page-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-page-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-page-card p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Service Cities Section */
.service-cities-section {
    padding: 80px 0;
    background: var(--light-color);
}

.service-cities-info {
    text-align: center;
    margin-bottom: 40px;
}

.service-cities-info p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.service-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-city-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-city-card .city-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.btn-whatsapp-service {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-whatsapp-service .btn-text {
    font-size: 0.75rem;
}

.service-label {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

.btn-whatsapp-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.istanbul-districts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.districts-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Jobs Section */
.jobs-section {
    padding: 80px 0;
    background: var(--light-color);
}

.jobs-info {
    text-align: center;
    margin-bottom: 40px;
}

.jobs-description {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.city-card {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.city-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.city-jobs {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.jobs-count {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jobs-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-color);
    float: right;
    font-size: 22px;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

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

.modal-header {
    padding: 15px 20px 10px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-subtitle {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.8rem;
}

.modal-body {
    padding: 15px 20px;
    max-height: calc(95vh - 120px);
    overflow-y: auto;
}

/* İlçe grid scrollbar */
.districts-grid::-webkit-scrollbar {
    width: 6px;
}

.districts-grid::-webkit-scrollbar-track {
    background: var(--light-color);
    border-radius: 10px;
}

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

.districts-grid::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.restricted-access {
    text-align: center;
    padding: 40px 20px;
}

.restricted-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.restricted-access h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.restricted-access p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    min-width: 180px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-content .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.cta-content .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

/* Yasal Bilgilendirme Linkleri */
.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.legal-links a::after {
    content: '|';
    margin-left: 12px;
    opacity: 0.5;
}

.legal-links a:last-child::after {
    display: none;
}

.legal-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Yasal Linkler Responsive */
@media (max-width: 768px) {
    .legal-links {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .legal-links a {
        font-size: 0.8rem;
        padding: 3px 0;
    }
    
    .legal-links a::after {
        display: none;
    }
    
    .legal-links a:not(:last-child)::after {
        content: '';
        display: inline-block;
        width: 4px;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        margin-left: 8px;
        margin-right: 8px;
        vertical-align: middle;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.admin-link-footer {
    display: inline-block;
    margin-left: 15px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-link-footer:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Daily Notification CTA Section */
.daily-notification-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c5a 100%);
    color: var(--white);
    margin-top: 0;
}

.daily-notification-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.daily-notification-cta-icon {
    margin-bottom: 20px;
}

.daily-notification-cta-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.daily-notification-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.daily-notification-cta-content .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.daily-notification-cta-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--white) !important;
    color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .daily-notification-cta-section {
        padding: 40px 20px;
    }
    
    .daily-notification-cta-content h2 {
        font-size: 1.5rem;
    }
    
    .daily-notification-cta-content p {
        font-size: 1rem;
    }
    
    .daily-notification-cta-content .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Email Notification Section */
.email-notification-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.email-notification-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.email-notification-content {
    text-align: center;
}

.email-notification-icon {
    margin-bottom: 20px;
}

.email-notification-content h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.email-notification-content > p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    opacity: 0.8;
}

.email-notification-form {
    text-align: left;
    margin-top: 30px;
}

.email-notification-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.email-notification-form .form-group {
    margin-bottom: 20px;
}

.email-notification-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.email-notification-form input,
.email-notification-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-color);
}

.email-notification-form input:focus,
.email-notification-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.email-notification-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.email-notification-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.email-notification-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.email-notification-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .email-notification-card {
        padding: 30px 20px;
    }
    
    .email-notification-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .email-notification-content h3 {
        font-size: 1.5rem;
    }
}

/* SEO Keywords Section */
.seo-keywords-section {
    background: transparent;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.seo-keywords-title {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.seo-keywords-content {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-keywords-text {
    color: var(--text-color);
    font-size: 0.75rem;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
    padding: 0 20px;
    opacity: 0.8;
}

.seo-keywords-text strong {
    color: var(--text-color);
    font-weight: 600;
    opacity: 1;
}

/* Responsive SEO Keywords */
@media (max-width: 768px) {
    .seo-keywords-section {
        padding: 20px 0;
    }
    
    .seo-keywords-title {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .seo-keywords-text {
        font-size: 0.7rem;
        line-height: 1.6;
        padding: 0 15px;
    }
}

/* Institutions Grid Responsive */
@media (max-width: 1400px) {
    .institutions-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 1100px) {
    .institutions-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .institutions-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
}

@media (max-width: 480px) {
    .institutions-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Tişört Baskı Info Section */
.tisort-info-section {
    padding: 80px 0;
    background: var(--light-color);
}

.info-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.info-article {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-article h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-article h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 30px 0 15px 0;
}

.info-article h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 20px 0 10px 0;
}

.info-article > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.info-method {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.info-method h4 {
    color: var(--dark-color);
    margin-top: 0;
}

.info-method p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-method ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.info-method ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.info-method ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.info-method ul li strong {
    color: var(--dark-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
    background: var(--gradient);
    color: var(--white);
}

.comparison-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-color);
}

.comparison-table tbody tr:hover {
    background: var(--light-color);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--dark-color);
}

.info-conclusion {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    border-left: 4px solid var(--secondary-color);
}

.info-conclusion h4 {
    color: var(--secondary-color);
    margin-top: 0;
}

.info-conclusion p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 10px 0 0 0;
}

.info-conclusion p strong {
    color: var(--dark-color);
}

/* Responsive Tişört Info Section */
@media (max-width: 768px) {
    .tisort-info-section {
        padding: 40px 0;
    }
    
    .info-article {
        padding: 25px 20px;
    }
    
    .info-article h2 {
        font-size: 1.5rem;
    }
    
    .info-article h3 {
        font-size: 1.3rem;
    }
    
    .info-article h4 {
        font-size: 1.1rem;
    }
    
    .info-method {
        padding: 20px;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .nav-login-wrapper {
        display: none;
    }

    .nav-menu.active ~ .nav-login-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        background: var(--white);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .sub-nav-wrapper {
        padding: 0.3rem 0;
    }
    
    .sub-nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
        padding: 0 20px;
    }
    
    .sub-nav-menu li {
        width: 100%;
    }
    
    .sub-nav-menu .dropdown-menu {
        left: 0;
        transform: none;
        position: static;
        display: none;
        max-width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .sub-nav-menu .dropdown:hover .dropdown-menu {
        display: grid;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

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

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

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

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

    .workshop-benefits {
        grid-template-columns: 1fr;
    }

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

    .benefit-card {
        padding: 30px;
    }

    .stat-box h3 {
        font-size: 2rem;
    }
}

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .workshop-stats {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-icon {
        font-size: 3.5rem;
    }

    .login-wrapper {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .category-tabs {
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .package-main {
        padding: 30px 20px;
    }

    .package-item {
        flex-direction: column;
        text-align: center;
    }

    .item-icon {
        margin: 0 auto 15px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .application-wrapper {
        grid-template-columns: 1fr;
    }

    .application-form .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .workshop-stats {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-icon {
        font-size: 3.5rem;
    }

    .login-card,
    .login-info {
        padding: 30px 20px;
    }

    .machine-content {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .package-content h2 {
        font-size: 1.8rem;
    }

    .package-placeholder {
        padding: 40px 20px;
        min-width: auto;
    }

    .package-icon {
        font-size: 3rem;
    }

    .benefit-card-large {
        padding: 25px;
    }

    .benefit-icon-large {
        font-size: 3rem;
    }

    .application-form-card {
        padding: 25px;
    }

    .whatsapp-cta h2 {
        font-size: 1.5rem;
    }

    .quick-register-section {
        padding: 60px 0;
    }

    .quick-register-card {
        max-width: 800px;
        margin: 0 auto;
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .quick-register-card h2 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        text-align: center;
    }

    .quick-register-card > p {
        text-align: center;
        color: var(--text-color);
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    .quick-register-form {
        margin-top: 20px;
    }

    .quick-register-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .quick-register-form .form-group {
        margin-bottom: 0;
    }

    .quick-register-form input,
    .quick-register-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
        transition: all 0.3s ease;
    }

    .quick-register-form input:focus,
    .quick-register-form textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    }

    .quick-register-form textarea {
        resize: vertical;
    }

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

        .quick-register-card {
            padding: 25px;
            border-radius: 15px;
        }

        .quick-register-card h2 {
            font-size: 1.5rem;
        }

        .quick-register-form .form-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }
    }

    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .city-card {
        padding: 15px;
    }

    .city-name {
        font-size: 1rem;
    }

    .jobs-count {
        font-size: 1.5rem;
    }

    .jobs-label {
        font-size: 0.75rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: transparent;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}

/* İlçe Modal Stilleri */
.districts-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.city-districts-modal {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease;
}

.modal-header-districts {
    position: sticky;
    top: 0;
    background: var(--gradient);
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.modal-header-districts h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-close-districts {
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    user-select: none;
}

.modal-close-districts:hover {
    transform: rotate(90deg);
}

.districts-grid-modal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
}

.districts-grid-modal .service-city-card {
    margin: 0;
}

@media (max-width: 768px) {
    .districts-modal-overlay {
        padding: 10px;
    }

    .city-districts-modal {
        max-height: 95vh;
        border-radius: 15px;
    }

    .modal-header-districts {
        padding: 15px 20px;
        border-radius: 15px 15px 0 0;
    }

    .modal-header-districts h2 {
        font-size: 1.3rem;
    }

    .modal-close-districts {
        font-size: 2rem;
    }

    .districts-grid-modal {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
        padding: 20px;
    }
}

/* Hemen Kayıt Olun Modal Stilleri */
.quick-register-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
}

.quick-register-modal {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease;
}

.quick-register-modal-header {
    position: sticky;
    top: 0;
    background: var(--gradient);
    color: white;
    padding: 20px 30px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.quick-register-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.quick-register-modal-close {
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
    user-select: none;
    color: white;
}

.quick-register-modal-close:hover {
    transform: rotate(90deg);
}

.quick-register-modal-body {
    padding: 30px;
}

.quick-register-modal-body > p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1rem;
}

.quick-register-modal-body .quick-register-form {
    margin-top: 0;
}

@media (max-width: 768px) {
    .quick-register-modal-overlay {
        padding: 10px;
    }

    .quick-register-modal {
        max-height: 95vh;
        border-radius: 15px;
    }

    .quick-register-modal-header {
        padding: 15px 20px;
        border-radius: 15px 15px 0 0;
    }

    .quick-register-modal-header h2 {
        font-size: 1.3rem;
    }

    .quick-register-modal-close {
        font-size: 2rem;
    }

    .quick-register-modal-body {
        padding: 20px;
    }
}

/* Referanslar Sayfası Stilleri */
.references-section {
    padding: 80px 0;
    background: var(--light-color);
}

.city-reference-group {
    margin-bottom: 60px;
}

.city-reference-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--gradient);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.reference-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.reference-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    text-align: center;
}

.reference-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    text-align: center;
}

.reference-location {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: center;
}

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

.references-cta {
    background: var(--gradient);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
}

.references-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.references-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.references-cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
}

.references-cta .btn:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }

    .city-reference-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

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

    .reference-card {
        padding: 20px;
    }

    .reference-icon {
        font-size: 2.5rem;
    }

    .reference-card h4 {
        font-size: 1.1rem;
    }

    .references-cta {
        padding: 40px 20px;
    }

    .references-cta h3 {
        font-size: 1.5rem;
    }

    .references-cta p {
        font-size: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: #FFF;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* Scroll Buttons */
.scroll-button {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-button.show {
    opacity: 1;
    visibility: visible;
}

.scroll-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--dark-color);
}

.scroll-button:active {
    transform: translateY(-1px);
}

.scroll-top {
    bottom: 90px;
}

.scroll-bottom {
    bottom: 30px;
}

/* iOS ve Android mobil optimizasyonları */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Touch device optimizasyonları */
.touch-device * {
    -webkit-tap-highlight-color: rgba(251, 146, 60, 0.2);
}

.touch-device button,
.touch-device a {
    -webkit-tap-highlight-color: rgba(251, 146, 60, 0.3);
}

/* iOS safe area support */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .container {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Android Chrome address bar fix */
@media (max-width: 768px) {
    html {
        height: -webkit-fill-available;
    }
    
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .scroll-button {
        width: 45px;
        height: 45px;
        right: 15px;
        font-size: 1rem;
    }
    
    .scroll-top {
        bottom: 80px;
    }
    
    .scroll-bottom {
        bottom: 25px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        bottom: max(15px, env(safe-area-inset-bottom));
    }
    
    /* Mobil navigasyon iyileştirmeleri */
    .nav-menu {
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobil form elemanları */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea,
    select {
        font-size: 16px !important; /* iOS zoom önleme */
        -webkit-appearance: none;
        border-radius: 8px;
    }
    
    /* Mobil butonlar */
    button,
    .btn {
        min-height: 44px; /* Touch target size */
        min-width: 44px;
        padding: 12px 20px;
    }
    
    /* Mobil linkler */
    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* Reklam Slayt Stilleri */
.ad-slider-section {
    padding: 20px 0;
    background: var(--light-color);
}

.ad-slider-container {
    max-width: 600px;
    margin: 0 auto;
}

.ad-slider-wrapper {
    position: relative;
    width: 100%;
}

.ad-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 1; /* 600px genişlik için 200px yükseklik (3:1 oranı) */
    max-height: 200px;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.ad-slide.active {
    opacity: 1;
    z-index: 2;
}

.ad-slide-link {
    text-decoration: none;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ad-slide-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.ad-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.ad-slide-link:hover .ad-slide-image {
    transform: scale(1.05);
}

.ad-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    padding: 20px 15px 15px;
    color: white;
    border-radius: 0 0 10px 10px;
}

.ad-slide-overlay p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    line-height: 1.3;
}

.ad-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.ad-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.ad-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .ad-slider-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .ad-slider-track {
        aspect-ratio: 3 / 1;
        max-height: 180px;
    }
    
    .ad-slide-overlay {
        padding: 15px 12px 12px;
    }
    
    .ad-slide-overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ad-slider-track {
        aspect-ratio: 3 / 1;
        max-height: 150px;
    }
    
    .ad-slide-overlay {
        padding: 12px 10px 10px;
    }
    
    .ad-slide-overlay p {
        font-size: 0.9rem;
    }
}

/* Kayan Baskı Hizmetleri Stilleri - Modern ve Kompakt */
.scrolling-services-section {
    padding: 6px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    background-size: 200% 100%;
    animation: gradientShift 8s ease infinite;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.scrolling-services-section::before,
.scrolling-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scrolling-services-section::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.scrolling-services-section::after {
    right: 0;
    background: linear-gradient(to left, var(--secondary-color), transparent);
}

.scrolling-services-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scrolling-services-track {
    display: flex;
    gap: 12px;
    animation: scrollServices 35s linear infinite;
    width: fit-content;
}

.scrolling-services-track:hover {
    animation-play-state: paused;
}

.scrolling-service-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.65rem;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 5px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.scrolling-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.6s ease;
}

.scrolling-service-item:hover::before {
    left: 100%;
}

.scrolling-service-item:hover {
    background: white;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 0.7rem;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

.scrolling-service-item:hover .service-icon {
    transform: rotate(360deg) scale(1.15);
}

.service-name {
    font-weight: 500;
    transition: color 0.25s ease;
    font-size: 0.65rem;
    letter-spacing: 0.2px;
}

.service-arrow {
    font-size: 0.65rem;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: bold;
}

.scrolling-service-item:hover .service-arrow {
    opacity: 1;
    transform: translateX(3px);
    color: var(--primary-color);
}

@keyframes scrollServices {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scrolling-services-section {
        padding: 5px 0;
    }
    
    .scrolling-services-track {
        gap: 10px;
        animation-duration: 30s;
    }
    
    .scrolling-service-item {
        padding: 3px 9px;
        font-size: 0.6rem;
        gap: 4px;
    }
    
    .service-icon {
        font-size: 0.65rem;
    }
    
    .service-name {
        font-size: 0.6rem;
    }
    
    .service-arrow {
        font-size: 0.6rem;
    }
    
    .scrolling-services-section::before,
    .scrolling-services-section::after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .scrolling-services-section {
        padding: 4px 0;
    }
    
    .scrolling-services-track {
        gap: 8px;
        animation-duration: 25s;
    }
    
    .scrolling-service-item {
        padding: 3px 8px;
        font-size: 0.55rem;
        gap: 3px;
        border-radius: 18px;
    }
    
    .service-icon {
        font-size: 0.6rem;
    }
    
    .service-name {
        font-size: 0.55rem;
    }
    
    .service-arrow {
        font-size: 0.55rem;
    }
    
    .scrolling-services-section::before,
    .scrolling-services-section::after {
        width: 25px;
    }
}

/* Küçük ekranlar için ek optimizasyonlar */
@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    h1 {
        font-size: 1.75rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
    }
    
    /* Grid düzenleri mobilde tek sütun */
    .stats-grid,
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Landscape mod optimizasyonları */
@media (max-width: 768px) and (orientation: landscape) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        max-height: calc(100vh - 80px);
    }
}

