:root {
    --primary-color: #1a237e;
    --secondary-color: #ff6f00;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

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.7);
    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(26, 35, 126, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

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

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

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

.logo img {
    height: 60px;
    transition: all 0.3s ease;
}

.header-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    padding-left: 20px;
    border-left: 2px solid var(--secondary-color);
}

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: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

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

nav a:hover {
    color: var(--secondary-color);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

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

.hero-logo {
    width: 350px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

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

.hero-subtitle {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

.hero h1 {
    font-size: 2.2rem;
    margin: 30px 0;
    color: var(--white);
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s;
}

.hero .cta-button:hover {
    transform: scale(1.05);
}

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

h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--secondary-color);
}

/* Cards */
.cards, .service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card, .service-card, .testimonial-card {
    padding: 30px;
    text-align: center;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover, .service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card i, .service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s, color 0.3s;
}

.card:hover i, .service-card:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

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

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

.gallery-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 10px;
    margin-top: 30px;
    height: 700px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: #fff;
    aspect-ratio: 3/4;
    height: 300px;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

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

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

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

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #ff8f00;
}

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

.testimonial-card {
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* İletişim bölümü güncellemesi */
.contact {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
    padding: 40px 0;
}

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

.contact-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.contact-links a:hover i {
    transform: scale(1.2);
}

/* Telefon için özel stil */
.contact-links a[href^="tel"] {
    background: var(--secondary-color);
    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: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

/* Responsive düzenleme */
@media (max-width: 768px) {
    .contact {
        margin: 10px;
        padding: 30px 0;
    }
    
    .contact-links {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .contact-links a {
        padding: 15px;
        font-size: 1rem;
    }
    
    .contact-links i {
        font-size: 1.5rem;
    }
    
    .hero-logo {
        width: 280px;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
        margin: 25px 0;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    z-index: 1000;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: 2px solid var(--secondary-color);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

/* Intersection Observer Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Social Share Buttons */
.social-share {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}

.social-share a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.social-share a:hover {
    transform: translateX(5px) scale(1.1);
}

.social-share .facebook {
    background: #1877f2;
}

.social-share .twitter {
    background: #1da1f2;
}

.social-share .linkedin {
    background: #0077b5;
}

.social-share .pinterest {
    background: #e60023;
}

@media (max-width: 768px) {
    .social-share {
        display: none;
    }
    
    .scroll-top-btn {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 35, 126, 0.98);
        padding: 20px 0;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    nav ul.active {
        display: flex;
    }
    
    .logo img {
        height: 50px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-logo {
        width: 280px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    nav a {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        display: none;
    }
    
    .logo img {
        height: 50px;
    }
    
    .hero-logo {
        width: 220px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
        margin: 20px 0;
    }
    
    .cta-button {
        padding: 12px 20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

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

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

.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: 11px;
}

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

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

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

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(26, 35, 126, 0.98);
        padding: 80px 0;
        flex-direction: column;
        gap: 30px;
        text-align: center;
        z-index: 1000;
        justify-content: center;
        align-items: center;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        font-size: 24px;
        padding: 15px 30px;
        display: block;
    }
}

/* Scroll durumunda header'ı küçültme */
.sticky-header.scrolled {
    padding: 5px 0;
    background: rgba(26, 35, 126, 0.98);
}

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

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

/* Mobil görünüm için */
@media (max-width: 768px) {
    .header-left {
        gap: 15px;
    }
    
    .logo img {
        height: 50px;
    }
    
    .header-title {
        font-size: 14px;
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .header-title {
        display: none; /* Çok küçük ekranlarda başlığı gizle */
    }
}

/* Sayfa içi geçiş animasyonları */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    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.2);
    transform: rotate(45deg);
    animation: buttonGlow 3s 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: 3px;
    background: var(--secondary-color);
    z-index: 1001;
    width: 0;
    transition: width 0.3s;
}

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

.preloader img {
    width: 200px;
    height: auto;
    opacity: 0;
    animation: logoReveal 1s ease forwards;
    margin-bottom: 20px;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 3px;
    opacity: 0;
    animation: textFadeIn 1s ease 0.5s forwards;
}

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

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

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

/* Fiyatlandırma Bölümü Stilleri */
.pricing-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px;
    padding: 60px 0;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 20px 0;
}

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pricing-note {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 800px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

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

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

.rating-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
}

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

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

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

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

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

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

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

.review-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.review-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

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

/* 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: 10px;
    box-sizing: border-box;
}

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

.close {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    z-index: 1000;
}

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

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

    .gallery .container {
        padding: 0;
    }

    .gallery-container {
        height: 500px;
        padding: 5px;
        margin-top: 20px;
        border-radius: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 5px;
        padding-right: 10px;
    }
    
    .gallery-item {
        height: 180px;
        aspect-ratio: 1/1;
        border-radius: 5px;
    }
}

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

    .gallery-container {
        height: 450px;
        padding: 5px;
        margin-top: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
        padding: 3px;
        padding-right: 8px;
    }
    
    .gallery-item {
        height: 150px;
        aspect-ratio: 1/1;
    }
}

.service-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(26, 35, 126, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-style: italic;
}

/* Hizmet Bölgesi Stilleri */
.service-area {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 0;
    border-radius: 20px;
    margin: 20px;
}

.area-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.area-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

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

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

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

.service-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(26, 35, 126, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    font-style: italic;
    color: var(--text-color);
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .service-area {
        margin: 10px;
        padding: 40px 0;
    }
    
    .area-text h3 {
        font-size: 1.5rem;
    }
    
    .area-text li {
        font-size: 1rem;
    }
    
    .map iframe {
        height: 300px;
    }
}

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

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

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