/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    color: #1a1a1a;
    padding: 1.2rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}

.logo img {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo h1 {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.nav a:hover {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #333333;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a1a;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Hamburger Icon Animation */
.mobile-menu-toggle i {
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover i {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    /* Varsayılan background - JavaScript ile güncellenebilir */
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.3) 0%, 
                rgba(0, 0, 0, 0.5) 25%, 
                rgba(0, 0, 0, 0.7) 50%, 
                rgba(0, 0, 0, 0.6) 75%, 
                rgba(0, 0, 0, 0.4) 100%), 
                url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Hero background image için JavaScript güncellemelerini destekle */
.hero[style*="background-image"] {
    /* JavaScript ile set edilen background-image'i öncelikli yap */
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
                rgba(255,255,255,0.05) 0%, 
                rgba(255,255,255,0.02) 30%, 
                transparent 60%, 
                rgba(0,0,0,0.1) 100%);
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Hero section hover efekti */
.hero:hover::before {
    opacity: 1;
    background: linear-gradient(45deg, 
                rgba(255,255,255,0.08) 0%, 
                rgba(255,255,255,0.04) 30%, 
                transparent 60%, 
                rgba(0,0,0,0.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 650px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
}

.about::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="50" cy="50" r="0.5" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #eeeeee 100%);
}

.menu h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.category-btn {
    background: white;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    /* transition disabled */
}

.category-btn:hover,
.category-btn.active {
    background: #1a1a1a;
    color: white;
    /* transform disabled */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.menu-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* transition disabled */
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* transition disabled */
}


.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333333;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.contact-preview {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    /* transition disabled */
}


.contact-item i {
    font-size: 1.5rem;
    color: #1a1a1a;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #666;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
}

.contact-cta {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-cta p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Sosyal Medya Bölümü */
.social-media-section {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.social-media-section h4 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-media-section h4::before {
    content: "📱";
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Sosyal medya link hover renkleri */
.social-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Facebook hover */
.social-link[href*="facebook"]:hover {
    background: #1877f2;
}

/* Instagram hover */
.social-link[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Twitter hover */
.social-link[href*="twitter"]:hover {
    background: #1da1f2;
}

/* YouTube hover */
.social-link[href*="youtube"]:hover {
    background: #ff0000;
}

/* WhatsApp hover */
.social-link[href*="whatsapp"]:hover {
    background: #25d366;
}

/* LinkedIn hover */
.social-link[href*="linkedin"]:hover {
    background: #0077b5;
}

/* TikTok hover */
.social-link[href*="tiktok"]:hover {
    background: #000000;
}

/* Telegram hover */
.social-link[href*="telegram"]:hover {
    background: #0088cc;
}

/* Snapchat hover */
.social-link[href*="snapchat"]:hover {
    background: #fffc00;
    color: #000;
}

/* Pinterest hover */
.social-link[href*="pinterest"]:hover {
    background: #bd081c;
}

/* Email hover */
.social-link[href*="mailto:"]:hover {
    background: #ea4335;
}

/* Phone hover */
.social-link[href*="tel:"]:hover {
    background: #34a853;
}

/* Website hover */
.social-link:not([href*="facebook"]):not([href*="instagram"]):not([href*="twitter"]):not([href*="youtube"]):not([href*="whatsapp"]):not([href*="linkedin"]):not([href*="tiktok"]):not([href*="telegram"]):not([href*="snapchat"]):not([href*="pinterest"]):not([href*="mailto:"]):not([href*="tel:"])[href*="http"]:hover {
    background: #4285f4;
}

/* Genel hover (eğer yukarıdaki hiçbiri eşleşmezse) */
.social-link:hover:not([href*="facebook"]):not([href*="instagram"]):not([href*="twitter"]):not([href*="youtube"]):not([href*="whatsapp"]):not([href*="linkedin"]):not([href*="tiktok"]):not([href*="telegram"]):not([href*="snapchat"]):not([href*="pinterest"]):not([href*="mailto:"]):not([href*="tel:"]):not([href*="http"]) {
    background: #333;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    font-size: 1.5rem;
}

.footer-info p {
    color: #e0e0e0;
}

/* Mobile Menu Header - Hidden by default */
.mobile-menu-header {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(180deg, 
            rgba(26, 26, 26, 0.95) 0%, 
            rgba(60, 60, 60, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 0 40px 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: stretch;
        padding: 0 30px;
        margin: 0;
        list-style: none;
    }
    
    .nav a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 16px 24px;
        border-radius: 12px;
        background: transparent;
        color: #ffffff !important;
        text-align: left;
        width: 100%;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border: none;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin: 4px 0;
    }
    
    .nav a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        transition: width 0.3s ease;
        border-radius: 12px;
    }
    
    .nav a::after {
        content: '';
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: #ffffff;
        border-radius: 50%;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav a:hover::before {
        width: 100%;
    }
    
    .nav a:hover::after {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
    
    .nav a:hover {
        background: transparent;
        color: #ffffff !important;
        transform: translateX(8px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
    
    .nav a:hover span {
        color: #ffffff;
        position: relative;
        z-index: 1;
    }
    
    .nav a span {
        position: relative;
        z-index: 1;
        transition: color 0.3s ease;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #1a1a1a;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
        color: #1a1a1a;
        border-color: rgba(0, 0, 0, 0.2);
    }
    
    .mobile-menu-toggle.active {
        background: rgba(0, 0, 0, 0.2);
        transform: rotate(90deg);
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    /* Mobile Menu Backdrop */
    .nav::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: -1;
    }
    
    .nav.active::after {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Menu Header */
    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(40, 40, 40, 0.9) 100%);
        z-index: 0;
    }
    
    .mobile-menu-header {
        position: relative;
        z-index: 1;
        padding: 20px 30px 15px;
        text-align: center;
        margin-bottom: 10px;
        display: block;
    }
    
    .mobile-menu-header h3 {
        color: #ffffff;
        font-size: 1.3rem;
        font-weight: 600;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Mobile hero adjustments */
    .hero {
        background-attachment: scroll;
        margin-top: 70px;
    }
    
    /* Mobile header backdrop filter optimization */
    .header {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .menu-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-products {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-preview {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-cta {
        order: -1;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .about h2,
    .menu h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    /* Mobile Menu for Small Screens */
    .nav {
        width: 280px;
    }
    
    .nav a {
        font-size: 1rem;
        padding: 14px 20px;
        color: #ffffff !important;
    }
    
    .nav a:hover {
        color: #ffffff !important;
    }
    
    .mobile-menu-toggle {
        font-size: 1.4rem;
        width: 44px;
        height: 44px;
    }
    
    /* Smaller mobile menu adjustments */
    .nav ul {
        padding: 0 20px;
    }
    
    .mobile-menu-header {
        padding: 15px 20px 10px;
    }
    
    .mobile-menu-header h3 {
        font-size: 1.2rem;
    }
    
    /* Header responsive adjustments */
    .header {
        padding: 1rem 0;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
}

/* Animasyonlar */
/* Animations disabled for stability */
.fade-in-up {
    opacity: 1;
    /* transform disabled */
}

/* Yükleme animasyonu */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #1a1a1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gizli sınıf */
.hidden {
    display: none !important;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #eeeeee);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-size: 2.5rem;
    font-weight: 700;
}

.map-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-actions {
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    border-top: 1px solid #e0e0e0;
}

.map-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-actions .btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-placeholder {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
    color: #666666;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #333333;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.map-placeholder .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-placeholder .btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Map */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-placeholder {
        padding: 60px 20px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
}