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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: url('img/hero-background.jpg') center top no-repeat;
    background-size: contain;
    background-attachment: scroll;
    margin: 0;
    padding: 0;
    padding-top: 120px;
    min-height: 100vh;
}

/* iPhone'larda arkaplan düzenlemesi - Güçlü çözüm */
@media (max-width: 480px) {
    body {
        background-image: url('img/hero-background.jpg') !important;
        background-position: center center !important;
        background-size: auto 100vh !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        padding-top: 60px !important;
        min-height: 100vh !important;
    }
    
    .hero {
        background-image: url('img/hero-background.jpg') !important;
        background-position: center center !important;
        background-size: auto 100vh !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
        position: relative !important;
    }
    
    .hero::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0,0,0,0.1) !important;
        z-index: 1 !important;
    }
}

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

/* Header Styles - İlk resimdeki tasarım gibi */
.header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding-top: 0;
    height: auto;
}

.header::before {
    display: none;
}

.navbar {
    position: fixed;
    top: 1cm;
    left: 0;
    right: 0;
    background: white;
    backdrop-filter: none;
    border-radius: 15px;
    margin: 0 10px;
    padding: 15px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 9999;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    font-family: 'Arial', sans-serif;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 28px;
    color: #333;
    font-family: 'Arial', sans-serif;
    margin-top: 2px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5aa0;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

.social-icon {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #2c5aa0;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Hero Section - İlk resimdeki tasarım gibi (ahşap masa background) */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 0;
    background: transparent;
    padding-top: 0;
}

/* Masaüstünde hero section arkaplanı temiz */
@media (min-width: 769px) {
    .hero {
        background: transparent;
    }
}

/* iPhone'larda hero section'ı optimize et */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding-top: 0;
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    
    /* iPhone'da arkaplan overlay'i */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.25);
        z-index: 1;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    margin-top: -100px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Georgia', serif;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4);
    text-transform: uppercase;
    color: white;
    -webkit-text-stroke: 2px rgba(0,0,0,0.3);
    text-stroke: 2px rgba(0,0,0,0.3);
    padding: 20px 30px;
    border: 3px solid rgba(255,255,255,0.8);
    border-radius: 15px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: #e0e0e0;
    color: #333;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ccc;
}

