/* Locations Page Container */
.container-customize {
    background-image: url(../images/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: auto;
}

.locations-page {
    width: calc(100% - 40px);
    margin: auto;
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 0;
}

/* Hero Panel */
.locations-hero {
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 80px 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.locations-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF7E21, #FFB347);
    animation: slideIn 1.5s ease-out 0.5s both;
}

.locations-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.locations-hero-tagline {
    font-size: 1.4rem;
    color: #f3f3f3;
    font-family: "Poppins", sans-serif;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Location Cards Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF7E21, #FFB347);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.location-card:hover::before {
    opacity: 1;
}

.location-card-icon {
    font-size: 3rem;
    color: #FF7E21;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 126, 33, 0.3);
    transition: all 0.3s ease;
}

.location-card:hover .location-card-icon {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(255, 126, 33, 0.5);
}

.location-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    margin-bottom: 25px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.store-address {
    font-size: 1.1rem;
    color: #f3f3f3;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 0;
}

.store-district {
    font-size: 0.95rem;
    color: #FFB347;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    margin: 0;
}

.maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF7E21;
    background: rgba(255, 126, 33, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 126, 33, 0.3);
    margin-top: 8px;
}

.maps-link:hover {
    background: rgba(255, 126, 33, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 126, 33, 0.3);
}

.maps-link i {
    font-size: 1rem;
}

/* Interactive Map Section */
.map-section {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.map-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.map-container {
    width: 100%;
    margin: 0 auto;
}

.map-frame {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.map-frame:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-frame iframe {
    border-radius: 12px;
    filter: contrast(1.1) saturate(1.2);
    transition: filter 0.3s ease;
}

.map-frame:hover iframe {
    filter: contrast(1.2) saturate(1.3);
}

.map-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.map-overlay-content {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.map-overlay-content i {
    color: #FF7E21;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 126, 33, 0.3);
}

.map-overlay-content p {
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Contact Info Strip */
.contact-info-strip {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-strip-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #FF7E21;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 126, 33, 0.3);
}

.contact-strip-link {
    color: #fff;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-strip-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF7E21, #FFB347);
    transition: width 0.3s ease;
}

.contact-strip-link:hover {
    color: #FFB347;
    text-shadow: 0 0 10px rgba(255, 126, 33, 0.3);
}

.contact-strip-link:hover::after {
    width: 100%;
}

.social-strip {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-strip-text {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.social-strip-icons {
    display: flex;
    gap: 12px;
}

.social-strip-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FF7E21;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-strip-link:hover {
    transform: scale(1.15);
    background: rgba(255, 126, 33, 0.2);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 126, 33, 0.3);
}

/* Mobile Menu Styles - İletişim sayfası için */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(23, 23, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    padding: 20px 0;
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: "Funnel Display", sans-serif;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.mobile-menu-link:hover {
    background-color: rgba(255, 126, 33, 0.2);
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .locations-page {
        padding: 50px 20px;
        gap: 40px;
        width: calc(100% - 40px);
    }
    
    .locations-hero-title {
        font-size: 3.5rem;
    }
    
    .locations-hero-tagline {
        font-size: 1.3rem;
    }
    
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .contact-group {
        gap: 30px;
    }
    
    .map-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    /* Mobile menu display */
    .mobile-menu-btn {
        display: block !important;
    }
    
    .navbar-left, .navbar-right {
        display: none;
    }

    .locations-page {
        padding: 30px 15px;
        gap: 30px;
        width: calc(100% - 30px);
    }
    
    .locations-hero {
        padding: 50px 25px;
    }
    
    .locations-hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }
    
    .locations-hero-tagline {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-card {
        padding: 30px 20px;
    }
    
    .location-card h3 {
        font-size: 1.6rem;
    }
    
    .location-card-icon {
        font-size: 2.5rem;
    }
    
    .map-title {
        font-size: 2rem;
    }
    
    .map-frame {
        padding: 15px;
    }
    
    .map-frame iframe {
        height: 350px;
    }
    
    .map-overlay {
        top: 25px;
        right: 25px;
        left: 25px;
        padding: 12px 16px;
    }
    
    .map-overlay-content {
        font-size: 0.85rem;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .contact-info-strip {
        padding: 25px 20px;
    }
    
    .contact-strip-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .contact-group {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .social-strip {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-strip-text {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .locations-page {
        padding: 20px 10px;
        width: calc(100% - 20px);
    }
    
    .locations-hero {
        padding: 40px 20px;
    }
    
    .locations-hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .locations-hero-tagline {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .location-card {
        padding: 25px 15px;
    }
    
    .location-card h3 {
        font-size: 1.4rem;
    }
    
    .location-card-icon {
        font-size: 2.2rem;
    }
    
    .store-address {
        font-size: 1rem;
    }
    
    .store-district {
        font-size: 0.9rem;
    }
    
    .maps-link {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .map-title {
        font-size: 1.8rem;
    }
    
    .map-frame {
        padding: 10px;
    }
    
    .map-frame iframe {
        height: 280px;
    }
    
    .map-overlay {
        position: static;
        margin-bottom: 15px;
        padding: 10px 15px;
    }
    
    .map-overlay-content {
        font-size: 0.8rem;
    }
    
    .contact-info-strip {
        padding: 20px 15px;
    }
    
    .contact-item {
        gap: 8px;
    }
    
    .contact-item i {
        font-size: 1.1rem;
    }
    
    .contact-strip-link {
        font-size: 0.9rem;
    }
    
    .social-strip-text {
        font-size: 0.9rem;
    }
    
    .social-strip-icons {
        gap: 8px;
    }
    
    .social-strip-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .locations-hero-title {
        font-size: 2rem;
    }
    
    .locations-hero-tagline {
        font-size: 0.95rem;
    }
    
    .location-card h3 {
        font-size: 1.3rem;
    }
    
    .map-title {
        font-size: 1.6rem;
    }
    
    .map-frame iframe {
        height: 250px;
    }
    
    .contact-strip-link {
        font-size: 0.85rem;
    }
}
