/*
Theme Name: Arıkan İlaçlama Tam Kopyası
Description: Next.js projesinin bire bir WordPress kopyası
Version: 1.0
Author: Mesut Ay
*/

/* CSS Reset ve Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles - Exact Next.js Copy */
.site-header {
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container img {
    height: 3rem;
    width: auto;
}

/* Desktop Navigation */
.main-navigation {
    display: none;
}

@media (min-width: 768px) {
    .main-navigation {
        display: flex;
        gap: 1.5rem;
    }
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
}

.nav-item > a:hover {
    color: #2563eb;
}

/* Dropdown Menus */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 12rem;
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: #f9fafb;
    color: #2563eb;
}

/* Contact Info in Header */
.contact-info {
    display: none;
}

@media (min-width: 1024px) {
    .contact-info {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        color: #2563eb;
        font-weight: 600;
    }
}

.contact-info svg {
    width: 1rem;
    height: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Navigation */
.mobile-navigation {
    display: none;
    padding-bottom: 1rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-navigation.active {
    display: block;
}

@media (min-width: 768px) {
    .mobile-navigation {
        display: none !important;
    }
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
}

.mobile-nav-menu a {
    color: #374151;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-menu a:hover {
    color: #2563eb;
}

.mobile-nav-menu .dropdown-label {
    color: #6b7280;
    padding: 0.5rem 0;
    font-weight: 500;
}

.mobile-nav-menu .dropdown-items a {
    padding-left: 1rem;
}

.mobile-nav-menu .mobile-contact {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #16a34a;
    font-weight: 600;
    padding: 0.5rem 0;
}

/* Hero Section - Exact Next.js Gradient */
.hero-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    padding: 5rem 0;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title .highlight {
    color: #2563eb;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: #1d4ed8;
    color: white;
}

.btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Features Section - Exact 4 Grid Layout */
.features-section {
    padding: 4rem 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: box-shadow 0.3s;
}

.feature-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    color: #2563eb;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
}

.feature-title {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #4b5563;
}

/* Services Section - Exact 3 Cards */
.services-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 32rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-image {
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.service-features svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    flex-shrink: 0;
}

/* Products Section - Exact 6 Products Grid */
.products-section {
    padding: 5rem 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 75rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: #f9fafb;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-image {
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.product-title {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.product-specs {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.product-specs p {
    margin-bottom: 0.5rem;
}

.product-specs span {
    font-weight: 600;
}

.product-button {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    display: block;
    transition: background 0.3s;
}

.product-button:hover {
    background: #1d4ed8;
    color: white;
}

.view-all-products {
    text-align: center;
    margin-top: 3rem;
}

.view-all-products a {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background: #2563eb;
    color: white;
    font-weight: bold;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s;
    gap: 0.5rem;
}

.view-all-products a:hover {
    background: #1d4ed8;
    color: white;
}

.view-all-products svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* About Section - Exact Layout */
.about-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.about-content {
    max-width: 64rem;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-card-image {
    margin-bottom: 1.5rem;
}

.about-card-image img {
    width: 100%;
    height: 12rem;
    object-fit: contain;
    border-radius: 0.5rem;
    background: #f9fafb;
}

.about-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    font-size: 0.875rem;
}

.pest-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.pest-item svg {
    width: 1rem;
    height: 1rem;
    color: #2563eb;
    flex-shrink: 0;
}

/* Contact Section - Exact Grid Layout */
.contact-section {
    padding: 5rem 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    max-width: 75rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: #16a34a;
    margin-top: 0.25rem;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-details p:first-child {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.contact-details p:not(:first-child) {
    color: #4b5563;
}

.contact-form-card {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 0.75rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.submit-button:hover {
    background: #1d4ed8;
}

.submit-button:disabled {
    background: #9ca3af;
    color: #6b7280;
    cursor: not-allowed;
}

.form-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.form-message.success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Footer - Exact 3 Column Layout */
.site-footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-brand svg {
    width: 2rem;
    height: 2rem;
    color: #16a34a;
    margin-top: 0.25rem;
}

.footer-brand-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0;
}

.footer-brand-content p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.footer-brand-description {
    color: #9ca3af;
    margin-top: 1rem;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #16a34a;
}

.footer-contact {
    color: #9ca3af;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #93c5fd;
}

/* SVG Icons - Exactly matching Lucide React icons */
.icon-phone::before {
    content: "📞";
}

.icon-mail::before {
    content: "✉️";
}

.icon-map-pin::before {
    content: "📍";
}

.icon-shield::before {
    content: "🛡️";
}

.icon-zap::before {
    content: "⚡";
}

.icon-clock::before {
    content: "🕐";
}

.icon-star::before {
    content: "⭐";
}

.icon-check-circle::before {
    content: "✅";
}

.icon-chevron-down::before {
    content: "⬇️";
}

.icon-menu::before {
    content: "☰";
}

.icon-x::before {
    content: "✖️";
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.w-full {
    width: 100%;
}

.font-bold {
    font-weight: bold;
}

.font-semibold {
    font-weight: 600;
}

.transition-colors {
    transition: color 0.3s;
}

.transition-all {
    transition: all 0.3s;
}

/* Print Styles */
@media print {
    .site-header,
    .mobile-menu-button,
    .mobile-navigation,
    .hero-buttons,
    .contact-form-card,
    .site-footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero-section,
    .features-section,
    .services-section,
    .products-section,
    .about-section,
    .contact-section {
        background: white !important;
        padding: 1rem 0 !important;
    }
}

/* Tailwind-style Icon Size Utilities */
.h-4, .w-4 { width: 1rem; height: 1rem; }
.h-5, .w-5 { width: 1.25rem; height: 1.25rem; }
.h-6, .w-6 { width: 1.5rem; height: 1.5rem; }
.h-8, .w-8 { width: 2rem; height: 2rem; }
.h-12, .w-12 { width: 3rem; height: 3rem; }

/* Icon-specific styling for better visual consistency */
.h-4.w-4 { width: 16px; height: 16px; }
.h-5.w-5 { width: 20px; height: 20px; }
.h-6.w-6 { width: 24px; height: 24px; }
.h-8.w-8 { width: 32px; height: 32px; }
.h-12.w-12 { width: 48px; height: 48px; }

/* Color utilities */
.text-green-600 { stroke: #059669; }
.text-yellow-500 { stroke: #eab308; }
.text-orange-600 { stroke: #ea580c; }
.text-gray-500 { stroke: #6b7280; }
.text-purple-600 { stroke: #9333ea; }
/* =========================
   MOBİL MENÜ JAVASCRIPT FİX
   ========================= */

/* Mobil menü buton animasyonu */
.mobile-menu-button {
    position: relative;
    z-index: 60;
    transition: all 0.3s ease;
}

.mobile-menu-button.active {
    transform: rotate(45deg);
}

/* Mobil navigasyon düzeltmeleri */
.mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 55;
    overflow-y: auto;
}

.mobile-navigation.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-menu {
    padding: 80px 2rem 2rem;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    color: #10b981;
    padding-left: 10px;
}

/* =========================
   24/7 ACİL ÇAĞRI BUTONU
   ========================= */

.emergency-call-button {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
}

.emergency-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    max-width: 200px;
}

.emergency-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.6);
    color: white;
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4); }
    50% { box-shadow: 0 8px 25px rgba(220, 38, 38, 0.8), 0 0 0 8px rgba(220, 38, 38, 0.1); }
}

.emergency-icon {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 8px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.emergency-title {
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.emergency-subtitle {
    font-size: 10px;
    opacity: 0.9;
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 768px) {
    .emergency-call-button {
        right: 15px;
        top: auto;
        bottom: 90px; /* WhatsApp butonunun üstünde */
        transform: none;
    }
    
    .emergency-btn {
        padding: 10px 12px;
        border-radius: 40px;
        max-width: 160px;
    }
    
    .emergency-text {
        font-size: 11px;
    }
    
    .emergency-title {
        font-size: 11px;
    }
    
    .emergency-subtitle {
        font-size: 9px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        /* Mobilde de sabit konum */
        position: fixed !important;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-tooltip {
        bottom: 65px;
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* =========================
   RESPONSIVE ADJUSTMENTS
   ========================= */

/* Tablet görünümü */
@media (max-width: 1024px) {
    .emergency-call-button {
        right: 15px;
    }
    
    .emergency-btn {
        max-width: 180px;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .emergency-text {
        display: none;
    }
    
    .emergency-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 12px;
        max-width: none;
    }
    
    .location-btn span {
        display: none;
    }
    
    .location-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 8px;
    }
}

/* Z-index hierarchy */
.emergency-call-button { z-index: 1000; }
.whatsapp-float { z-index: 1000; }
.location-share { z-index: 999; }
.mobile-navigation { z-index: 55; }
.mobile-menu-button { z-index: 60; }
.site-header { z-index: 50; }
/* =========================
   CONTACT SECTION WHATSAPP STYLING
   ========================= */

.contact-item.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-item.whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-item.whatsapp .contact-icon {
    color: white;
}

.contact-item.whatsapp .contact-details p {
    color: white;
    margin: 0;
}

.contact-item.whatsapp .contact-details p:first-child {
    font-weight: 600;
    font-size: 1.1rem;
}

.whatsapp-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
}
