:root {
    --primary-color: #37474f;
    --secondary-color: #ff5722;
    --accent-color: #607d8b;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #37474f, #607d8b);
    --gradient-secondary: linear-gradient(135deg, #ff5722, #ff7043);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Mobil dokunma optimizasyonları */
@media (max-width: 768px) {
    a, button, .gallery-item, .card, .service-card, .testimonial-card, .step-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .gallery-item, .card, .service-card, .testimonial-card, .step-card {
        cursor: pointer;
    }
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-image: url('fotographes/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

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

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(55, 71, 79, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    border-bottom: 4px solid var(--secondary-color);
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 65px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    padding: 5px;
    object-fit: contain;
    object-position: center;
    transform: scale(1.55);
    margin-left: -90px;
}

.header-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid var(--secondary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

nav ul {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
    position: relative;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: visible;
    padding: 80px 0 40px 0;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(55, 71, 79, 0.8), rgba(96, 125, 139, 0.6));
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: calc(100vh - 120px);
}

.hero-left {
    text-align: left;
}

.hero-right {
    text-align: center;
}

.logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    z-index: 10;
}

.hero-logo {
    width: 350px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.6));
    animation: logoFloat 5s ease-in-out infinite;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    object-fit: contain;
    object-position: center;
    transform: scale(1.15);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 87, 34, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 87, 34, 0.3);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: badgeFloat 4s ease-in-out infinite;
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-text-content {
    margin-top: 30px;
}

.hero-subtitle {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    font-weight: 700;
    position: relative;
    display: block;
}

.text-line {
    display: block;
    opacity: 0;
    animation: textSlideIn 1s ease forwards;
}

.text-line:nth-child(1) {
    animation-delay: 0.5s;
}

.text-line:nth-child(2) {
    animation-delay: 0.8s;
}

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

.hero-title {
    font-size: 3rem;
    margin: 30px 0;
    color: var(--white);
    font-weight: 700;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    line-height: 1.2;
    display: block;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: titleWordAppear 1.2s ease forwards;
    margin-right: 15px;
}

.title-word:nth-child(1) { animation-delay: 1s; }
.title-word:nth-child(2) { animation-delay: 1.3s; }
.title-word:nth-child(3) { animation-delay: 1.6s; }
.title-word:nth-child(4) { animation-delay: 1.9s; }

@keyframes titleWordAppear {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    opacity: 0;
    animation: featureSlideIn 1s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 2.2s; }
.feature-item:nth-child(2) { animation-delay: 2.4s; }
.feature-item:nth-child(3) { animation-delay: 2.6s; }

@keyframes featureSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.cta-section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    animation: ctaSlideIn 1.5s ease forwards;
    opacity: 0;
    transform: translateX(50px);
    position: relative;
    z-index: 10;
}

@keyframes ctaSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 87, 34, 0.2);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 87, 34, 0.3);
}

.phone-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 20px 45px;
    background: var(--gradient-secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.6);
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge i {
    color: var(--secondary-color);
}

.scroll-indicator-hero {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: scrollIndicatorAppear 2s ease 3s forwards;
}

@keyframes scrollIndicatorAppear {
    to {
        opacity: 1;
    }
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-arrow {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-arrow i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Floating Shapes Animation */
.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    top: 70%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}



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

h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    font-size: 2.8rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    font-weight: 700;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

/* Cards */
.cards, .service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Hakkımızda bölümü için özel stil */
.about .cards {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.card, .service-card, .testimonial-card {
    padding: 40px;
    text-align: center;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255,255,255,0.4);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--gradient-primary);
}

.card::before, .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:hover::before, .service-card:hover::before {
    transform: scaleX(1);
}

.card:hover, .service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.card i, .service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    transition: all 0.5s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card:hover i, .service-card:hover i {
    transform: scale(1.3) rotate(5deg);
    color: var(--secondary-color);
}

/* Galeri Bölümü */
.gallery {
    padding: 50px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.gallery-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 20px;
    margin-top: 50px;
    height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    padding-right: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: #fff;
    aspect-ratio: 3/4;
    height: 350px;
    transition: all 0.5s ease;
    border: 2px solid rgba(255,255,255,0.3);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(55, 71, 79, 0.4), rgba(96, 125, 139, 0.4));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Scroll çubuğu stilleri */
.gallery-grid::-webkit-scrollbar {
    width: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 10px;
}

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

