/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3%;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.8rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo h1 .owner-name {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    color: #3498db;
    position: relative;
    animation: bluePulse 1.5s infinite ease-in-out;
}

.logo h1 .owner-name .phone-animated {
    margin-right: 0.4rem;
    color: #3498db;
    animation: bluePulse 1.5s infinite ease-in-out;
    transition: color 0.3s;
    font-size: 1rem;
    vertical-align: middle;
}

.logo h1 .owner-name:hover .phone-animated {
    color: #1abc9c;
}

@keyframes bluePulse {
    0% { color: #3498db; }
    25% { color: #1abc9c; }
    50% { color: #2980b9; }
    75% { color: #8e44ad; }
    100% { color: #3498db; }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #3498db;
}

/* Hero Section with Slider */
.hero {
    margin-top: 80px;
    position: relative;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding-top: 0px;
    scroll-margin-top: 100px;
}

.swiper {
    width: 100%;
    height: 700px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out;
}

.swiper.swiper-initialized {
    opacity: 1;
    visibility: visible;
}

.swiper-slide {
    position: relative;
}

.swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.03));
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
    background: none;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.slide-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #3498db, #2980b9);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.2s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 10;
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    background: linear-gradient(to right, #2980b9, #3498db);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3498db;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #3498db, #2980b9);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* About Section */
.about {
    padding: 6rem 5%;
    background: #fff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%233498db" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.about h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #2c3e50;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3498db;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
}

/* Contact Section */
.contact {
    padding: 6rem 5% 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%233498db" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.contact h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #3498db;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-desc {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: 0;
    letter-spacing: 0.2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 450px;
}

.info-item {
    background: #fff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(52,152,219,0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: box-shadow 0.3s, transform 0.3s;
    border-left: 4px solid #3498db10;
}

.info-item:hover {
    box-shadow: 0 8px 32px rgba(52,152,219,0.18);
    transform: translateY(-3px) scale(1.02);
    border-left: 4px solid #3498db;
}

.info-item i {
    font-size: 1.2rem;
    color: white;
    background: transparent;
    padding: 0;
    min-width: auto;
    height: auto;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    color: #505764;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.info-item .note {
    font-size: 0.8rem;
    color: #e74c3c;
    font-style: italic;
    margin-top: 0.2rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Telefon butonu */
.info-item:nth-child(1) .contact-link {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.info-item:nth-child(1) .contact-link:hover {
    background: linear-gradient(135deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76,175,80,0.3);
}

/* WhatsApp butonu */
.info-item:nth-child(2) .contact-link {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.info-item:nth-child(2) .contact-link:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* Instagram butonu */
.info-item:nth-child(3) .contact-link {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.info-item:nth-child(3) .contact-link:hover {
    background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220,39,67,0.3);
}

/* Çalışma saatleri kartı için özel stil - KALDIRILDI */
/* .info-item:nth-child(4) {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid #2c3e50;
}

.info-item:nth-child(4):hover {
    border-left: 4px solid #3498db;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
} */

/* Map Section */
.map {
    width: 100%;
    height: 500px;
    position: relative;
}

.map iframe {
    filter: grayscale(0.5) contrast(1.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 3rem 5%;
    text-align: center;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: #fff;
    font-size: 1.8rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #3498db;
    transform: translateY(-5px);
}

footer p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Simple mobile styles */
    .hero {
        min-height: calc(100vh - 80px);
    }
    
    .swiper {
        height: calc(100vh - 80px);
    }
    
    /* Footer mobil ayarları */
    footer {
        padding: 1.5rem 3%;
    }
    
    footer p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0.7rem 0.5rem 0.7rem 0.5rem;
        width: 100vw;
    }
    .logo {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        width: auto;
        margin: 0;
        padding: 0;
        gap: 0.7rem;
    }
    .owner-mobile {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin: 0 0.5rem 0 0;
        padding: 0;
    }
    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        margin: 0 0.5rem 0 0;
        z-index: 1200;
        position: relative;
    }
    .hamburger span {
        display: block;
        width: 24px;
        height: 3px;
        background: #3498db;
        margin: 3px 0;
        border-radius: 2px;
        transition: 0.4s;
    }
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    .desktop-title {
        display: none !important;
    }
    .owner-mobile .avci-name {
        font-size: 1.15rem;
        font-weight: 700;
        letter-spacing: 1px;
        color: #3498db;
        animation: bluePulse 1.5s infinite ease-in-out;
        margin-bottom: 0.1rem;
        text-align: left;
    }
    .owner-mobile .owner-phone, .owner-mobile .owner-phone a {
        text-decoration: none !important;
        font-size: 1.05rem;
        color: #3498db;
        animation: bluePulse 1.5s infinite ease-in-out;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        text-align: left;
        margin-left: 0;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        background: #fff;
        box-shadow: 0 8px 24px rgba(44,62,80,0.08);
        padding: 1.2rem 0 1.2rem 0;
        display: none;
        z-index: 1100;
        flex-direction: column;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        margin: 0.7rem 0;
        text-align: left;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: 0.7rem 1.5rem;
        color: #2c3e50;
    }
    .logo h1 .owner-name {
        display: none;
    }

    .swiper {
        height: calc(100vh - 60px);
        min-height: 350px;
        max-height: 100vh;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .swiper-slide {
        overflow: hidden;
    }
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .slide-content {
        width: 95%;
        max-width: 98vw;
        padding: 0.5rem 0.5rem;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0,0,0,0.18);
        border-radius: 10px;
    }
    .slide-content h2 {
        font-size: 1.1rem !important;
    }
    .slide-content p {
        font-size: 0.85rem !important;
    }

    .services h2,
    .about h2 {
        font-size: 2rem;
    }

    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact {
        padding: 3rem 5% 4rem 5%;
    }

    .contact-desc {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .service-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        min-width: auto !important;
        max-width: none !important;
    }

    .service-card {
        padding: 1rem !important;
        min-width: auto !important;
        max-width: none !important;
        width: 100% !important;
    }

    .service-card i {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .service-card h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .service-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .slide-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .contact-info {
        max-width: 100%;
    }

    .info-item {
        padding: 0.9rem 1rem;
    }

    .contact-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
    
    .info-item i {
        font-size: 1.1rem;
    }
    
    .info-item h3 {
        font-size: 1rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }

    .info-item .note {
        font-size: 0.75rem;
    }

    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .contact-map {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .map-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .map-card h3 {
        text-align: center;
        margin-bottom: 1rem;
    }

    h1, .desktop-title { font-size: 1.1rem !important; }
    h2 { font-size: 1.2rem !important; }
    h3 { font-size: 1rem !important; }
    p, li, a, span, label, input, textarea { font-size: 0.95rem !important; }
    .slide-content h2 { font-size: 1.3rem !important; }
    .slide-content p { font-size: 1rem !important; }
    .slide-btn, .service-btn, .contact-link { font-size: 0.95rem !important; padding: 0.6rem 1.1rem !important; }
    .service-card h3 { font-size: 1rem !important; }
    .service-card p { font-size: 0.9rem !important; }
    .about, .contact, .services { padding: 2.2rem 3% !important; }
    .about h2, .contact h2, .services h2 { font-size: 1.1rem !important; }
    .map-card h3 { font-size: 1rem !important; }
    .info-item h3 { font-size: 0.95rem !important; }
    .info-item p { font-size: 0.9rem !important; }
    .contact-desc { font-size: 0.95rem !important; }

    .swiper-pagination-bullet {
        width: 18px !important;
        height: 18px !important;
        margin: 0 7px !important;
        background: #3498db !important;
        opacity: 0.7;
        border-radius: 50%;
        transition: background 0.3s, opacity 0.3s;
    }
    .swiper-pagination-bullet-active {
        background: #1abc9c !important;
        opacity: 1;
    }

    .contact-mobile {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        margin: 2.2rem 0 1.5rem 0;
        align-items: stretch;
    }
    .mobile-contact-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        font-size: 1.15rem;
        font-weight: 700;
        padding: 1.1rem 0;
        border-radius: 12px;
        background: #3498db;
        color: #fff;
        text-decoration: none;
        box-shadow: 0 4px 18px rgba(52,152,219,0.10);
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
        position: relative;
        z-index: 5;
    }
    .mobile-contact-btn:active {
        background: #217dbb;
        color: #fff;
    }
    .mobile-contact-btn.whatsapp {
        background: #25D366;
        color: #fff;
    }
    .mobile-contact-btn.instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: #fff;
    }
    .desktop-contact-info {
        display: none !important;
    }

    .mobile-map-card {
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 6px 24px rgba(52,152,219,0.13);
        margin: 1rem 0 0.7rem 0;
        padding: 0.5rem 0.2rem 0.8rem 0.2rem;
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }
    .mobile-map-card iframe {
        width: 100vw;
        max-width: 100vw;
        min-height: 220px;
        height: 48vw;
        max-height: 340px;
        border-radius: 14px;
        border: none;
        box-shadow: 0 2px 10px rgba(52,152,219,0.08);
        margin: 0 auto;
        display: block;
        box-sizing: border-box;
        overflow: hidden;
        pointer-events: auto !important;
        touch-action: auto !important;
        background: #fff;
        position: relative;
        z-index: 1;
    }

    .swiper-pagination {
        display: none !important;
    }

    .mobile-hours-card {
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 4px 18px rgba(52,152,219,0.10);
        margin: 1.1rem 0 0.5rem 0;
        padding: 1.1rem 0.7rem;
        width: 100%;
        box-sizing: border-box;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none !important;
    }
}
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    .owner-mobile {
        display: none !important;
    }
    .contact-map-wrapper {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
        gap: 40px !important;
    }
    .contact-info {
        flex: 1 1 320px;
        width: auto !important;
        max-width: 340px !important;
        margin: 0 !important;
    }
    .contact-map {
        flex: 2 1 600px;
        width: auto;
        max-width: 1000px !important;
        margin: 0 !important;
    }
    .contact-mobile {
        display: none !important;
    }
    .desktop-contact {
        display: flex !important;
    }
}

/* İletişim ve harita yan yana */
.contact-map-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 400px;
}
.contact-map {
    flex: 1 1 500px;
    min-width: 300px;
    max-width: 1000px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-map iframe, .map-card iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    pointer-events: auto !important;
    position: relative;
    overflow: visible;
}
@media (max-width: 900px) {
    .contact-map-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .contact-map, .contact-info {
        max-width: 100%;
    }
    .contact-map iframe {
        height: 350px;
    }
}

.instagram-btn {
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff !important;
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(221,42,123,0.08);
    transition: background 0.3s, color 0.3s;
}

.instagram-btn:hover {
    background: linear-gradient(90deg, #515bd4, #8134af, #dd2a7b, #f58529);
    color: #fff;
}

.map-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 320px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.map-card h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
}

.map-address {
    font-size: 1rem;
    color: #3498db;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-address i {
    color: #e74c3c;
    font-size: 1.1rem;
}

@media (min-width: 769px) {
    .mobile-hours-card {
        display: none !important;
    }
}

.swiper-pagination {
    display: none !important;
}