/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0px 0; /* 2px'den 0px'e düşürüldü - minimum */
    transition: all 0.3s ease;
    transform: translateY(0);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar.mini {
    padding: 0px 0; /* 1px'den 0px'e düşürüldü - minimum */
    background: rgba(0, 0, 0, 0.95);
}

.navbar.mini .logo-img {
    height: 50px;
    width: 50px;
}

.navbar.mini .logo-text h1 {
    font-size: 18px;
    margin-bottom: 2px;
}

.navbar.mini .logo-text span {
    font-size: 12px;
}

.navbar.mini .nav-link {
    font-size: 14px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 180px;
    width: 180px;
    object-fit: contain;
    border-radius: 0; /* Yuvarlak kenarlık kaldırıldı */
    background: transparent; /* Arka plan şeffaf */
    filter: drop-shadow(0 0 0 transparent) contrast(1.2) brightness(1.1); /* Beyaz arka planı yumuşatır */
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.logo-text span {
    font-size: 16px;
    color: #ffd700;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Background Image */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Yeni arka plan fotoğrafı */
    background: url('./background.jpg.jpeg') center/cover no-repeat,
                url('./background.jpeg') center/cover no-repeat,
                url('./background.jpg') center/cover no-repeat,
                url('./background.png') center/cover no-repeat,
                url('background.jpg.jpeg') center/cover no-repeat,
                url('background.jpeg') center/cover no-repeat,
                url('background.jpg') center/cover no-repeat,
                url('background.png') center/cover no-repeat,
                /* Yedek olarak eski fotoğraf */
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

/* Animated Text Styles */
.main-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
    margin-right: 20px;
}

.word:nth-child(1) { animation-delay: 0s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Text Effect */
.subtitle-container {
    height: 60px;
    margin-bottom: 30px;
}

.typing-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
    border-right: 3px solid #ffd700;
    padding-right: 5px;
    animation: typing 3s steps(25) 1s forwards, blink 1s infinite 4s;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
}

@keyframes typing {
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% { border-color: #ffd700; }
    51%, 100% { border-color: transparent; }
}

/* Fade In Text */
.description {
    margin-bottom: 40px;
}

.fade-in-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-text:nth-child(1) { animation-delay: 1s; }
.fade-in-text:nth-child(2) { animation-delay: 1.2s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-50px);
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    animation: slideInLeft 0.8s ease forwards;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    animation: slideInRight 0.8s ease forwards;
}

.slide-in-left { animation-delay: 1.5s; }
.slide-in-right { animation-delay: 1.7s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #ffd700;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #ffd700;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #000;
    font-size: 32px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item i {
    font-size: 24px;
    color: #ffd700;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
}

.contact-btn.whatsapp:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

.designer-credit {
    font-size: 14px;
    opacity: 0.8;
}

.designer-credit span {
    color: #ffd700;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .logo-img {
        height: 80px;
        width: 80px;
    }
    
    .logo-text h1 {
        font-size: 18px;
    }
    
    .logo-text span {
        font-size: 12px;
    }
    
    .navbar {
        padding: 10px 0; /* 15px'den 10px'e düşürüldü */
    }
    
    .navbar.mini {
        padding: 3px 0; /* 5px'den 3px'e düşürüldü */
    }
    
    .navbar.mini .logo-img {
        height: 30px;
        width: 30px;
    }
    
    .navbar.mini .logo-text h1 {
        font-size: 14px;
    }
    
    .navbar.mini .logo-text span {
        font-size: 9px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .typing-text {
        font-size: 1.4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}
/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background: #fff;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick-link-card {
    display: block;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #ffd700;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    color: #333;
}

.link-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 28px;
}

.quick-link-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.quick-link-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.link-arrow {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 24px;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.quick-link-card:hover .link-arrow {
    transform: translateX(5px);
}

/* Page Header Styles */
.page-header {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./background.jpg.jpeg') center/cover no-repeat,
                url('./background.jpeg') center/cover no-repeat,
                url('./background.jpg') center/cover no-repeat,
                url('./background.png') center/cover no-repeat,
                url('background.jpg.jpeg') center/cover no-repeat,
                url('background.jpeg') center/cover no-repeat,
                url('background.jpg') center/cover no-repeat,
                url('background.png') center/cover no-repeat,
                url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    z-index: -2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    z-index: -1;
}

.page-header-content {
    text-align: center;
    color: white;
    max-width: 600px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: #ccc;
}

/* Active Navigation Link */
.nav-link.active {
    color: #ffd700 !important;
}

.nav-link.active::after {
    width: 100%;
}

/* About Page Styles */
.about-content {
    padding: 100px 0;
}

.about-story {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.story-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    border-radius: 2px;
}

.story-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000;
    font-size: 28px;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-weight: 500;
}

/* Values Section */
.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000;
    font-size: 24px;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.team-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

/* Kurucu özel stili */
.founder-card {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.1));
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.founder-image {
    background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
    color: #000 !important;
}

.founder-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.team-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
}

.team-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.team-card p {
    color: #666;
    line-height: 1.6;
}

.team-card p a {
    color: #ffd700 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease;
}

.team-card p a:hover {
    color: #333 !important;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #000;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #000;
    border: 2px solid #000;
}

.cta-buttons .btn-secondary:hover {
    background: #000;
    color: #fff;
}

/* Services Page Styles */
.services-content {
    padding: 100px 0;
}

.main-services {
    margin-bottom: 80px;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-info .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #000;
    font-size: 28px;
}

.service-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
}

