/* Reset & Base - Premium Ocean Restaurant Style */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { 
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6; 
    color: var(--text); 
    background: var(--white); 
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased; 
}
h1, h2, h3, h4, h5, h6 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 700; 
    line-height: 1.2; 
    color: var(--primary);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Variables - Oceanic Luxury Palette */
:root {
    --primary: #0a192f;        /* Deep Ocean Blue */
    --primary-light: #172a45;  /* Lighter Sea Blue */
    --accent: #d4af37;         /* Elegant Gold */
    --accent-dark: #b5952f;    /* Deep Gold */
    --accent-light: #f5eedc;   /* Pale Sand */
    --dark: #020c1b;           /* Midnight */
    --text: #334155;           /* Slate 700 */
    --text-light: #64748b;     /* Slate 500 */
    --light-bg: #f8fafc;       /* Very Light Gray/Blue */
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.15);
    --shadow-lg: 0 20px 40px -15px rgba(10, 25, 47, 0.2);
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ---------------- HEADER ---------------- */
.header { 
    background: var(--white); 
    box-shadow: var(--shadow-sm); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    transition: var(--transition); 
}
.header-container { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 90px; 
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}
.header-left-col, .header-right-col {
    display: flex;
    align-items: center;
    flex: 1;
}
.header-left-col { justify-content: space-between; padding-right: 130px; }
.header-right-col { justify-content: space-between; padding-left: 130px; }

.header-call-box {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.header-call-box:hover {
    background: var(--primary);
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-res-box {
    background: var(--accent);
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid var(--accent);
}
.header-res-box:hover {
    background: var(--white);
    color: var(--accent);
}

.nav-desktop { display: flex; gap: 30px; align-items: center; }
.nav-link { 
    color: var(--primary); 
    font-family: inherit;
    font-weight: 500; 
    font-size: 0.85rem; 
    padding: 8px 0; 
    letter-spacing: 1.5px; 
    text-transform: uppercase; 
    position: relative;
}
.nav-link::before { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 50%; 
    transform: translateX(-50%);
    width: 0; 
    height: 2px; 
    background: var(--accent); 
    transition: var(--transition); 
}
.nav-link:hover::before, .nav-link.active::before { width: 100%; }

.header-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}
.header-socials .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--primary);
    transition: var(--transition);
}
.header-socials .social-icon:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.header-center-col {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 1002;
}

.logo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    width: 230px;
    height: 135px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.logo-banner:hover {
    transform: translateY(3px);
}
.logo-banner::after {
    content: "";
    position: absolute;
    bottom: -15px; 
    left: 0;
    width: 100%;
    height: 15px;
    background-size: 30px 15px;
    background-image: radial-gradient(circle at 15px 0, var(--primary) 15px, transparent 16px);
    background-repeat: repeat-x;
    animation: bannerWave 3s linear infinite;
}

@keyframes bannerWave {
    0% { background-position: 0 0; }
    100% { background-position: 30px 0; }
}
.logo-banner img { 
    height: 110px;
    width: auto; 
    object-fit: contain; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.hamburger-always {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger-always span {
    width: 30px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.hamburger-always:hover span:nth-child(2) { width: 20px; }

/* Mobile hamburger (for responsive mode) */
.hamburger { 
    display: none; 
    flex-direction: column; 
    gap: 6px; 
    padding: 10px; 
    cursor: pointer; 
    z-index: 1001; 
}
.hamburger span { 
    width: 30px; 
    height: 2px; 
    background: var(--primary); 
    transition: var(--transition); 
}

/* Hide mobile nav by default */
.nav-mobile {
    display: none; 
}

/* ---------------- BUTTONS ---------------- */
.btn { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    padding: 14px 36px; 
    border-radius: 2px; 
    font-weight: 600; 
    font-size: 0.9rem; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    transition: var(--transition); 
    position: relative; 
    overflow: hidden; 
    z-index: 1;
}
.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--accent-dark);
    transition: var(--transition);
    z-index: -1;
}
.btn-primary { 
    background: var(--accent); 
    color: var(--white); 
    border: 1px solid var(--accent); 
}
.btn-primary:hover { 
    color: var(--white); 
    border-color: var(--accent-dark);
    box-shadow: var(--shadow);
}
.btn-primary:hover::after { height: 100%; }

.btn-secondary { 
    background: transparent; 
    color: var(--white); 
    border: 1px solid var(--white); 
}
.btn-secondary:hover { 
    background: var(--white); 
    color: var(--primary); 
}

.btn-whatsapp { 
    background: #25D366; 
    color: var(--white); 
    border: 1px solid #25D366; 
}
.btn-whatsapp::after { background: #1da851; }
.btn-whatsapp:hover { 
    color: var(--white); 
    border-color: #1da851; 
}
.btn-whatsapp:hover::after { height: 100%; }

/* ---------------- HERO SECTION ---------------- */
.hero { 
    position: relative; 
    height: 90vh; 
    min-height: 600px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.4)), url('/image/gorseller/dukkangorseli.png') center/cover no-repeat fixed; 
    color: var(--white); 
    text-align: center; 
}
.hero-content { 
    max-width: 800px; 
    padding: 2rem; 
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; 
    opacity: 0;
    transform: translateY(30px);
}
.hero-title { 
    font-size: clamp(3rem, 5vw, 5rem); 
    margin-bottom: 1.5rem; 
    text-shadow: 0 4px 20px rgba(0,0,0,0.4); 
    color: var(--white);
    letter-spacing: -1px;
}
.hero-subtitle { 
    font-size: clamp(1.1rem, 2vw, 1.4rem); 
    margin-bottom: 2.5rem; 
    font-weight: 300; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); 
}
.hero-buttons { 
    display: flex; 
    gap: 1.5rem; 
    justify-content: center; 
    flex-wrap: wrap; 
}

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