.cta-button:hover {
    background: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Notification Packages Button */
.notification-packages {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 999;
    animation: slideInRight 0.5s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    min-width: 280px;
    transition: all 0.3s ease;
    position: relative;
}

.notification-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.notification-icon {
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 16px;
}

.notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.notification-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.notification-subtitle {
    font-size: 12px;
    color: #666;
}

.notification-button {
    background: #ff6b35;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.notification-button:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

.notification-close {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #ff6b35;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 10px;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.notification-close:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-packages.hide {
    animation: slideOutRight 0.5s ease-in forwards;
}

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

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

/* Cache busting - Updated: 2025-08-31 22:54 - Font size small */
/* How We Work Section - İlk resimdeki tasarım gibi */
.how-we-work {
    padding: 100px 0;
    background: #fff;
}

.how-we-work h2 {
    font-family: 'Oswald', sans-serif !important;
    font-size: 2.5rem;
    font-weight: 400;
    color: black !important;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.how-we-work h3 {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.8rem;
    font-weight: 400 !important;
    color: black !important;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* En güçlü kural - tüm h3 başlıkları için kesinlikle normal weight */
.how-we-work h3,
.how-we-work .work-content h3,
.how-we-work .work-item .work-content h3,
.how-we-work .work-grid .work-item .work-content h3,
.how-we-work .work-content h3:first-of-type,
.how-we-work .work-content h3[style] {
    font-weight: 400 !important;
    font-weight: normal !important;
    font-weight: 400 !important;
}

/* En güçlü kural - tüm paragraflar için kesinlikle Libre Baskerville sans-serif */
.how-we-work p,
.how-we-work .work-content p,
.work-content p,
.how-we-work .work-item .work-content p,
.how-we-work .work-grid .work-item .work-content p {
    font-family: 'Libre Baskerville', sans-serif !important;
    font-size: 0.9rem !important;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    transition: none !important;
    transform: none !important;
}

/* Hover efektlerini tamamen kaldır */
.work-item:hover,
.work-item:hover .work-image img,
.work-content:hover,
.work-content:hover p {
    transform: none !important;
    transition: none !important;
}

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

.work-item {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
}

.work-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.work-content {
    padding: 0;
}

.work-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c5aa0;
}

.work-content p {
    color: #666;
    line-height: 1.8;
    font-size: 0.9rem !important;
    margin-bottom: 20px;
    font-family: 'Libre Baskerville', sans-serif !important;
}

.work-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Before & After Section - İlk resimdeki tasarım gibi */
.before-after {
    padding: 100px 0;
    background: white;
}

.before-after h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.before-after > .container > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.testimonial {
    text-align: center;
    margin-bottom: 50px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
}

.testimonial h3 {
    font-size: 28px;
    color: #2c5aa0;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.more-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff6b35;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.more-link:hover {
    background: #ff6b35;
    color: white;
}

.blog-preview {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
}

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

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card h4 {
    padding: 25px 25px 15px;
    font-size: 20px;
    color: #2c5aa0;
    font-family: 'Georgia', serif;
    font-weight: 600;
}

.read-more {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    padding: 0 25px 25px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Popular Blog Section - İlk resimdeki tasarım gibi */
.popular-blog {
    padding: 100px 0;
    background: #f8f9fa;
}

.popular-blog h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Arial', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.popular-blog h4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Dr. Joey Section - İlk resimdeki tasarım gibi */
.dr-joey {
    padding: 100px 0;
    background: white;
}

.dr-joey-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.dr-joey-image {
    position: relative;
}

.dr-joey-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}

.dr-joey-image:hover img {
    transform: scale(1.02);
}

.dr-joey-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #333;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Daha spesifik selector ekleyeyim */
section#dr-joey .dr-joey-info h2 {
    font-family: 'Oswald', sans-serif !important;
}

/* En güçlü selector */
body section#dr-joey .dr-joey-info h2 {
    font-family: 'Oswald', sans-serif !important;
}

/* Tüm h2'ler için Oswald */
.dr-joey-info h2,
section#dr-joey h2,
.dr-joey h2 {
    font-family: 'Oswald', sans-serif !important;
    font-weight: normal !important;
}

.credentials h3, .credentials h4 {
    color: #ff6b35;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.credentials h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.dr-joey-info p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.more-about {
    display: inline-block;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ff6b35;
    padding: 15px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.more-about:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

/* Newsletter Section - İlk resimdeki tasarım gibi */
.newsletter {
    padding: 80px 0;
    background: #2c5aa0;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.view-past {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ff6b35;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.view-past:hover {
    background: #ff6b35;
    color: white;
}

/* Packages Hero Section */
.packages-hero {
    background: url('img/hero-background.jpg') center top no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 0 120px 0;
    margin-top: 120px;
    min-height: 60vh;
}

.packages-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8), 2px 2px 4px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4);
    padding: 30px 40px;
    border: 3px solid rgba(255,255,255,0.8);
    border-radius: 15px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    display: inline-block;
    max-width: 800px;
}

.packages-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Packages FAQ Section */
.packages-faq {
    background: #f8f9fa;
    padding: 80px 0;
}

.packages-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Oswald', sans-serif;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Packages Section */
.packages {
    background: #f8f9fa !important;
    padding: 80px 0 !important;
}

.packages h2 {
    text-align: center !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 50px !important;
    color: #333 !important;
    font-family: 'Oswald', sans-serif !important;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid #ff6b35;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.package-card.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.package-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.package-price {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-shadow: 
        0 0 2px #ff6b35;
}

.original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-shadow: none;
}

.discounted-price {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b35;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 
        0 0 2px #ff6b35;
}

.package-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-content li {
    padding: 8px 0;
    color: #666;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.package-content li:last-child {
    border-bottom: none;
}

.package-button {
    display: block;
    width: 100%;
    background: #ff6b35;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.package-button:hover {
    background: #e55a2b;
}

/* Final CTA Section - İlk resimdeki tasarım gibi */
.final-cta {
    background: url('img/arkaplan2.jpg') center center no-repeat;
    background-size: cover;
    padding: 80px 0;
    text-align: center;
    color: black;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.2;
}

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

.final-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem; /* Changed from 3.5rem */
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.final-cta h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem; /* Changed from 1.8rem */
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer - İlk resimdeki tasarım gibi */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    font-size: 28px;
}

.footer-logo p {
    color: #999;
    font-size: 14px;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    line-height: 2.5;
    transition: color 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 14px;
}

/* Newsletter Popup - İlk resimdeki tasarım gibi */
.newsletter-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.popup-content h3 {
    color: #2c5aa0;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.popup-content img {
    width: 120px;
    margin: 25px 0;
    border-radius: 10px;
}

.newsletter-form {
    margin-top: 25px;
}

.newsletter-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #2c5aa0;
}