.service-features li i {
    color: #ffd700;
    font-size: 14px;
}

/* Additional Services */
.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.additional-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.additional-card:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.additional-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.additional-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.additional-card p {
    color: #666;
    line-height: 1.6;
}

/* Brands Section */
.brands-section {
    text-align: center;
    margin-bottom: 80px;
}

.brands-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.brands-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.brand-item {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: translateY(-5px);
}

.brand-placeholder {
    text-align: center;
    color: #666;
}

.brand-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffd700;
}

.brand-placeholder span {
    display: block;
    font-weight: 600;
}

/* Gerçek logo stili */
.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.brand-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo img:hover {
    transform: scale(1.1);
}

/* Marka özel renkleri */
.brand-item:nth-child(1) .brand-placeholder i {
    color: #e74c3c; /* Filli Boya - Kırmızı */
}

.brand-item:nth-child(2) .brand-placeholder i {
    color: #3498db; /* Uşak Seramik - Mavi */
}

.brand-item:nth-child(3) .brand-placeholder i {
    color: #27ae60; /* Fırat Boru - Yeşil */
}

.brand-item:nth-child(4) .brand-placeholder i {
    color: #9b59b6; /* Crevit - Mor */
}

/* Contact Page Styles */
.contact-content {
    padding: 100px 0;
}

.contact-info-section {
    margin-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-details a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    color: #999;
    font-size: 0.9rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffd700 !important;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 15px;
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.map-link i {
    font-size: 16px;
}

/* Contact Form */
.contact-form-section {
    margin-bottom: 80px;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Map Container */
.map-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 20px;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.map-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.map-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.map-info ul {
    list-style: none;
}

.map-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.map-info li i {
    color: #ffd700;
    width: 20px;
}

/* Quick Contact */
.quick-contact-section {
    text-align: center;
}

.quick-contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.quick-contact-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 25px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 150px;
}

.quick-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    color: #333;
}

.quick-btn i {
    font-size: 32px;
    margin-bottom: 5px;
}

.quick-btn.phone i {
    color: #007bff;
}

.quick-btn.whatsapp i {
    color: #25d366;
}

.quick-btn.email i {
    color: #dc3545;
}

.quick-btn span {
    font-size: 1.1rem;
    font-weight: 600;
}

.quick-btn small {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-story,
    .service-detail,
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* Notification System */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    color: #333;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    transform: translateX(450px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10000;
    border-left: 4px solid #007bff;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left-color: #28a745;
}

.notification.success i {
    color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.error i {
    color: #dc3545;
}

.notification i {
    font-size: 18px;
    color: #007bff;
}

.notification span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: #f8f9fa;
    color: #333;
}

/* Mobile Responsive for Notifications */
@media (max-width: 768px) {
    .notification {
        right: 20px;
        left: 20px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}
/* Boya Galeri Stili */
.boya-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-boya-image {
    width: 100%;
}

.main-boya-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.main-boya-image img:hover {
    transform: scale(1.02);
}

.boya-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.boya-thumbnails .thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.boya-thumbnails .thumbnail:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Mobil için boya galeri */
@media (max-width: 768px) {
    .boya-thumbnails .thumbnail {
        width: 100px;
        height: 70px;
    }
}

/* RTRMax Galeri Stili */
.rtrmax-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-rtrmax-image {
    width: 100%;
}

.main-rtrmax-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.main-rtrmax-image img:hover {
    transform: scale(1.02);
}

.rtrmax-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.rtrmax-thumbnails .thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.rtrmax-thumbnails .thumbnail:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Mobil için RTRMax galeri */
@media (max-width: 768px) {
    .rtrmax-thumbnails .thumbnail {
        width: 100px;
        height: 70px;
    }
}

/* Seramik Galeri Stili */
.seramik-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-seramik-image {
    width: 100%;
}

.main-seramik-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer !important;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.main-seramik-image img:hover {
    transform: scale(1.02);
}

.seramik-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    justify-content: center;
}

.seramik-thumbnails .thumbnail {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer !important;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.seramik-thumbnails .thumbnail:hover {
    transform: translateY(-3px);
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.seramik-thumbnails .thumbnail.active {
    border-color: #ffd700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex !important;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    animation: lightboxZoom 0.3s ease;
}

.lightbox-image {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.lightbox-close:hover {
    background: rgba(255, 215, 0, 0.9);
    color: #000;
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
    margin: 0 20px;
}

@keyframes lightboxZoom {
    from { 
        opacity: 0;
        transform: scale(0.7);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobil için lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-image {
        max-width: 90vw;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: -45px;
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-caption {
        bottom: -55px;
        font-size: 14px;
        padding: 12px;
        margin: 0 10px;
    }
}

/* Boya Reyonu Özel Stili */
.service-detail.reverse .service-image img[src="boya-reyonu.jpeg"] {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.service-detail.reverse .service-image img[src="boya-reyonu.jpeg"]:hover {
    transform: scale(1.05);
}

/* Boya kategorisi için özel arka plan - REMOVED */
/* .quick-link-card[href="hizmetler.html"]:nth-child(2) {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1)),
                url('boya-reyonu.jpeg') center/cover;
    background-blend-mode: overlay;
    color: white;
}

.quick-link-card[href="hizmetler.html"]:nth-child(2) h3,
.quick-link-card[href="hizmetler.html"]:nth-child(2) p {
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.quick-link-card[href="hizmetler.html"]:nth-child(2) .link-icon {
    background: rgba(255, 255, 255, 0.9);
    color: #3498db;
} */