/* ---------------- GLOBAL SECTIONS ---------------- */
section { padding: 100px 0; }
.section-title { 
    font-size: 2.8rem; 
    text-align: center; 
    margin-bottom: 10px; 
    color: var(--primary);
}
.section-subtitle { 
    text-align: center; 
    color: var(--accent); 
    font-size: 1rem; 
    margin-bottom: 50px; 
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ---------------- INTRO (Features) ---------------- */
.intro { background: var(--light-bg); }
.intro-content { text-align: center; max-width: 900px; margin: 0 auto; }
.intro-content h2 { margin-bottom: 1.5rem; }
.intro-content > p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 4rem; }

.intro-features { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
}
.feature { 
    background: var(--white); 
    padding: 40px 30px; 
    border-radius: 4px; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
    border-bottom: 3px solid transparent;
}
.feature:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow); 
    border-bottom-color: var(--accent);
}
.feature-icon { 
    width: 80px; 
    height: 80px; 
    margin: 0 auto 20px; 
    background: var(--accent-light); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--accent-dark); 
    transition: var(--transition);
}
.feature:hover .feature-icon {
    background: var(--accent);
    color: var(--white);
    transform: rotateY(180deg);
}
.feature-icon svg { stroke: currentColor; }
.feature h3 { font-size: 1.4rem; margin-bottom: 15px; font-family: 'Poppins', sans-serif; }
.feature p { color: var(--text-light); font-size: 0.95rem; }

/* ---------------- MENU / PRODUCTS GRID ---------------- */
.featured-products { background: var(--white); }
.products-grid, .menu-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
    margin-bottom: 60px; 
}
.product-card, .menu-item { 
    background: var(--white); 
    border-radius: 4px; 
    overflow: hidden; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
    display: flex; 
    flex-direction: column; 
    position: relative;
}
.product-card:hover, .menu-item:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg); 
}
.product-image, .menu-item-image { 
    height: 250px; 
    overflow: hidden; 
    position: relative; 
}
.product-image img, .menu-item-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}
.product-card:hover img, .menu-item:hover img { transform: scale(1.1); }
.product-content, .menu-item-content { 
    padding: 30px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
    border: 1px solid var(--light-bg);
    border-top: none;
}
.product-content h3, .menu-item-content h3 { 
    font-size: 1.5rem; 
    margin-bottom: 12px; 
    font-family: 'Playfair Display', serif;
}
.product-content p, .menu-item-content p { 
    color: var(--text-light); 
    font-size: 0.95rem; 
    flex: 1; 
}
.menu-item-note {
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 15px;
    font-style: italic;
    border-top: 1px solid var(--light-bg);
    padding-top: 10px;
}

