/* Modern & Canlı Renk Paleti */
:root {
    --primary: #FF6B35;        /* Canlı Turuncu - Ana renk */
    --primary-dark: #E55A2B;   /* Koyu Turuncu */
    --secondary: #004E89;      /* Derin Mavi */
    --secondary-light: #1A7FB7; /* Açık Mavi */
    --accent: #F7B801;         /* Altın Sarısı */
    --success: #06D6A0;        /* Turkuaz Yeşil */
    --dark: #1B1B1B;           /* Koyu Gri */
    --text: #2D2D2D;           /* Metin rengi */
    --text-light: #666666;     /* Açık metin */
    --bg-light: #FAFAFA;       /* Açık arka plan */
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 800;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Üst İletişim Barı */
.top-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    margin-right: 20px;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar i {
    color: var(--accent);
    margin-right: 8px;
}

/* Header / Navbar */
header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.logo span {
    color: var(--primary);
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a:hover {
    width: 100%;
    color: var(--primary);
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-nav::after {
    display: none;
}

.hamburger {
    display: none;
    color: var(--secondary);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
background: url('https://images.unsplash.com/photo-1550581190-9c1c48d21d6c?q=80&w=1600&auto=format&fit=crop') no-repeat center center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 78, 137, 0.85) 0%, rgba(255, 107, 53, 0.15) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 700px;
}

.tagline {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.tagline i {
    margin-right: 8px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ebc53;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    font-size: 1.5rem;
    color: var(--accent);
}

.feature-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Slider Section - Yapılan İşler */
.slider-section {
    padding: 60px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.slider-window {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.slider-track {
    display: flex;
    width: calc(350px * 14);
    animation: scroll 40s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    width: 350px;
    padding: 0 15px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide:hover .slide-overlay {
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 7)); }
}

/* Services Section */
.services-section {
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center h2 {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-header-center p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--primary);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    text-align: left;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1rem;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px; /* Yüksekliği artırdık, ferahladı */
}

.img-main,
.img-secondary {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    transition: transform 0.3s ease; /* Hover efekti ekledik */
}

/* Usta Resmi - Ön Plan */
.img-main {
    width: 58%;   /* %70'ten küçültüldü */
    height: 65%;  /* %75'ten küçültüldü */
    top: 0;
    left: 0;
    z-index: 2;
    border: 5px solid var(--white);
}

/* Dükkan Resmi - Arka Plan */
.img-secondary {
    width: 55%;
    height: 50%;  /* Yükseklik ayarlandı */
    bottom: 40px; /* Biraz yukarı aldık */
    right: 0;
    z-index: 1;
    border: 5px solid var(--primary);
}

/* Küçük bir hareket katalım: Üzerine gelince öne çıksın */
.about-images:hover .img-secondary {
    transform: translateX(10px) translateY(10px); /* Dükkan hafifçe sağa kayar */
    z-index: 3; /* Dükkanın üzerine gelince Usta'nın önüne geçer (İsteğe bağlı) */
}

.img-main img,
.img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    z-index: 3;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
}

.stats-box {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    z-index: 3;
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary);
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 800;
}

.stat-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin: 15px 0 25px;
}

.about-content .lead {
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.why-us {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.why-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow);
}

.why-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.why-item h4 {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.cta-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.cta-box i {
    font-size: 2.5rem;
    color: var(--accent);
}

.cta-box span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cta-phone {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
}

.cta-phone:hover {
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.contact-info-side {
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    color: var(--white);
}

.contact-info-side .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.contact-info-side h2 {
    color: var(--white);
    font-size: 2.2rem;
}

.contact-info-side p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1ebc53 100%);
}

.contact-icon.instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 100%);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: var(--accent);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.map-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.map-link:hover {
    color: var(--white);
}

.btn-whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: var(--white);
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-large:hover {
    background: #1ebc53;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.contact-map-side {
    height: 100%;
    min-height: 600px;
}

.contact-map-side iframe {
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-col ul li i {
    color: var(--primary);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Buttons */
.float-whatsapp,
.float-call {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px var(--shadow);
    z-index: 999;
    transition: all 0.3s ease;
}

.float-whatsapp {
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #1ebc53 100%);
    color: var(--white);
}

.float-call {
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-layout,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .why-us {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding-top: 50px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow);
        z-index: 999;
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .navbar li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .section-header h2,
    .section-header-center h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-box {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .contact-map-side {
        min-height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .float-call {
        bottom: 20px;
        right: 90px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .slide {
        width: 280px;
    }

    .slider-track {
        width: calc(280px * 14);
    }

    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 7)); }
    }
}