/* Contact Page Styles */
body {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding-top: 80px; /* Account for fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(240,240,240,0.8);
}

/* Business Information */
.business-info {
    padding: 3rem 0;
    background: rgba(0,0,0,0.3);
}

.business-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.business-name {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.business-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(240,240,240,0.8);
}

/* Address Section */
.address-section {
    padding: 4rem 0;
}

.address-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.address-info {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.section-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.address-details {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.address-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.address-text p {
    margin: 0.3rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f0f0f0;
}

.map-container {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* Contact Information */
.contact-info {
    padding: 4rem 0;
    background: rgba(0,0,0,0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.3);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.contact-link {
    color: #4a90e2;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #6ba3e8;
    text-decoration: underline;
}

/* Opening Hours */
.opening-hours {
    padding: 4rem 0;
}

.hours-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.hours-icon {
    font-size: 3rem;
}

.hours-content {
    flex: 1;
}

.hours-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    color: #ffffff;
}

.hours-time {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #4a90e2;
}

.hours-note {
    font-size: 0.95rem;
    color: rgba(240,240,240,0.7);
    font-style: italic;
}
/* ... mevcut css kodların ... */

/* Yeni ek: Hours wrapper */
.hours-wrapper {
    display: flex;
    gap: 2rem; /* Aradaki boşluk */
    justify-content: center; 
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hours-wrapper {
        flex-direction: column;
        align-items: center;
    }
}



/* Call to Action */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: #ffffff;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(240,240,240,0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cta-btn.primary {
    background: #4a90e2;
    color: #ffffff;
    border-color: #4a90e2;
}

.cta-btn.primary:hover {
    background: #6ba3e8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #f0f0f0;
    border-color: rgba(255,255,255,0.3);
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .business-name {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .address-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hours-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .business-name {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .address-info,
    .contact-card,
    .hours-card {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .hours-icon {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.contact-link:focus,
.cta-btn:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .contact-card,
    .cta-btn {
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Loading animation for map */
.map-container {
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
}

.map-container iframe {
    position: relative;
    z-index: 2;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
} 
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

	