.newsletter-form button {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.close-popup {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #333;
}

/* Responsive Design - İlk resimdeki tasarım gibi */
@media (max-width: 768px) {
    /* Navbar düzenlemeleri */
    .navbar {
        margin: 0 5px;
        padding: 10px 0;
        top: 0.5cm;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .logo-main {
        font-size: 10px;
    }
    
    .logo-sub {
        font-size: 18px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #e0e0e0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 15px 0;
        text-align: center;
    }
    
    .social-icons {
        display: none;
    }
    
    /* Body padding azaltma */
    body {
        padding-top: 80px;
    }
    
    /* Hero section düzenlemeleri */
    .hero-content h1 {
        font-size: 24px;
        padding: 15px 20px;
        margin-bottom: 20px;
    }
    
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        margin-top: -50px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Section padding azaltma */
    section {
        padding: 40px 0;
    }
    
    .how-we-work {
        padding: 50px 0;
    }
    
    .dr-joey {
        padding: 50px 0;
    }
    
    .final-cta {
        padding: 50px 0;
    }
    
    /* Grid düzenlemeleri */
    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dr-joey-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Başlık boyutları */
    .how-we-work h2 {
        text-align: center;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .before-after h2,
    .dr-joey-info h2,
    .final-cta h2 {
        font-size: 22px;
    }
    
    .final-cta h3 {
        font-size: 18px;
    }
    
    /* Work content düzenlemeleri */
    .work-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .work-content p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* Dr. Joey section düzenlemeleri */
    .dr-joey-info h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .dr-joey-info p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .more-about {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* iPhone ve küçük ekranlar için özel düzenlemeler */
@media (max-width: 480px) {
    /* Text overflow ve word wrap düzeltmeleri */
    * {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    h1, h2, h3, h4, h5, h6 {
        word-break: break-word;
        line-height: 1.2;
    }
    
    p {
        word-break: break-word;
        hyphens: auto;
    }
    /* Navbar iPhone için optimize */
    .navbar {
        margin: 0 2px;
        padding: 6px 0;
        top: 0.2cm;
        border-radius: 10px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-main {
        font-size: 7px;
        letter-spacing: 0.5px;
    }
    
    .logo-sub {
        font-size: 12px;
        margin-top: 1px;
    }
    
    /* Body padding iPhone için */
    body {
        padding-top: 60px;
    }
    
    /* Hero section iPhone için tamamen yeniden tasarlandı */
    .hero {
        min-height: 80vh;
        padding-top: 20px;
    }
    
    .hero-content h1 {
        font-size: 18px;
        padding: 10px 12px;
        margin-bottom: 15px;
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        border: 2px solid rgba(255,255,255,0.8);
        border-radius: 10px;
    }
    
    .hero-content {
        padding-left: 8px;
        padding-right: 8px;
        margin-top: 0;
        text-align: center;
        position: relative;
        z-index: 3;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 11px;
        border-radius: 6px;
    }
    
    /* Notification Packages iPhone */
    .notification-packages {
        top: 80px;
        right: 15px;
    }
    
    .notification-content {
        min-width: 250px;
        padding: 10px 12px;
    }
    
    .notification-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        margin-right: 10px;
    }
    
    .notification-title {
        font-size: 13px;
    }
    
    .notification-subtitle {
        font-size: 11px;
    }
    
    .notification-button {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .notification-close {
        width: 18px;
        height: 18px;
        font-size: 8px;
        top: -6px;
        left: -6px;
    }
    
    /* Section padding iPhone için */
    section {
        padding: 25px 0;
    }
    
    .how-we-work {
        padding: 30px 0;
    }
    
    .dr-joey {
        padding: 30px 0;
    }
    
    .final-cta {
        padding: 30px 0;
    }
    
    /* Container padding iPhone için */
    .container {
        padding: 0 8px;
    }
    
    /* Başlık boyutları iPhone için */
    .how-we-work h2 {
        font-size: 16px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }
    
    .before-after h2,
    .dr-joey-info h2,
    .final-cta h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .final-cta h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    /* Work content iPhone için */
    .work-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .work-content p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    /* Dr. Joey section iPhone için */
    .dr-joey-info h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .dr-joey-info p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .more-about {
        padding: 6px 12px;
        font-size: 10px;
        border-radius: 20px;
    }
    
    /* Work image iPhone için */
    .work-image img {
        height: 200px;
    }
    
    /* Dr. Joey image iPhone için */
    .dr-joey-image img {
        border-radius: 15px;
    }
    
    /* Paketler Sayfası iPhone için */
    .packages-hero h1 {
        font-size: 1.2rem;
        padding: 10px 12px;
        line-height: 1.2;
    }
    
    .packages-hero p {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
    .package-card {
        padding: 10px;
        margin: 0 2px;
        border-radius: 10px;
    }
    
    .package-header h3 {
        font-size: 14px;
    }
    
    .package-price {
        font-size: 18px;
    }
    
    .discounted-price {
        font-size: 18px;
    }
    
    .original-price {
        font-size: 12px;
    }
    
    .package-content ul {
        font-size: 11px;
    }
    
    .package-button {
        font-size: 11px;
        padding: 6px 8px;
    }
    
    /* Popup iPhone için */
    .popup-content {
        margin: 10px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .work-content,
    .blog-card h4,
    .popup-content {
        padding: 12px;
    }
    
    /* Scroll indicator iPhone için */
    .scroll-indicator {
        bottom: 30px;
        font-size: 20px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: white;
        z-index: 3;
    }
}

/* iPhone SE ve çok küçük ekranlar için ekstra düzenlemeler */
@media (max-width: 375px) {
    .hero {
        min-height: 100vh;
        justify-content: center;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 16px;
        padding: 8px 10px;
    }
    
    .cta-button {
        padding: 6px 12px;
        font-size: 10px;
    }
    
    .how-we-work h2,
    .before-after h2,
    .dr-joey-info h2,
    .final-cta h2 {
        font-size: 14px;
    }
    
    .work-content h3 {
        font-size: 13px;
    }
    
    .work-content p,
    .dr-joey-info p {
        font-size: 11px;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .navbar {
        margin: 0 1px;
        padding: 4px 0;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .logo-main {
        font-size: 6px;
    }
} 

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    /* Background removed */
} 

/* İletişim Sayfası Stilleri */

/* Sosyal medya ikonları için orijinal uygulama renkleri - EN GÜÇLÜ SELECTOR'LAR */
.contact-item .contact-icon i,
.contact-item .contact-icon .fab,
.contact-item .contact-icon .far,
.contact-item .contact-icon .fas {
    color: inherit !important;
}

.contact-item .contact-icon i.fab.fa-whatsapp,
.contact-item .contact-icon .fab.fa-whatsapp {
    color: #25D366 !important;
}

.contact-item .contact-icon i.fab.fa-instagram,
.contact-item .contact-icon .fab.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.contact-item .contact-icon i.far.fa-envelope,
.contact-item .contact-icon .far.fa-envelope {
    color: #EA4335 !important;
}

.contact-item .contact-icon i.fas.fa-phone-alt,
.contact-item .contact-icon .fas.fa-phone-alt {
    color: #34A853 !important;
}

.contact-item .contact-icon i.fab.fa-linkedin,
.contact-item .contact-icon .fab.fa-linkedin {
    color: #0077B5 !important;
}

.contact-item .contact-icon i.fab.fa-tiktok,
.contact-item .contact-icon .fab.fa-tiktok {
    color: #000000 !important;
}

/* Header'daki sosyal medya ikonları için de aynı renkler */
.social-icons .social-icon i.fab.fa-whatsapp,
.social-icons .social-icon .fab.fa-whatsapp {
    color: #25D366 !important;
}

.social-icons .social-icon i.fab.fa-instagram,
.social-icons .social-icon .fab.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.social-icons .social-icon i.fab.fa-linkedin-in,
.social-icons .social-icon .fab.fa-linkedin-in {
    color: #0077B5 !important;
}

.social-icons .social-icon i.fab.fa-tiktok,
.social-icons .social-icon .fab.fa-tiktok {
    color: #000000 !important;
}

/* Tüm sosyal medya ikonları için genel stil */
.contact-icon i,
.social-icon i {
    font-size: 2rem !important;
}

/* Header'daki sosyal medya ikonlarını siyah-beyaz yap */
.social-icons .social-icon i {
    color: #333 !important;
}

/* Header'daki sosyal medya ikonlarını kesinlikle siyah yap */
header .social-icons .social-icon i,
nav .social-icons .social-icon i {
    color: #000000 !important;
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Tüm header sosyal medya ikonlarını siyah yap */
.social-icons .social-icon i[class*="fa-whatsapp"],
.social-icons .social-icon i[class*="fa-linkedin"],
.social-icons .social-icon i[class*="fa-tiktok"] {
    color: #000000 !important;
    background: none !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Instagram ikonunu özel olarak siyah yap */
.social-icons .social-icon i[class*="fa-instagram"] {
    color: #000000 !important;
    background: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: text !important;
}

/* Instagram ikonunu kesinlikle siyah yap */
.social-icons .social-icon i.fa-instagram {
    color: #000000 !important;
    background: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: text !important;
    background-image: none !important;
}

/* Tüm Instagram ikonlarını zorla siyah yap */
i.fa-instagram {
    color: #000000 !important;
    background: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: text !important;
    background-image: none !important;
}

/* FAQ Sayfası Stilleri */
.faq-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/hero-background.jpg') center center no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 120px;
}

.faq-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.faq-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.faq-question i {
    color: #ff6b35;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

.faq-cta {
    padding: 80px 0;
    background: url('img/arkaplan2.jpg') center center no-repeat;
    background-size: cover;
    text-align: center;
    color: #333;
}

.faq-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.faq-cta p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
    background: #f8f9fa;
}

/* 404 Sayfası Stilleri */
.error-hero {
    background: url('img/arkaplan2.jpg') center center no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    text-align: center;
    color: #333;
    margin-top: 120px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.error-hero h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
}

.error-hero p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.error-button.primary {
    background: #ff6b35;
    color: white;
}

.error-button.secondary {
    background: white;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.error-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.error-button.primary:hover {
    background: #e55a2b;
}

.error-button.secondary:hover {
    background: #ff6b35;
    color: white;
}

/* Hizmetler Sayfası Stilleri */
.services-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/hero-background.jpg') center center no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 120px;
}

.services-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.services-hero p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.service-item p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ff6b35;
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.service-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.services-cta {
    padding: 80px 0;
    background: url('img/arkaplan2.jpg') center center no-repeat;
    background-size: cover;
    text-align: center;
    color: #333;
}

.services-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-cta p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hakkımda Sayfası Stilleri */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/hero-background.jpg') center center no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 120px;
}

.about-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-hero p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

.about-text p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.education-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.education-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    text-transform: uppercase;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.education-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.education-icon i {
    font-size: 2.5rem;
    color: white;
}

.education-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.education-item p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
}

.education-type {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.certificates-section {
    padding: 80px 0;
    background: white;
}

.certificates-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    text-transform: uppercase;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.certificate-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.certificate-item ul {
    list-style: none;
    padding: 0;
}

.certificate-item li {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.certificate-item li:before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.certificate-item p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.projects-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.projects-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    text-transform: uppercase;
}

.project-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.project-icon i {
    font-size: 2.5rem;
    color: white;
}

.project-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.project-content h4 {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.project-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-type, .project-role {
    background: #ff6b35;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
}

.about-cta {
    padding: 80px 0;
    background: url('img/arkaplan2.jpg') center center no-repeat;
    background-size: cover;
    text-align: center;
    color: #333;
}

.about-cta h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-cta p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* İletişim kartlarındaki yuvarlak arka planları beyaz yap - Cache busting: 2025-08-31 23:49 */
.contact-item .contact-icon {
    background-color: white !important;
    border: 2px solid #f0f0f0 !important;
}


.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/hero-background.jpg') center center no-repeat;
    background-size: cover;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    margin-top: 120px;
}

.contact-hero h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Libre Baskerville', serif;
}

.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: white !important;
    border: 2px solid #f0f0f0 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-item p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white !important;
    color: #333 !important;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #f8f8f8 !important;
}

.contact-form {
    padding: 80px 0;
    background: white;
}

.contact-form h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.contact-form > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.working-hours {
    padding: 80px 0;
    background: #f8f9fa;
}

.working-hours h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

.hours-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.hours-item p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* Active menu item */
.nav-menu a.active {
    color: #ff6b35;
    font-weight: 600;
}

/* Responsive Design */

/* Tablet ve Orta Ekranlar */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .packages-hero h1 {
        font-size: 3rem;
        padding: 25px 35px;
    }
    
    .package-card {
        padding: 25px;
    }
    
    .package-price {
        font-size: 32px;
    }
    
    .discounted-price {
        font-size: 32px;
    }
}

/* Mobil Cihazlar */
@media (max-width: 768px) {
    /* Paketler Sayfası Responsive */
    .packages-hero h1 {
        font-size: 2.5rem;
        padding: 20px 25px;
    }
    
    .packages-hero p {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .package-card {
        padding: 20px;
        margin: 0 10px;
    }
    
    .package-header h3 {
        font-size: 20px;
    }
    
    .package-price {
        font-size: 28px;
    }
    
    .discounted-price {
        font-size: 28px;
    }
    
    .original-price {
        font-size: 18px;
    }
    
    .package-content ul {
        font-size: 14px;
    }
    
    .package-button {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    /* Ana Sayfa Responsive */
    .error-hero h1 {
        font-size: 5rem;
    }
    
    .error-hero h2 {
        font-size: 2rem;
    }
    
    .error-hero p {
        font-size: 1.1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-item {
        padding: 30px 20px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
} 