/* Testimonials */
.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.testimonial-card {
    padding: 35px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    border: 2px solid rgba(46, 125, 50, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.testimonial-card i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

/* İletişim bölümü güncellemesi */
.contact {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    margin: 30px;
    padding: 60px 0;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.1);
}

.contact-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 25px;
}

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    padding: 30px;
    border-radius: 25px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    border: 3px solid rgba(55, 71, 79, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-links a:hover {
    transform: translateY(-8px);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.contact-links i {
    font-size: 2.5rem;
    transition: transform 0.4s ease;
}

.contact-links a:hover i {
    transform: scale(1.3) rotate(5deg);
}

/* Telefon için özel stil */
.contact-links a[href^="tel"] {
    background: var(--gradient-secondary);
    color: var(--white);
}

/* WhatsApp için özel stil */
.contact-links a[href*="wa.me"] {
    background: #25d366;
    color: var(--white);
}

/* Facebook için özel stil */
.contact-links a[href*="facebook"] {
    background: #1877f2;
    color: var(--white);
}

/* Web sitesi için özel stil */
.contact-links a[href*="www"] {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .contact {
        margin: 15px;
        padding: 40px 0;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .contact-links a {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .contact-links i {
        font-size: 2rem;
    }
    

}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    transition: all 0.5s ease;
    z-index: 1000;
    border: 4px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 0;
    text-align: center;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .sticky-header .container {
        padding: 10px 15px;
    }
    
    .header-left {
        gap: 10px;
    }
    
    .logo img {
        height: 45px;
        transform: scale(1.2);
        margin-left: -10px;
    }
    
    .header-title {
        font-size: 12px;
        padding-left: 10px;
        letter-spacing: 0.5px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
        text-align: center;
        min-height: calc(100vh - 100px);
        align-items: flex-start;
        padding-top: 20px;
        overflow: visible;
    }
    
    .hero-left {
        text-align: center;
        order: 1;
    }
    
    .hero-right {
        order: 2;
        margin-top: 20px;
    }
    
    .hero-logo {
        width: 250px;
        transform: scale(1);
        margin-bottom: 20px;
        position: relative;
        z-index: 10;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin: 20px 0;
        line-height: 1.3;
    }
    
    .title-word {
        margin-right: 8px;
        margin-bottom: 5px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 8px 12px;
        gap: 6px;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 25px 20px;
        margin: 0;
        border-radius: 20px;
        margin-bottom: 30px;
    }
    
    .phone-display {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .phone-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.1rem;
    }
    
    .cta-badges {
        flex-direction: column;
        gap: 10px;
    }
    
    .badge {
        justify-content: center;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .about .cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .card, .service-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .card i, .service-card i {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .gallery-container {
        height: 600px;
        padding: 15px;
        margin-top: 30px;
        border-radius: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 8px;
        padding-right: 15px;
    }
    
    .gallery-item {
        height: 200px;
        aspect-ratio: 1/1;
        border-radius: 15px;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .pricing-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .pricing-note {
        margin: 30px 15px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact {
        margin: 15px;
        padding: 40px 0;
        border-radius: 20px;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .contact-links a {
        padding: 20px;
        font-size: 1.1rem;
        gap: 15px;
    }
    
    .contact-links i {
        font-size: 2rem;
    }
    
    .area-text {
        padding: 25px 20px;
    }
    
    .area-text h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .area-text li {
        font-size: 1rem;
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .area-text li i {
        font-size: 1.1rem;
    }
    
    .map iframe {
        height: 300px;
    }
    
    .whatsapp-button {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        bottom: 30px;
        right: 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .shape {
        display: none;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(55, 71, 79, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 0;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        z-index: 1000;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
    }

    nav ul.active {
        display: flex;
        animation: menuSlideIn 0.3s ease;
    }

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

    nav ul li a {
        font-size: 24px;
        padding: 15px 30px;
        display: block;
        transition: all 0.3s ease;
        border-radius: 10px;
    }
    
    nav ul li a:hover {
        background: rgba(255, 87, 34, 0.2);
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .sticky-header .container {
        padding: 8px 10px;
    }
    
    .header-title {
        display: none;
    }
    
    .logo img {
        height: 40px;
        transform: scale(1.1);
        margin-left: 0;
    }
    
    .hero-logo {
        width: 200px;
        margin-bottom: 15px;
        position: relative;
        z-index: 10;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin: 15px 0;
    }
    
    .hero-content {
        min-height: calc(100vh - 80px);
        padding-top: 10px;
    }
    
    .cta-section {
        margin-bottom: 20px;
    }
    
    .title-word {
        margin-right: 5px;
        margin-bottom: 3px;
    }
    
    .hero-features {
        gap: 8px;
    }
    
    .feature-item {
        font-size: 0.7rem;
        padding: 6px 10px;
        gap: 5px;
    }
    
    .feature-item i {
        font-size: 0.8rem;
    }
    
    .cta-section {
        padding: 20px 15px;
    }
    
    .phone-display {
        padding: 12px;
        gap: 8px;
    }
    
    .phone-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    .badge {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .gallery-container {
        height: 500px;
        padding: 10px;
        margin-top: 20px;
    }
    
    .gallery-grid {
        gap: 8px;
        padding: 5px;
        padding-right: 12px;
    }
    
    .gallery-item {
        height: 170px;
        border-radius: 12px;
    }
    
    .card, .service-card, .testimonial-card, .step-card {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .card i, .service-card i, .step-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .contact-links a {
        padding: 15px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .contact-links i {
        font-size: 1.8rem;
    }
    
    .area-text {
        padding: 20px 15px;
    }
    
    .area-text h3 {
        font-size: 1.3rem;
    }
    
    .area-text li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .map iframe {
        height: 250px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 2.2rem;
        bottom: 25px;
        right: 25px;
    }
    
    section {
        padding: 40px 0;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .mobile-menu-btn {
        width: 30px;
        height: 24px;
        margin-left: 15px;
    }
    
    .mobile-menu-btn span {
        height: 2px;
    }
    
    nav ul li a {
        font-size: 20px;
        padding: 12px 25px;
    }
    
    .rating-card {
        margin: 0 10px;
        padding: 20px;
    }
    
    .score {
        font-size: 2.5rem;
    }
    
    .stars {
        font-size: 1.3rem;
    }
    
    .review-link {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .modal-content {
        max-width: 98%;
        max-height: 90vh;
    }
    
    .close {
        right: 15px;
        top: 15px;
        font-size: 30px;
    }
}

@media (max-width: 360px) {
    .hero-logo {
        width: 180px;
        margin-bottom: 10px;
        position: relative;
        z-index: 10;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-content {
        min-height: calc(100vh - 60px);
        padding-top: 5px;
    }
    
    .cta-section {
        margin-bottom: 15px;
        padding: 20px 15px;
    }
    
    .gallery-item {
        height: 150px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .contact-links a {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .contact-links i {
        font-size: 1.6rem;
    }
}

/* Mobil menü butonu */
.mobile-menu-btn {
    display: none;
    width: 35px;
    height: 28px;
    position: relative;
    cursor: pointer;
    margin-left: 25px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    position: absolute;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 12px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Scroll durumunda header'ı küçültme */
.sticky-header.scrolled {
    padding: 8px 0;
    background: rgba(46, 125, 50, 0.98);
}

.sticky-header.scrolled .logo img {
    height: 55px;
}

.sticky-header.scrolled .header-title {
    font-size: 15px;
}

/* Sayfa içi geçiş animasyonları */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA butonuna parlama efekti */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: buttonGlow 4s linear infinite;
}

@keyframes buttonGlow {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* Scroll indikatörü */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-secondary);
    z-index: 1001;
    width: 0;
    transition: width 0.4s;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 1s ease-in-out;
    backdrop-filter: blur(20px);
}

.preloader img {
    width: 250px;
    height: auto;
    opacity: 0;
    animation: logoReveal 1.5s ease forwards;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
    border-radius: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.loading-text {
    color: white;
    font-size: 1.4rem;
    letter-spacing: 4px;
    opacity: 0;
    animation: textFadeIn 1.2s ease 0.6s forwards;
    font-weight: 600;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.2);
}

/* Responsive preloader */
@media (max-width: 768px) {
    .preloader img {
        width: 200px;
        padding: 15px;
    }
    
    .loading-text {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    /* Mobilde animasyonları hafiflet */
    .hero-logo {
        animation: logoFloat 3s ease-in-out infinite;
    }
    
    .hero-badge {
        animation: badgeFloat 3s ease-in-out infinite;
    }
    
    .floating-shapes .shape {
        animation-duration: 4s;
    }
    
    .phone-icon {
        animation: phonePulse 1.5s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .preloader img {
        width: 150px;
        padding: 10px;
    }
    
    .loading-text {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    /* Küçük ekranlarda animasyonları kapat */
    .hero-logo {
        animation: none;
    }
    
    .hero-badge {
        animation: none;
    }
    
    .floating-shapes .shape {
        animation: none;
    }
    
    .phone-icon {
        animation: none;
    }
}

/* Fiyatlandırma Bölümü Stilleri */
.pricing-info {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    margin: 30px;
    padding: 80px 0;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.1);
}

.pricing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin: 50px 0;
}

.step-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    border: 3px solid rgba(55, 71, 79, 0.1);
    border-top: 5px solid var(--gradient-primary);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.step-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 25px 0;
    transition: all 0.4s ease;
}

.step-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color);
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.pricing-note {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 15px;
    margin: 50px auto;
    max-width: 850px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid rgba(46, 125, 50, 0.1);
}

.pricing-note i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .pricing-info {
        margin: 15px;
        padding: 50px 0;
    }
    
    .pricing-steps {
        gap: 25px;
    }
    
    .pricing-note {
        margin: 40px 20px;
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
}

/* Google Değerlendirme Stilleri */
.google-rating {
    padding: 50px 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
}

.rating-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(0);
    transition: all 0.4s ease;
    border: 2px solid rgba(46, 125, 50, 0.1);
}

.rating-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.rating-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.google-logo {
    width: 90px;
    height: auto;
}

.rating-header h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.rating-score {
    margin: 25px 0;
}

.score {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stars {
    color: #FFC107;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.review-count {
    color: #666;
    font-size: 1rem;
}

.review-link {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.review-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .rating-card {
        margin: 0 20px;
        padding: 25px;
    }
    
    .score {
        font-size: 3rem;
    }
    
    .stars {
        font-size: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px;
    box-sizing: border-box;
}

.modal-content {
    max-width: 90vh;
    max-height: 95vh;
    width: auto;
    height: auto;
    margin: auto;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

.close {
    position: absolute;
    right: 30px;
    top: 20px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.close:hover {
    transform: scale(1.2);
    color: var(--secondary-color);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 30px 0;
    }

    .gallery .container {
        padding: 0;
    }

    .gallery-container {
        height: 600px;
        padding: 10px;
        margin-top: 30px;
        border-radius: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 8px;
        padding-right: 15px;
    }
    
    .gallery-item {
        height: 200px;
        aspect-ratio: 1/1;
        border-radius: 10px;
    }
    
    .gallery-item img {
        transition: transform 0.4s ease;
    }
    
    .gallery-item:hover img {
        transform: scale(1.05);
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 15px 0;
    }

    .gallery-container {
        height: 500px;
        padding: 8px;
        margin-top: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 5px;
        padding-right: 12px;
    }
    
    .gallery-item {
        height: 170px;
        aspect-ratio: 1/1;
    }
    
    .gallery-item:hover img {
        transform: scale(1.03);
    }
}

@media (max-width: 360px) {
    .gallery-container {
        height: 450px;
    }
    
    .gallery-item {
        height: 150px;
    }
}

.service-note {
    margin-top: 30px;
    padding: 25px;
    background: rgba(55, 71, 79, 0.1);
    border-left: 6px solid var(--primary-color);
    border-radius: 10px;
    font-style: italic;
    font-weight: 500;
}

/* Hizmet Bölgesi Stilleri */
.service-area {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    padding: 80px 0;
    border-radius: 35px;
    margin: 30px;
    border: 3px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.1);
}

.area-text {
    background: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 25px;
    margin-bottom: 40px;
    border: 3px solid rgba(55, 71, 79, 0.1);
    border-top: 5px solid var(--gradient-primary);
}

.area-text h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.area-text ul {
    list-style: none;
    padding: 0;
}

.area-text li {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.area-text li i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.service-note {
    margin-top: 25px;
    padding: 20px;
    background: rgba(46, 125, 50, 0.1);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-color);
}

.map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .service-area {
        margin: 15px;
        padding: 50px 0;
    }
    
    .area-text h3 {
        font-size: 1.7rem;
    }
    
    .area-text li {
        font-size: 1.1rem;
    }
    
    .map iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 85vh;
        width: auto;
        height: auto;
    }
    
    .close {
        right: 20px;
        top: 20px;
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 8px;
    }

    .modal-content {
        max-width: 98%;
        max-height: 90vh;
    }
} 