/* ---------------- PREMIUM MENU CARDS (HOME) ---------------- */
.premium-menu-card {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.08); 
    border-radius: 8px; 
    padding: 40px 30px; 
    text-align: center; 
    transition: var(--transition); 
    backdrop-filter: blur(5px);
}
.premium-menu-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.plate-img-wrapper {
    width: 170px; 
    height: 170px; 
    border-radius: 50%; 
    overflow: hidden; 
    margin: 0 auto 25px; 
    border: 4px solid var(--accent); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    background: var(--dark);
}
.plate-img-wrapper img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.premium-menu-card:hover .plate-img-wrapper img {
    transform: scale(1.15) rotate(8deg);
}
.premium-menu-card h3 {
    font-family: 'Playfair Display', serif; 
    font-size: 1.6rem; 
    color: var(--accent); 
    margin-bottom: 12px;
}
.premium-menu-card p {
    color: rgba(255,255,255,0.75); 
    font-size: 0.95rem; 
    line-height: 1.7;
}

/* ---------------- END PREMIUM CARDS ---------------- */

.menu-intro { text-align: center; max-width: 900px; margin: 0 auto 60px; }
.menu-intro h2 { font-size: 2.5rem; margin-bottom: 15px; }
.menu-intro p { color: var(--text-light); font-size: 1.1rem; }
.menu-note { 
    background: linear-gradient(135deg, var(--primary), var(--primary-light)); 
    padding: 60px; 
    border-radius: 4px; 
    text-align: center; 
    margin-top: 60px; 
    color: var(--white); 
    position: relative; 
    overflow: hidden; 
}
.menu-note h3 { color: var(--white); margin-bottom: 15px; font-size: 2rem; position: relative; z-index: 2; }
.menu-note p { margin-bottom: 30px; font-size: 1.1rem; opacity: 0.9; position: relative; z-index: 2; }
.menu-cta { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }

/* ---------------- CTA SECTION ---------------- */
.cta-section { 
    background: linear-gradient(135deg, var(--primary), var(--primary-light)); 
    color: var(--white); 
    text-align: center; 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    top: -50px;
    left: -50px;
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
}
.cta-section h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 20px; position: relative; z-index: 2;}
.cta-section p { font-size: 1.1rem; margin-bottom: 40px; color: rgba(255,255,255,0.8); position: relative; z-index: 2;}
.cta-center { text-align: center; margin-top: 40px; }
.cta-buttons { position: relative; z-index: 2; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;}

/* ---------------- PAGE HEADERS ---------------- */
.page-header { 
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)), url('/image/gorseller/dukkangorseli.png') center/cover fixed; 
    color: var(--white); 
    text-align: center; 
    padding: 140px 20px 100px; 
}
.page-header h1 { color: var(--white); font-size: 3.5rem; margin-bottom: 15px; }
.page-header p { font-size: 1.2rem; color: var(--accent); font-weight: 500; font-family: 'Poppins', sans-serif;}

