/* ================================================
   MODERN GRAFIK TASARIM SİTESİ - OPTIMIZE CSS
   ================================================ */

:root {
    --primary: #86dc08;
    --primary-dark: #66d600;
    --secondary: #ec4899;
    --accent: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #fff;
    --gradient-1: linear-gradient(135deg, #9ce10e 0%, #66d600 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.05);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Quicksand", sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ================ HEADER ================ */
header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all .3s;
}

.header-top {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: .9;
    transition: opacity .3s;
}

.contact-item:hover {
    opacity: 1;
}

.header-main {
    padding: 15px 0;
    position: relative; /* Hizalama için kritik */
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Mobil buton hizası için gerekli */
}

.logo {
    font-size: 28px;
    font-weight: 900;
    font-family: "Quicksand", sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1002; 
    position: relative;
}

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

.main-nav {
    display: flex;
    gap: 5px;
    position: relative;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all .3s;
    font-size: 15px;
}

.nav-link:hover {
    background: var(--light);
    color: var(--primary);
}

/* HAMBURGER - MASAÜSTÜNDE GİZLE */
.mobile-toggle {
    display: none; /* Varsayılan olarak gizli */
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3000;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all .3s;
}

/* ================ HERO ================ */
.hero {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: .9;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: .8;
    transition: opacity .3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    font-family: "Quicksand", sans-serif;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: .95;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s;
    font-size: 16px;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

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

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

/* ================ SECTION HEADER ================ */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    font-family: "Quicksand", sans-serif;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ================ SERVICES ================ */
.services-section {
    padding: 90px 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: all .4s;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap .3s;
}

.service-link:hover {
    gap: 12px;
}

/* ================ PORTFOLIO ================ */
.portfolio-section {
    padding: 90px 0;
    background: var(--light);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 26px;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all .4s;
}

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

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity .4s;
}

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

.portfolio-cat {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
}

.view-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}

.view-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: var(--white);
}

/* ================ MODAL ================ */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

/* ================ CONTENT SECTION ================ */
.content-section {
    padding: 90px 0;
    background: var(--white);
}

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

.content-intro {
    background: linear-gradient(135deg, rgba(99,102,241,.08) 0%, rgba(236,72,153,.08) 100%);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    font-size: 17px;
    line-height: 1.8;
}

.main-content h2 {
    font-size: 34px;
    font-weight: 800;
    font-family: "Quicksand", sans-serif;
    color: var(--dark);
    margin: 45px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-content h2 i {
    font-size: 28px;
    color: var(--primary);
}

.main-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 25px 0 12px;
}

.main-content p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 16px;
    color: var(--dark-light);
}

/* ================ FEATURES ================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-box {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all .3s;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: transform .4s;
}

.gradient-1 { background: var(--gradient-1); }
.gradient-2 { background: var(--gradient-2); }
.gradient-3 { background: var(--gradient-3); }
.gradient-4 { background: var(--gradient-4); }

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(360deg);
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

/* ================ PROCESS ================ */
.process-section {
    margin: 50px 0;
}

.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--gray);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    background: var(--light);
    padding: 20px 25px;
    border-radius: 12px;
    transition: all .3s;
}

.step-item:hover .step-content {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray);
    margin: 0;
}

/* ================ INTERNAL LINKS ================ */
.internal-links {
    margin: 50px 0;
}

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

.internal-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
    font-weight: 600;
    transition: all .3s;
}

