:root {
    --dark: #08111f;
    --dark-2: #101b2f;
    --blue: #2563eb;
    --orange: #f97316;
    --gold: #fbbf24;
    --white: #ffffff;
    --muted: #64748b;
    --soft: #f8fafc;
    --border: #e2e8f0;
    --radius: 22px;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #0f172a;
    background: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 17, 31, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--gold);
}

.logo-image {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image img {
    height: 70px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.25s;
}

.main-nav a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 0;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* HERO */

.hero {
    min-height: calc(100vh - 96px);
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 35%),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.24), transparent 35%),
        linear-gradient(135deg, #08111f 0%, #111827 55%, #1e293b 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;
}

.hero-grid {
    display: block;
}

.hero-content {
    max-width: 1180px;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    margin-bottom: 42px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    background: #050b14;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 17, 31, 0.18), transparent);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 2;
}

.hero-slider-dots button {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.hero-slider-dots button.active {
    background: var(--gold);
}

.hero-big-label {
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--gold);
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    max-width: 980px;
}

.hero p {
    max-width: 820px;
}
.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.3px;
}

.hero h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    margin: 0 0 24px;
    letter-spacing: -2px;
}

.hero p {
    font-size: 19px;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--gold));
    color: #111827;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.28);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dark-outline {
    color: #0f172a;
    border-color: #cbd5e1;
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: flex;
    gap: 16px;
    margin-top: 42px;
    flex-wrap: wrap;
}

.hero-stats div {
    min-width: 145px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
}

.hero-stats strong {
    display: block;
    font-size: 28px;
    color: var(--gold);
}

.hero-stats span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}


.profile-card {
    width: 100%;
    max-width: 380px;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.profile-image {
    width: 210px;
    height: 210px;
    margin: 0 auto 22px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.16);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.profile-card p {
    font-size: 15px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.76);
}

/* GENERAL SECTIONS */

.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--soft);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-heading span {
    display: inline-flex;
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.2px;
}

.section-heading p {
    color: var(--muted);
    margin: 0;
    font-size: 18px;
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.72);
}

/* SERVICES */

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    border-radius: var(--radius);
    padding: 36px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.service-card h3 {
    font-size: 28px;
    margin: 0 0 14px;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 24px;
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    margin-bottom: 22px;
    background: #eff6ff;
}

.social-card .service-icon {
    background: #fff7ed;
}

.service-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-card li {
    padding: 10px 0;
    border-bottom: 1px solid #edf2f7;
    color: #334155;
}

.service-card li::before {
    content: "✓";
    color: var(--orange);
    font-weight: 800;
    margin-right: 8px;
}

/* PROJECTS */

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.project-card {
    background: #ffffff;
    color: #0f172a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.project-image {
    height: 210px;
    background: #e2e8f0;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 24px;
}

.project-content span {
    color: var(--orange);
    font-weight: 800;
    font-size: 14px;
}

.project-content h3 {
    margin: 8px 0 10px;
    font-size: 24px;
}

.project-content p {
    color: var(--muted);
    font-size: 15px;
    min-height: 78px;
}

.project-content a {
    color: var(--blue);
    font-weight: 800;
}

/* GASTRO */

/* GASTROZGUR SECTION DARK */

.gastro-section {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 34%),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.16), transparent 34%),
        linear-gradient(135deg, #08111f 0%, #111827 55%, #1e293b 100%);
    color: #ffffff;
}

.gastro-section .gastro-content h2 {
    color: #ffffff;
}

.gastro-section .gastro-content p {
    color: rgba(255, 255, 255, 0.78);
}

.gastro-section .feature-list div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.28);
    color: #ffffff;
}

.gastro-section .dark-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}

.gastro-section .dark-outline:hover {
    background: rgba(255, 255, 255, 0.08);
}

.gastro-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.gastro-content h2 {
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.1;
    margin: 0 0 22px;
    letter-spacing: -1.2px;
}

.gastro-content p {
    color: #475569;
    font-size: 18px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 30px 0;
}

.feature-list div {
    background: #ffffff;
    border: 1px solid #fed7aa;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 700;
}

.instagram-preview {
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 330px;
    padding: 16px;
    border-radius: 38px;
    background: #111827;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.phone-top {
    width: 90px;
    height: 7px;
    background: #334155;
    border-radius: 999px;
    margin: 0 auto 14px;
}

.phone-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 26px;
}

.phone-caption {
    padding: 16px 6px 4px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
}

/* INSTAGRAM AREA */

.insta-feed-section {
    background: #ffffff;
}

.instagram-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    border-radius: 28px;
    padding: 34px;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.16), transparent 35%),
        linear-gradient(135deg, #111827, #1e293b);
    color: #ffffff;
    box-shadow: var(--shadow);
}

.instagram-info-content h3 {
    margin: 0 0 14px;
    font-size: 36px;
    color: var(--gold);
}

.instagram-info-content p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    max-width: 560px;
    margin-bottom: 24px;
}