/* ---------------- INTRO PREMIUM (HOME) ---------------- */
.intro-premium { padding: 100px 0; background: var(--light-bg); overflow: hidden; }
.intro-grid-responsive { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.intro-img-composition { position: relative; padding-right: 40px; padding-bottom: 40px; }
.intro-main-img { border-radius: 8px; width: 100%; box-shadow: var(--shadow-lg); object-fit: cover; height: 550px; }
.intro-sub-img-wrapper { position: absolute; right: 0; bottom: 0; width: 55%; border: 10px solid var(--light-bg); border-radius: 8px; box-shadow: var(--shadow); }
.intro-sub-img { width: 100%; height: auto; border-radius: 2px; display: block; }

.intro-content-composition { padding-left: 20px; }
.intro-badge { color: var(--accent); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; display: block; margin-bottom: 15px;}
.intro-heading { font-size: 3rem; color: var(--primary); margin-bottom: 25px; font-family: 'Playfair Display', serif; line-height: 1.2; }
.intro-divider { width: 70px; height: 3px; background: var(--accent); margin-bottom: 30px; }
.intro-desc { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 40px; }

.intro-feature-list { list-style: none; margin-bottom: 45px; padding: 0; }
.intro-feature-list li { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
.intro-feature-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--accent); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.intro-feature-list h4 { font-size: 1.2rem; color: var(--primary); margin-bottom: 5px; font-family: 'Poppins', sans-serif; }
.intro-feature-list p { font-size: 0.95rem; color: var(--text-light); margin: 0; }

/* ---------------- ABOUT ---------------- */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
}
.about-image img { 
    border-radius: 4px; 
    box-shadow: var(--shadow-lg); 
}
.about-text h2 { margin-bottom: 30px; font-size: 2.5rem; }
.about-text p { margin-bottom: 20px; color: var(--text-light); }
.about-list { list-style: none; margin-top: 30px; }
.about-list li { 
    padding: 15px 0; 
    border-bottom: 1px solid var(--light-bg); 
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-list li::before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ---------------- BLOG ---------------- */
.blog-section { background: var(--light-bg); }
.blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
}
.blog-card { 
    background: var(--white); 
    border-radius: 4px; 
    overflow: hidden; 
    box-shadow: var(--shadow-sm); 
    transition: var(--transition); 
    display: flex; 
    flex-direction: column; 
}
.blog-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-lg); 
}
.blog-image { 
    height: 250px; 
    position: relative; 
    overflow: hidden; 
}
.blog-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
}
.blog-card:hover .blog-image img { transform: scale(1.1); }
.blog-date { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    background: var(--accent); 
    color: var(--white); 
    padding: 6px 15px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    border-radius: 20px; 
    z-index: 2;
}
.blog-content { 
    padding: 30px; 
    flex: 1; 
    display: flex; 
    flex-direction: column; 
}
.blog-meta { 
    color: var(--accent); 
    font-size: 0.85rem; 
    font-weight: 600; 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.blog-title { 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    font-family: 'Playfair Display', serif; 
    line-height: 1.4;
}
.blog-title a:hover { color: var(--accent); }
.blog-excerpt { 
    color: var(--text-light); 
    font-size: 0.95rem; 
    margin-bottom: 20px; 
    flex: 1; 
}
.read-more { 
    color: var(--primary); 
    font-weight: 600; 
    font-size: 0.95rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: inline-flex; 
    align-items: center; 
}
.read-more:hover { color: var(--accent); }

/* ---------------- BLOG DETAIL ---------------- */
.blog-detail-img { 
    width: 100%; 
    height: 60vh; 
    object-fit: cover; 
}
.blog-article { 
    max-width: 900px; 
    margin: 0 auto; 
    background: var(--white); 
    padding: 60px; 
    border-radius: 8px; 
    box-shadow: var(--shadow-lg); 
    margin-top: -100px; 
    position: relative; 
    z-index: 10; 
}
.blog-article-meta {
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.blog-article h1 { 
    font-size: 3rem; 
    text-align: center; 
    margin-bottom: 40px; 
}
.blog-article h2 { margin: 40px 0 20px; font-size: 2rem; font-family: 'Playfair Display', serif; }
.blog-article h3 { margin: 30px 0 15px; font-size: 1.5rem; color: var(--primary-light); }
.blog-article p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; }
.blog-article ul { margin-bottom: 25px; margin-left: 20px; font-size: 1.1rem; }
.blog-article li { margin-bottom: 10px; }
.blog-article blockquote {
    font-style: italic;
    font-size: 1.2rem;
    padding: 20px 30px;
    border-left: 4px solid var(--accent);
    background: var(--light-bg);
    margin: 40px 0;
}

/* ---------------- ABOUT PREMIUM ---------------- */
.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images-collage {
    position: relative;
    padding-right: 50px;
}
.image-large-wrap {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.image-large-wrap img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

/* ---------------- GALLERY PREMIUM ---------------- */
.gallery-section { background: var(--light-bg); }
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
    gap: 20px; 
}
.gallery-item { 
    overflow: hidden; 
    border-radius: 8px; 
    cursor: pointer; 
    position: relative; 
    box-shadow: var(--shadow-sm);
    /* aspect-ratio: 1; Kaldırıldı, grid yönlendirecek */
}
.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); 
}

