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

:root {
    --bg-beige: #f5f0e8;
    --bg-beige-light: #faf8f5;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --accent: #d4a574;
    --border-light: #e8e0d6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-beige);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.menu-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-beige);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    padding-bottom: 2rem;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Header */
.menu-header {
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    position: relative;
    background-color: var(--bg-beige);
}

.restaurant-name {
    margin-bottom: 0.5rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.restaurant-logo {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.script-font {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-size: 3rem;
    font-weight: normal;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.restaurant-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: -0.5rem;
    font-weight: 300;
}

.instagram-link {
    position: absolute;
    top: 1.5rem;
    right: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 40px;
    height: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: -webkit-linear-gradient(180deg, #E8E3DF 0%, #DCD6D1 100%);
    background: linear-gradient(180deg, #E8E3DF 0%, #DCD6D1 100%);
    border-radius: 20px;
    padding: 0.5rem;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.instagram-link:hover {
    opacity: 0.8;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.instagram-link svg {
    width: 24px;
    height: 24px;
}

/* Menu Title */
.menu-title {
    padding: 0 1rem 1.5rem;
    text-align: left;
}

.menu-title .script-font {
    font-size: 2rem;
    margin: 0;
}

/* Categories Container */
.categories-container {
    padding: 0 1rem;
}

.category-section {
    margin-bottom: 2rem;
}

.category-header {
    margin-bottom: 1.5rem;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.category-image-wrapper:hover {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper:active {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
}

.category-image {
    width: 100%;
    height: 200px;
    -webkit-object-fit: cover;
    object-fit: cover;
    display: block;
}

.category-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e8e0d6 0%, #d4c4b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(245, 240, 232, 0.95);
    padding: 0.75rem 1rem;
    backdrop-filter: blur(10px);
}

.category-label span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
}

/* Products List */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.category-section.active .products-list {
    max-height: 10000px;
    opacity: 1;
    padding-top: 1.5rem;
}

.product-item {
    background: var(--bg-beige-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-section.active .product-item {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.category-section.active .product-item[data-product-index="0"] {
    transition-delay: 0.05s;
}

.category-section.active .product-item[data-product-index="1"] {
    transition-delay: 0.1s;
}

.category-section.active .product-item[data-product-index="2"] {
    transition-delay: 0.15s;
}

.category-section.active .product-item[data-product-index="3"] {
    transition-delay: 0.2s;
}

.category-section.active .product-item[data-product-index="4"] {
    transition-delay: 0.25s;
}

.category-section.active .product-item[data-product-index="5"] {
    transition-delay: 0.3s;
}

.category-section.active .product-item[data-product-index="6"] {
    transition-delay: 0.35s;
}

.category-section.active .product-item[data-product-index="7"] {
    transition-delay: 0.4s;
}

.category-section.active .product-item[data-product-index="8"] {
    transition-delay: 0.45s;
}

.category-section.active .product-item[data-product-index="9"] {
    transition-delay: 0.5s;
}

.product-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-beige);
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-object-fit: cover;
    transition: transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
}

.product-item:hover .product-image {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e0d6 0%, #d4c4b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-info {
    padding: 1.25rem;
    -webkit-flex: 1;
    flex: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.product-meta {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    gap: 1rem;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-calories {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Porsiyon Seçenekleri */
.product-portions {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: var(--bg-beige);
    border-radius: 8px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
}

.portion-option {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 0.5rem;
    background: var(--bg-beige-light);
    border-radius: 5px;
}

.portion-name {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.portion-price {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Category Navigation */
.category-nav-wrapper {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.category-nav-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.category-nav-buttons {
    display: -webkit-flex;
    display: flex;
    gap: 0.75rem;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    width: max-content;
}

.category-nav-button {
    padding: 0.75rem 1.5rem;
    background: var(--bg-beige-light);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.category-nav-button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.category-nav-button.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: var(--bg-beige);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.category-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: var(--bg-beige-light);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.category-nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.category-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .category-nav-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .category-nav-btn {
        width: 36px;
        height: 36px;
    }
}

/* About Page */
.about-content {
    padding: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.about-text {
    background: var(--bg-beige-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-line;
}

.contact-info {
    background: var(--bg-beige-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-item {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-item span {
    color: var(--text-light);
}

.back-to-menu {
    text-align: center;
    margin-top: 2rem;
}

.btn-back {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--text-dark);
    color: var(--bg-beige);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.btn-back:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* Back to Home Button */
.back-to-home-container {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: var(--bg-beige);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-back-home:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* About Page - New Sections */
.about-main-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--bg-beige-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.about-main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-main-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-line;
}

.about-section {
    background: var(--bg-beige-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.about-section .section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    white-space: pre-line;
}

.chef-section-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.chef-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.chef-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Rezervasyon Formu */
.reservation-section {
    background: var(--bg-beige-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.reservation-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.reservation-form .form-group {
    margin-bottom: 1rem;
}

.reservation-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.reservation-form input,
.reservation-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-beige);
    color: var(--text-dark);
    transition: border-color 0.3s;
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-reservation {
    width: 100%;
    padding: 1rem;
    background: var(--text-dark);
    color: var(--bg-beige);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-reservation:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-reservation:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.reservation-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.reservation-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.reservation-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Güven ve İtibar */
.trust-section {
    margin-bottom: 2rem;
}

.testimonials-section,
.awards-section {
    background: var(--bg-beige-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    background: var(--bg-beige);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #fbbf24;
}

.testimonial-comment {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.award-card {
    background: var(--bg-beige);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.award-image {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: auto;
    display: block;
}

.award-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.award-year {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.award-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .about-main-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .chef-section-content {
        grid-template-columns: 300px 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row-inline {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* QR Code Share Section */
.qr-share-section {
    padding: 3rem 1rem;
    background: var(--bg-beige-light);
    margin-top: 2rem;
}

.qr-share-container {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-beige);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.qr-share-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.qr-share-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.qr-code-display {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qr-code-image {
    display: block;
    width: 200px;
    height: 200px;
    max-width: 100%;
    height: auto;
}

.qr-share-url {
    background: var(--bg-beige-light);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    word-break: break-all;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.qr-share-url strong {
    color: var(--text-dark);
}

.copy-url-btn {
    background: var(--text-dark);
    color: var(--bg-beige);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    font-weight: 500;
}

.copy-url-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 479px) {
    .qr-share-container {
        padding: 1.5rem;
    }
    
    .qr-code-image {
        width: 150px;
        height: 150px;
    }
    
    .qr-share-title {
        font-size: 1.25rem;
    }
}

/* Footer */
.menu-footer,
.home-footer {
    padding: 2rem 1rem 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.menu-footer p,
.home-footer p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

/* Responsive Design - Mobile First */
@media (max-width: 479px) {
    .restaurant-logo {
        max-width: 150px;
        max-height: 60px;
    }
    
    .footer-logo-img {
        max-width: 100px;
        max-height: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .menu-header {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .script-font {
        font-size: 2.5rem;
    }
    
    .restaurant-subtitle {
        font-size: 0.7rem;
    }
    
    .menu-title {
        padding: 0 0.75rem 1rem;
    }
    
    .menu-title .script-font {
        font-size: 1.75rem;
    }
    
    .categories-container {
        padding: 0 0.75rem;
    }
    
    .category-section {
        margin-bottom: 1.5rem;
    }
    
    .category-image,
    .category-image-placeholder {
        height: 160px;
    }
    
    .category-label {
        padding: 0.5rem 0.75rem;
    }
    
    .category-label span {
        font-size: 1rem;
    }
    
    .products-list {
        gap: 1rem;
    }
    
    .product-item {
        border-radius: 10px;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: stretch;
        align-items: stretch;
        overflow: hidden;
    }
    
    .product-image-wrapper {
        width: 100%;
        height: 200px;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        border-radius: 10px 10px 0 0;
    }
    
    .product-info {
        padding: 1rem;
        -webkit-flex: 1;
        flex: 1;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
    
    .product-name {
        font-size: 1.1rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .product-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .product-calories {
        font-size: 0.8rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .instagram-link {
        top: 1rem;
        right: 0.75rem;
        width: 36px;
        height: 44px;
    }
    
    .instagram-link svg {
        width: 20px;
        height: 20px;
    }
    
    .menu-footer {
        padding: 1.5rem 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Hero butonları için mobil düzenlemeler */
    .hero-buttons-wrapper {
        gap: 0.25rem;
        padding: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 0 0 calc(50% - 0.25rem);
        min-width: calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        padding: 0.7rem 0.3rem;
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .scroll-btn {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }
    
    .scroll-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .menu-header {
        padding: 1.25rem 1rem 0.75rem;
    }
    
    .script-font {
        font-size: 3rem;
    }
    
    .category-image,
    .category-image-placeholder {
        height: 180px;
    }
    
    .product-item {
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: stretch;
        align-items: stretch;
        overflow: hidden;
    }
    
    .product-image-wrapper {
        width: 100%;
        height: 220px;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
        border-radius: 10px 10px 0 0;
    }
    
    .product-info {
        padding: 1.15rem;
        -webkit-flex: 1;
        flex: 1;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .menu-container {
        max-width: 768px;
        margin: 0 auto;
    }

    .category-image {
        height: 250px;
    }

    .product-item {
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .product-image-wrapper {
        width: 250px;
        height: 200px;
        -webkit-flex-shrink: 0;
        flex-shrink: 0;
    }

    .product-info {
        -webkit-flex: 1;
        flex: 1;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .script-font {
        font-size: 3.5rem;
    }

    .menu-title .script-font {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .menu-container {
        max-width: 900px;
    }

    .category-image {
        height: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-section {
    animation: fadeIn 0.5s ease-out;
}

.product-item {
    animation: fadeIn 0.4s ease-out;
}

/* Home Page Styles */
.home-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--bg-beige);
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.home-header {
    padding: 1.5rem 1rem 1rem;
    text-align: center;
    position: relative;
    background-color: var(--bg-beige);
}

.hero-section {
    padding: 6rem 1rem;
    text-align: right;
    background: linear-gradient(135deg, rgba(245, 240, 232, 0.5) 0%, rgba(250, 248, 245, 0.8) 100%);
    margin: 2rem 0;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-content {
    max-width: 100%;
    margin: 0;
    margin-left: auto;
    text-align: right;
    padding-right: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--bg-beige);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--bg-beige);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    scroll-snap-type: x mandatory;
    min-width: 0;
}

.hero-buttons::-webkit-scrollbar {
    display: none;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    flex: 0 0 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
    scroll-snap-align: start;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    padding: 0.875rem 0.4rem;
    font-size: 0.875rem;
    line-height: 1.2;
}

.scroll-btn {
    background: var(--text-dark);
    color: var(--bg-beige);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 10;
    pointer-events: auto;
    position: relative;
}

.scroll-btn:hover:not(:disabled) {
    background: var(--accent);
    transform: scale(1.1);
}

.scroll-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.scroll-btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: var(--bg-beige);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-dark);
    text-decoration: none;
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--bg-beige);
    transform: translateY(-2px);
}

.about-preview {
    padding: 4rem 1rem;
    background: var(--bg-beige-light);
}

.about-preview-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.about-preview-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.about-preview-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-preview-text {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text-preview {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    white-space: pre-line;
    text-align: left;
}

@media (min-width: 768px) {
    .about-preview-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-preview-text {
        text-align: left;
    }
}

.btn-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

.contact-preview {
    padding: 3rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.contact-item {
    background: var(--bg-beige-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s;
    min-height: auto;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.25rem;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info a,
.contact-info span {
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: block;
    word-break: break-word;
    line-height: 1.4;
}

.contact-info a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.home-footer {
    text-align: center;
    padding: 3rem 1rem 2rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 3rem;
}

/* Hero Section with Background Image */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
}

/* QR Menu Button Container */
.qr-menu-button-container {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-beige);
}

.qr-menu-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: var(--bg-beige);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.qr-menu-button:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
    padding: 4rem 1rem;
    background: var(--bg-beige-light);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: -webkit-grid;
    display: grid;
    grid-template-columns: 1fr;
    -webkit-grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--bg-beige);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
    /* Mobilde kare şekli için */
    aspect-ratio: 1;
    -webkit-aspect-ratio: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 1rem;
    background: var(--bg-beige);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 2rem;
    color: white;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Contact & Location Section */
.contact-location-section {
    padding: 4rem 1rem;
    background: var(--bg-beige-light);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-location-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.contact-location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Mobilde haritayı iletişim kartının altına taşı */
@media (max-width: 767px) {
    .contact-location-grid {
        display: flex;
        flex-direction: column;
    }
    
    .contact-info-card {
        order: 1;
    }
    
    .map-container {
        order: 2;
        margin-top: 0;
    }
    
    /* Features Grid - Mobilde yatay kaydırma (sağa sola swipe) */
    .features-grid {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        gap: 1rem;
        margin-top: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .features-grid::-webkit-scrollbar {
        display: none;
    }
    
    .feature-card {
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        min-width: 260px;
        max-width: 85vw;
        aspect-ratio: 1;
        -webkit-aspect-ratio: 1;
        padding: 1.5rem;
        box-sizing: border-box;
        scroll-snap-align: start;
    }
    
    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
}

.contact-info-card {
    background: var(--bg-beige);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-detail-item div {
    flex: 1;
}

.contact-detail-item strong {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-detail-item a,
.contact-detail-item span {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-detail-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.working-hours {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
}

.working-hours h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours-time {
    color: var(--text-light);
    font-size: 0.95rem;
}

.map-container {
    background: var(--bg-beige);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    border-radius: 8px;
}

@media (min-width: 768px) {
    .restaurant-logo {
        max-width: 250px;
        max-height: 100px;
    }
    
    .footer-logo-img {
        max-width: 150px;
        max-height: 60px;
    }
    
    .hero-content {
        padding-right: 4rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .about-preview-content {
        padding: 3.5rem;
    }
    
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        font-size: 3rem;
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .contact-info h4 {
        font-size: 1rem;
    }
    
    /* Features Grid - Masaüstünde yan yana */
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        -webkit-grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        aspect-ratio: auto;
        -webkit-aspect-ratio: auto;
        padding: 2.5rem;
    }
}

/* Safari Mobile Specific Fixes */
@supports (-webkit-touch-callout: none) {
    /* Safari iOS için özel düzenlemeler */
    .product-item {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .product-image-wrapper {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    .product-image {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Safari'de feature-card için ek düzenlemeler */
    @media (max-width: 767px) {
        .feature-card {
            /* Safari'de aspect-ratio desteği için min-height ekle */
            min-height: 250px;
        }
    }
    
    @media (max-width: 479px) {
        .product-item {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
        }
        
        .product-image-wrapper {
            -webkit-transform: translateZ(0);
            transform: translateZ(0);
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    appearance: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 479px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-info a,
    .contact-info span {
        font-size: 1.1rem;
    }
    
    /* Özellik kartları mobilde yatay kaydırma (767px ile aynı) */
    .features-grid {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .features-grid::-webkit-scrollbar {
        display: none;
    }
    
    .feature-card {
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        min-width: 260px;
        max-width: 85vw;
        scroll-snap-align: start;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-location-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 0 0 auto;
        min-width: auto;
    }
    
    .scroll-btn {
        display: none;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Özellik kartları yatay kaydırma */
    .features-grid {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .features-grid::-webkit-scrollbar {
        display: none;
    }
    
    .feature-card {
        -webkit-flex: 0 0 auto;
        flex: 0 0 auto;
        min-width: 280px;
        max-width: 85vw;
        scroll-snap-align: start;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        padding: 0.875rem 0.5rem;
        font-size: 0.9rem;
    }
}