.instagram-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.instagram-mini-grid div {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(251, 191, 36, 0.18)),
        rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #ffffff;
}

/* REFERENCES */

.reference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.reference-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.reference-card h3 {
    margin: 0 0 14px;
    font-size: 30px;
}

.reference-card p {
    color: var(--muted);
}

.reference-card a {
    color: var(--orange);
    font-weight: 800;
}

/* WHY */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.why-card h3 {
    margin: 0 0 12px;
    font-size: 21px;
}

.why-card p {
    color: var(--muted);
    margin: 0;
}

/* CONTACT */

.contact-section {
    background: var(--dark);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.contact-grid h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
    margin: 0 0 18px;
}

.contact-grid p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 18px;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 28px;
}

.contact-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 14px;
    padding: 14px 16px;
    outline: none;
}

.contact-form select option {
    color: #0f172a;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form small {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.62);
}

/* FOOTER */

.site-footer {
    background: #050b14;
    color: rgba(255, 255, 255, 0.72);
    padding: 26px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-inner a {
    margin-left: 18px;
    color: var(--gold);
}

/* RESPONSIVE */

@media (max-width: 1180px) {
    .logo-image img {
        height: 62px;
        max-width: 310px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .hero-visual-card {
        transform: scale(1.06);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .gastro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        margin-top: 30px;
    }

    .hero-visual-card {
        max-width: 760px;
        transform: none;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-feed-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .instagram-feed-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
    height: 280px;
    border-radius: 22px;
    margin-bottom: 30px;
}

.hero-big-label {
    font-size: 22px;
}

.hero h1 {
    font-size: clamp(38px, 12vw, 52px);
}

.hero p {
    font-size: 17px;
}
    .header-inner {
        min-height: 78px;
    }

    .logo-image img {
        height: 52px;
        max-width: 240px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        display: none;
        gap: 16px;
    }

    .main-nav.active {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 56px 0 68px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-visual-card {
        max-width: 100%;
        transform: none;
        border-radius: 24px;
    }

    .hero-stats {
        gap: 12px;
    }

    .hero-stats div {
        min-width: calc(50% - 8px);
        flex: 1;
    }

    .section {
        padding: 68px 0;
    }

    .service-grid,
    .project-grid,
    .reference-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .instagram-info-box {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .instagram-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-feed-grid-detailed {
        grid-template-columns: 1fr;
    }

    .instagram-detail-content p {
        min-height: auto;
    }

    .phone-frame {
        width: 100%;
        max-width: 330px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner a {
        margin-left: 0;
        margin-right: 14px;
    }
}

/* FORM ALERT */

.form-alert {
    width: 100%;
    margin: 0 0 20px;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 5;
}

.form-alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.form-alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* KVKK CHECKBOX */

.kvkk-check {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.78);
}

.kvkk-check input {
    width: auto !important;
    margin-top: 4px !important;
    flex: 0 0 auto;
}

.kvkk-check a {
    color: var(--gold);
    font-weight: 800;
    text-decoration: underline;
}

/* LEGAL PAGE */

.legal-page {
    background: #f8fafc;
    min-height: 70vh;
}

.legal-container {
    max-width: 920px;
    background: #ffffff;
    padding: 46px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.legal-container h1 {
    margin: 0 0 24px;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -1px;
    color: #0f172a;
}

.legal-container h2 {
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 24px;
    color: #111827;
}

.legal-container p,
.legal-container li {
    color: #475569;
    font-size: 17px;
}

.legal-container ul {
    padding-left: 22px;
}

.legal-back {
    margin-top: 34px;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 28px;
        border-radius: 20px;
    }
}

/* HIDDEN SPAM FIELD */

.hidden-field {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* INSTAGRAM LIVE FEED */

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.instagram-post-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

.instagram-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
}

.instagram-post-card:hover img {
    transform: scale(1.08);
}

.instagram-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 17, 31, 0.72), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    transition: 0.25s;
}

.instagram-post-card:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-overlay span {
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
}

/* INSTAGRAM DETAILED CARDS */

.instagram-feed-grid-detailed {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.instagram-detail-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    transition: 0.25s;
}

.instagram-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.instagram-detail-image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e2e8f0;
}

.instagram-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
}

.instagram-detail-card:hover .instagram-detail-image img {
    transform: scale(1.06);
}

.instagram-media-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    background: rgba(8, 17, 31, 0.82);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    padding: 7px 11px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.instagram-detail-content {
    padding: 20px;
}

.instagram-detail-content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #0f172a;
}