/* Mosaic pattern rules */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-row: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(10) { grid-column: span 2; }

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.2) 50%, rgba(10, 25, 47, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}
.gallery-item::before {
    content: 'Büyüt 🔍';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover::before { bottom: 25px; opacity: 1; }

.lightbox { 
    display: none; 
    position: fixed; 
    inset: 0; 
    background: rgba(2, 12, 27, 0.95); 
    z-index: 9999; 
    align-items: center; 
    justify-content: center; 
    opacity: 0;
    transition: opacity 0.3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-img { max-width: 90%; max-height: 90vh; border: 4px solid var(--white); box-shadow: var(--shadow-lg); }
.lightbox-close { 
    position: absolute; 
    top: 30px; 
    right: 30px; 
    font-size: 40px; 
    color: var(--white); 
    cursor: pointer; 
    z-index: 10000; 
}

/* ---------------- CONTACT PREMIUM ---------------- */
.contact-title { font-size: 3.2rem; }
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.premium-form input:focus, .premium-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
/* ---------------- FLOATING CONTACT BUTTONS ---------------- */
.floating-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.floating-btn svg {
    transition: transform 0.4s ease;
}
.floating-btn:hover svg {
    transform: scale(1.2);
}
.floating-btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid;
    animation: floatingPulse 2s infinite;
    opacity: 0;
}
.fb-phone {
    background: var(--accent); /* Altın Sarısı */
}
.fb-phone::before { border-color: var(--accent); animation-delay: 0s; opacity: 1; }
.fb-phone:hover { background: #b8962e; transform: translateY(-5px); color: var(--white); }

.fb-whatsapp {
    background: #25D366; /* WhatsApp Yeşili */
}
.fb-whatsapp::before { border-color: #25D366; animation-delay: 1s; opacity: 1; }
.fb-whatsapp:hover { background: #1ebe56; transform: translateY(-5px); color: var(--white); }

@keyframes floatingPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}


/* ---------------- FOOTER ---------------- */
.footer { 
    background: var(--dark); 
    color: var(--white); 
    padding: 80px 0 30px; 
    border-top: 4px solid var(--accent);
}
.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 60px; 
}
.footer-logo { filter: brightness(0) invert(1); height: 70px; margin-bottom: 20px; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-col h3 { 
    font-family: 'Poppins', sans-serif;
    color: var(--white); 
    font-size: 1.2rem; 
    margin-bottom: 25px; 
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}
.footer-links li, .footer-contact li { margin-bottom: 15px; }
.footer-links a, .footer-contact { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-links a:hover, .footer-contact a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; }

.social-links { display: flex; gap: 15px; }
.social-links a { 
    width: 40px; 
    height: 40px; 
    background: rgba(255,255,255,0.05); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%;
    color: var(--white);
}
.social-links a:hover { background: var(--accent); transform: translateY(-3px); }

.footer-bottom { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    color: rgba(255,255,255,0.5); 
    font-size: 0.9rem; 
}

/* Lazy Load */
img.lazy { opacity: 0; transition: opacity 0.5s ease-in; }
img.lazy.loaded { opacity: 1; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
    .nav-desktop, .header-call-box, .header-res-box, .hamburger-always { display: none; }
    .hamburger { display: flex; z-index: 1003; }
    .header-left-col, .header-right-col { display: none; }
    .header-container { justify-content: flex-end; } /* Push hamburger to right */
    
    .logo-banner { width: 150px; height: 115px; }
    .logo-banner img { height: 80px; }
    
    .nav-mobile { 
        position: fixed; 
        top: 90px; 
        left: 0; 
        width: 100%; 
        background: var(--white); 
        display: flex;
        flex-direction: column; 
        padding: 30px; 
        gap: 20px; 
        box-shadow: var(--shadow); 
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    .nav-mobile.active { transform: translateY(0); }
    .nav-mobile .nav-link { font-size: 1.1rem; border-bottom: 1px solid var(--light-bg); padding-bottom: 15px; }

    .about-grid, .contact-split-grid, .about-premium-grid, .intro-grid-responsive { grid-template-columns: 1fr; }
    .about-images-collage { margin-bottom: 60px; padding-right: 20px; }
    .about-features-container { grid-template-columns: 1fr !important; gap: 20px !important; }
    
    .form-row { grid-template-columns: 1fr; }
    .contact-split-grid .form-wrapper { padding: 30px !important; }
    .map-wrapper { min-height: 350px !important; }
    .premium-form .input-group { grid-column: span 1; }

    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); grid-auto-rows: 200px; }
    .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    
    .floating-contact-buttons { bottom: 20px; right: 20px; gap: 10px; }
    .floating-btn { width: 50px; height: 50px; }
    .floating-btn svg { width: 22px; height: 22px; }
    
    /* Intro Premium Mobile Fixes */
    .intro-grid-responsive { gap: 40px; }
    .intro-content-composition { padding-left: 0; }
    .intro-img-composition { padding-right: 20px; padding-bottom: 20px; }
    .intro-main-img { height: 400px; }
    .intro-heading, .contact-title { font-size: 2.2rem; }
    .intro-premium { padding: 60px 0; }
    
    .hero-title { font-size: 3rem; }
}
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero { min-height: 500px; height: 75vh; }
    .section-title { font-size: 2.2rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-contact li { justify-content: center; }
    .social-links { justify-content: center; }
}