.internal-link:hover {
    background: var(--white);
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.internal-link i {
    color: var(--primary);
    font-size: 14px;
}

/* ================ PRICING ================ */
.pricing-info {
    margin: 50px 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all .4s;
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
}

.pricing-card .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header {
    background: var(--light);
    padding: 30px 25px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background: var(--gradient-1);
    color: var(--white);
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price {
    font-size: 16px;
    font-weight: 600;
    opacity: .85;
}

.pricing-features {
    list-style: none;
    padding: 30px 25px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
}

.pricing-features i {
    color: var(--primary);
    font-size: 16px;
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-style: italic;
}

/* ================ FAQ ================ */
.faq-section {
    margin: 50px 0;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background .3s;
}

.faq-question:hover {
    background: var(--light);
}

.faq-question h3 {
    font-size: 17px;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform .3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s, padding .4s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* ================ CTA ================ */
.cta-section {
    background: var(--gradient-1);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    color: var(--white);
    margin: 0 0 15px;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: .95;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all .3s;
    box-shadow: var(--shadow-md);
}

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

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.cta-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.cta-btn.email {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* ================ CITIES ================ */
.cities-section {
    padding: 90px 0;
    background: var(--light);
}

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

.city-card {
    background: var(--white);
    padding: 25px 18px;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    border: 2px solid transparent;
}

.city-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.city-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
    transition: transform .3s;
}

.city-card:hover i {
    transform: scale(1.15) rotate(5deg);
}

.city-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.city-count {
    font-size: 13px;
    color: var(--gray);
}

/* ================ FOOTER ================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 70px 0 25px;
}

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

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
}

.footer-col p {
    line-height: 1.7;
    opacity: .9;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: .85;
    transition: all .3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.contact-list li, .hours-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-list i {
    color: var(--primary);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all .3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,.1);
    opacity: .8;
    font-size: 14px;
}

/* ================ FLOATING BUTTONS ================ */
.floating-btns {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all .3s;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-btn:hover {
    transform: scale(1.12) translateY(-5px);
    animation: none;
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.float-btn.phone {
    background: var(--gradient-1);
}

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* ================= FIXED PERFECT MOBILE MENU ================= */
@media (max-width: 768px) {

    .container {
        padding: 0 15px;
    }

    /* HEADER COLUMN YAPISI */
    .header-main .container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
        position: relative; /* Container'a göre hizalayacağız */
    }

    /* LOGO */
    .logo {
        margin-bottom: 5px;
        font-size: 26px !important;
    }

    /* HAMBURGER / KAPATMA BUTONU - TAM ORTALA VE SABİTLE */
    .header-main {
        position: relative;
    }

    .mobile-toggle {
        display: flex;
        position: absolute;
        top: 20px; /* LOGO hizası */
        right: 15px;
        transform: none;
        margin-top: 0;
    }

    .mobile-toggle span {
        width: 30px;
        height: 3px;
        background: var(--dark);
        transition: .3s;
    }

    /* ÇARPİ İKONU */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
    }

    /* MENÜ KUTUSU */
    .main-nav {
        display: none;
        width: 100%;
        background: #fff;
        padding: 20px;
        margin-top: 10px;
        border-radius: 16px;
        box-shadow: 0 4px 25px rgba(0,0,0,0.12);
        flex-direction: column;
        gap: 18px;
        animation: fadeIn .25s ease-out;
        position: relative;
        z-index: 3000; /* Butonun altında kalsın */
    }

    .main-nav.active {
        display: flex;
    }

    /* MENÜ LİNKLERİ */
    .nav-link {
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
        font-size: 17px;
        color: var(--dark);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 60px 0 45px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-btns {
        right: 15px;
        bottom: 15px;
    }
    
    .float-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .main-content h2 {
        font-size: 26px;
    }
    
    .cta-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .header-contact {
        font-size: 12px;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-grid {
        gap: 15px;
    }
    
    .links-grid, .cities-grid {
        grid-template-columns: 1fr;
    }
}

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




// EK CSSLER


#kayitOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#kayitForm {
    background: white;
    width: 90%;
    max-width: 420px;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

#kayitForm h2 {
    margin-top: 0;
    text-align: center;
}

.kayit-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.kayit-btn {
    width: 100%;
    background: #ff4e4e;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.kayit-btn:hover {
    background: #e84141;
}





///////////////////////////////



.diyetisyen-listesi {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
}

/* Web görünümü: 2 sütun */
@media (min-width: 768px) {
    .diyetisyen-listesi {
        grid-template-columns: 1fr 1fr;
    }


    .mgizle {
        display: none;
    }
}

.diyetisyen-kart {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: .2s ease;
    border: 1px solid #eee;
}

.diyetisyen-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Fotoğraf */
.diyetisyen-resim {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.diyetisyen-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* İçerik */
.diyetisyen-icerik {
    flex: 1;
}

.diyetisyen-isim {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.diyetisyen-aciklama {
    font-size: 15px;
    color: #444;
    line-height: 1.4;
    margin-bottom: 12px;
}


.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Genel buton tasarımı */
.action-buttons .btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease;
}

/* Instagram */
.btn-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

/* WhatsApp */
.btn-whatsapp {
    background: #25D366;
}

/* Ara Butonu */
.btn-call {
    background: linear-gradient(45deg, #007bff, #004ecb);
}

/* Hover Efekt */
.action-buttons .btn:hover {
    opacity: 0.85;
}



.baslik {
    font-size: 22px;
}