/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background-color: #ffffff;
    font-weight: 400;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1a202c;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: #3182ce;
    transition: all 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    padding: 1.25rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    margin: 0;
    font-weight: 800;
}

.nav-brand a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #667eea;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #4a5568;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="50" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    color: white;
    margin-bottom: 2rem;
    font-size: 4rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff5252 0%, #d63031 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.6);
}

/* Sections */
section {
    padding: 100px 0;
}

.about {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #4a5568;
}

.about-content ul {
    list-style: none;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-content li {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.about-content li:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-content li::before {
    content: '✓';
    position: absolute;
    top: -10px;
    left: 2rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Services */
.services {
    background: white;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2d3748;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Why Us */
.why-us {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2d3748;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #667eea;
    line-height: 1;
    font-family: serif;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 2rem;
    color: #4a5568;
    font-size: 1.1rem;
}

.testimonial-item cite {
    color: #667eea;
    font-weight: 600;
    font-style: normal;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.faq h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2d3748;
}

.faq-list {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4b8a 100%);
}

.faq-item p {
    padding: 2rem;
    margin: 0;
    color: #4a5568;
    background: white;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2d3748;
}

/* Unified Contact Card */
.unified-contact-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.unified-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h3 {
    color: #2d3748;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-header p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-method:hover::before {
    transform: scaleX(1);
}

.method-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.phone-primary {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
}

.phone-secondary {
    background: linear-gradient(135deg, #2b6cb0 0%, #2c5aa0 100%);
}

.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.email {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
}

.method-content h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.method-content p {
    color: #718096;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.method-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.phone-btn {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4d7c 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a085 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.email-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
}

.email-btn:hover {
    background: linear-gradient(135deg, #c53030 0%, #9c2626 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

/* Address & Hours Section */
.address-hours-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.address-card, .hours-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.address-card::before, .hours-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.address-card:hover::before, .hours-card:hover::before {
    transform: scale(1.2);
}

.address-icon, .hours-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.address-content h4, .hours-content h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.address-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-areas {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(10px);
}

.hour-row span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hour-row span:last-child {
    color: white;
    font-weight: 700;
}

.emergency-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-style: italic;
}

.map-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-2px);
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.4s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer Highlights */
.footer-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.highlight-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.highlight-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4b8a 100%);
}

.highlight-badge:hover::before {
    left: 100%;
}

/* Contact Quick */
.contact-quick {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.footer-contact-btn:hover::before {
    left: 100%;
}

.footer-contact-btn.phone-btn {
    background: linear-gradient(135deg, #3182ce 0%, #2c5aa0 100%);
    color: white;
    border: 2px solid transparent;
}

.footer-contact-btn.phone-btn:hover {
    background: linear-gradient(135deg, #2c5aa0 0%, #2a4d7c 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
    color: white;
}

.footer-contact-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: 2px solid transparent;
}

.footer-contact-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a085 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

.footer-contact-btn.email-btn {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: 2px solid transparent;
}

.footer-contact-btn.email-btn:hover {
    background: linear-gradient(135deg, #c53030 0%, #9c2626 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
    color: white;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-contact-btn:hover .btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.btn-text {
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.address-icon {
    font-size: 1.1rem;
    color: #667eea;
}

.contact-quick p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-quick strong {
    color: #667eea;
    font-weight: 700;
}

/* Service Areas List */
.service-areas-list {
    list-style: none;
    padding: 0;
}

.service-areas-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    position: relative;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.service-areas-list li::before {
    content: '▶';
    position: absolute;
    left: 0.5rem;
    color: #667eea;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.service-areas-list li:hover {
    background: rgba(102, 126, 234, 0.1);
    color: white;
    transform: translateX(8px);
    border-left: 3px solid #667eea;
    padding-left: 1.5rem;
}

.service-areas-list li:hover::before {
    color: #f093fb;
    transform: scale(1.2) rotate(90deg);
    left: 0.3rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: #667eea !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
}

/* Galeri Sayfası */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    position: relative;
    z-index: 2;
}

.gallery {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery-filters {
    text-align: center;
    margin-bottom: 4rem;
}

.filter-btn {
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 12px 30px;
    margin: 0 0.75rem 0.75rem 0;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

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

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

.video-thumbnail {
    position: relative;
}

.video-thumbnail video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: inherit;
}

/* Video kontrollerinden ses butonunu gizle */
video::-webkit-media-controls-mute-button {
    display: none !important;
}

video::-webkit-media-controls-volume-slider {
    display: none !important;
}

video::-moz-media-controls-mute-button {
    display: none !important;
}

video::-moz-media-controls-volume-slider {
    display: none !important;
}

/* Lightbox videoları için de aynı kurallar */
.lightbox video::-webkit-media-controls-mute-button,
.lightbox video::-webkit-media-controls-volume-slider {
    display: none !important;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: none;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img,
.video-container {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 1.5rem;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-nav button:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

#prev-btn {
    left: -80px;
}

#next-btn {
    right: -80px;
}

.cta-section {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.4s ease;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-nav button {
        position: fixed;
    }

    #prev-btn {
        left: 20px;
    }

    #next-btn {
        right: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-content ul {
        grid-template-columns: 1fr;
    }

    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .address-hours-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .unified-contact-card {
        padding: 2rem;
        border-radius: 16px;
    }

    .contact-header h3 {
        font-size: 1.5rem;
    }

    .method-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .footer-highlight {
        justify-content: center;
    }

    .highlight-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-quick p {
        text-align: center;
    }

    .footer-contact-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .btn-icon {
        font-size: 1.1rem;
    }

    .footer-address {
        justify-content: center;
        text-align: center;
        padding: 0.8rem 0;
    }

    .footer-section {
        padding: 0.5rem;
    }

    .service-areas-list li:hover {
        transform: translateX(4px);
    }

    .highlight-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .footer-section:hover h3::after {
        width: 40px;
    }
}

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

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .page-header {
        padding: 120px 0 80px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-item img {
        height: 220px;
    }

    .cta-button,
    .whatsapp-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .service-item,
    .testimonial-item,
    .contact-info,
    .contact-map {
        padding: 2rem 1.5rem;
    }
}

/* Performans Optimizasyonları */
img {
    max-width: 100%;
    height: auto;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .cta-button,
    .whatsapp-btn {
        display: none;
    }
}

/* Smooth animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b4b8a 100%);
} 