.instagram-detail-content p {
    font-size: 14px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.instagram-detail-link {
    color: var(--orange);
    font-weight: 800;
}
/* MOBILE INSTAGRAM FIX */

@media (max-width: 768px) {
    .instagram-feed-grid,
    .instagram-feed-grid-detailed {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .instagram-detail-card {
        width: 100%;
        border-radius: 22px;
        overflow: hidden;
    }

    .instagram-detail-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        display: block;
        overflow: hidden;
    }

    .instagram-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    }

    .instagram-detail-content {
        padding: 18px;
    }

    .instagram-detail-content h3 {
        font-size: 19px;
        margin-bottom: 8px;
    }

    .instagram-detail-content p {
        font-size: 15px;
        line-height: 1.5;
        min-height: auto;
        margin-bottom: 14px;

        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .instagram-media-badge {
        font-size: 12px;
        padding: 6px 10px;
        left: 12px;
        top: 12px;
    }

    .instagram-detail-link {
        display: inline-flex;
        font-size: 15px;
    }
}
/* INSTAGRAM FEED PROFESSIONAL LOOK */

.instagram-feed-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.instagram-feed-grid-detailed,
.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 320px));
    justify-content: center;
    gap: 24px;
    align-items: start;
}

.instagram-detail-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.instagram-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.14);
}

.instagram-detail-image {
    width: 100%;
    height: 260px;
    background: #eef2f7;
    overflow: hidden;
}

.instagram-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.instagram-detail-content {
    padding: 16px;
    background: #ffffff;
}

.instagram-media-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #b45309;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    padding: 8px 12px;
    margin-bottom: 14px;
}

.instagram-detail-content h3,
.instagram-detail-content .instagram-post-title {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #0f172a;
    font-weight: 800;
}

.instagram-detail-content .instagram-username {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
}

.instagram-detail-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #475569;
    margin: 0 0 18px;
}

.instagram-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    padding: 12px 18px;
    transition: all 0.2s ease;
}

.instagram-detail-link:hover {
    background: #0f172a;
    color: #ffffff;
}
@media (max-width: 768px) {
    .instagram-feed-grid-detailed,
    .instagram-feed-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .instagram-detail-card {
        max-width: 100%;
        border-radius: 20px;
    }

    .instagram-detail-content {
        padding: 18px;
    }

    .instagram-detail-content h3,
    .instagram-detail-content .instagram-post-title {
        font-size: 22px;
    }

    .instagram-detail-content p {
        font-size: 15px;
        line-height: 1.65;

        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
/* QR MENU PROJECTS */

.qr-projects-section {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.08), transparent 32%),
        #f8fafc;
}

.qr-project-grid {
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
}

.qr-project-card .project-image {
    height: 260px;
}

.qr-project-card .project-image img {
    object-fit: cover;
    object-position: top center;
}

.qr-project-card .project-content h3 {
    font-size: 24px;
}

@media (max-width: 1200px) {
    .qr-project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qr-project-grid {
        grid-template-columns: 1fr;
    }

    .qr-project-card .project-image {
        height: 240px;
    }
}
/* GASTROZGUR LOGO TITLE */

.gastro-logo-title {
    margin-bottom: 24px;
}

.gastro-logo-title img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .gastro-logo-title {
        display: flex;
        justify-content: center;
        margin-bottom: 22px;
    }

    .gastro-logo-title img {
        width: 150px;
    }

    .gastro-content h2 {
        text-align: center;
    }

    .gastro-content p {
        text-align: center;
    }
}
/* INSTAGRAM COMPACT FINAL */

@media (max-width: 1024px) {
    .instagram-feed-grid-detailed,
    .instagram-feed-grid {
        grid-template-columns: repeat(2, minmax(240px, 320px));
    }
}

@media (max-width: 768px) {
    .instagram-feed-grid-detailed,
    .instagram-feed-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 22px;
    }

    .instagram-detail-card {
        max-width: 340px;
    }

    .instagram-detail-image {
        height: 250px;
    }

    .instagram-detail-content h3 {
        font-size: 20px;
    }

    .instagram-detail-content p {
        font-size: 14px;
        line-height: 1.55;
        -webkit-line-clamp: 3;
    }
}
/* GASTROZGUR SECTION CLEAN */

.gastro-content {
    max-width: 860px;
}

.gastro-logo-title {
    margin-bottom: 20px;
}

.gastro-content h2 {
    max-width: 760px;
}

.gastro-content p {
    max-width: 780px;
}

@media (max-width: 768px) {
    .gastro-content {
        max-width: 100%;
        text-align: left;
    }

    .gastro-logo-title {
        justify-content: flex-start;
    }

    .gastro-content h2,
    .gastro-content p {
        text-align: left;
    }
}

/* FINAL FIX - GASTROZGUR SECTION */

.gastro-grid {
    display: block !important;
    max-width: 900px;
    margin: 0 auto;
}

.gastro-content {
    max-width: 860px;
    margin: 0 auto;
}

.gastro-logo-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 18px;
}

.gastro-logo-title img {
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
    object-fit: contain;
}

.instagram-preview,
.phone-frame {
    display: none !important;
}

@media (max-width: 768px) {
    .gastro-grid {
        max-width: 100%;
    }

    .gastro-content {
        max-width: 100%;
    }

    .gastro-logo-title {
        justify-content: center;
        margin-bottom: 18px;
    }

    .gastro-logo-title img {
        width: 140px !important;
        max-width: 140px !important;
    }

    .gastro-content h2,
    .gastro-content p {
        text-align: left;
    }
}
