/* =========================================
   POLAT DEKORASYON - TASARIM SİSTEMİ
   ========================================= */

/* LOCAL FONTS SETUP (Royal Catering Style) */
/* inter-300 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2');
}
/* inter-regular (400) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
/* inter-500 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
/* inter-600 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

/* outfit-regular (400) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-regular.woff2') format('woff2');
}
/* outfit-600 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-600.woff2') format('woff2');
}
/* outfit-700 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-700.woff2') format('woff2');
}
/* outfit-800 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-800.woff2') format('woff2');
}

:root {
    /* Renk Paleti (Ahşap & Krem Ağırlıklı) */
    --primary: #4A3320; /* Koyu Ceviz / Ahşap Rengi */
    --primary-light: #704B31; /* Açık Meşe Rengi */
    --secondary: #D4B895; /* Altın/Kum Beji - Vurgu Rengi */
    --accent: #B88A4A; /* Altın vurgu tonu */
    --accent-soft: rgba(212, 184, 149, 0.32);
    --accent-deep: #8F622E;
    
    --bg-light: #FAF8F5; /* Yumuşak Krem Arka Plan */
    --bg-white: #FFFFFF;
    
    --text-dark: #2C1E16; /* Koyu Kahve / Antrasit-Kahve Karışımı */
    --text-muted: #6B5B53;
    
    --border-color: #E8DFD5;

    /* Fontlar */
    --font-heading: 'Outfit', sans-serif; /* Modern, Temiz Başlıklar (Royal Catering fontu) */
    --font-body: 'Inter', sans-serif; /* Okunabilir, Modern Metinler */
    
    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(44, 30, 22, 0.05);
    --shadow-md: 0 4px 16px rgba(44, 30, 22, 0.08);
    --shadow-lg: 0 12px 32px rgba(44, 30, 22, 0.12);
    
    /* Geçişler */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   GENEL AYARLAR
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, span, button {
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 44px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--bg-white);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
}

/* =========================================
   HEADER & NAVİGASYON
   ========================================= */
.site-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 100px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 100px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1rem;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-links li a .caret {
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 220px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover > a .caret {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    padding-left: 25px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 999px;
    transition: var(--transition);
}

.menu-icon {
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.menu-icon::before {
    top: -7px;
}

.menu-icon::after {
    top: 7px;
}

.mobile-toggle.active .menu-icon {
    background: transparent;
}

.mobile-toggle.active .menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle.active .menu-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* =========================================
   MOBİL STICKY CTA (Royal Catering Style)
   ========================================= */
.mobile-action-bar {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    display: none;
    z-index: 99999 !important;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    background: white;
    padding: 0;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
    white-space: nowrap;
}

.sticky-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.call-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #362516 100%);
    color: white !important;
}

.whatsapp-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--primary) !important;
}

.sticky-btn i {
    font-size: 1.3rem;
}

/* =========================================
   HERO BÖLÜMÜ (ANA SAYFA)
   ========================================= */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(35, 23, 15, 0.58);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 0;
}

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

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    color: var(--bg-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: #F0EBE1;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.local-hero {
    background: linear-gradient(135deg, #fff 0%, #f7f1e9 100%);
    padding: 82px 0;
    border-bottom: 1px solid var(--border-color);
}

.local-hero-inner,
.local-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.local-hero-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    color: var(--primary);
    margin-bottom: 22px;
}

.local-hero-copy p,
.local-section p {
    font-size: 1.08rem;
    line-height: 1.8;
}

.local-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.local-hero-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.local-section {
    padding: 82px 0;
    background: var(--bg-white);
}

.local-section.muted {
    background: #F7F2EC;
}

.local-panel {
    background: var(--primary);
    color: white;
    padding: 34px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.local-panel h2 {
    color: var(--secondary);
    font-size: 1.6rem;
}

.local-panel li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    color: #F4E9DA;
}

.local-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--secondary);
}

.center-title {
    text-align: center;
    margin-bottom: 42px;
}

.step-grid,
.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.step-card,
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.step-card span {
    display: inline-block;
    color: var(--accent-deep);
    font-weight: 800;
    margin-bottom: 12px;
}

.step-card h3,
.faq-item h3 {
    font-size: 1.22rem;
}

.faq-wrap {
    max-width: 900px;
}

.faq-item {
    margin-top: 16px;
}

.related-links {
    padding-top: 0;
}

.related-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-light);
    font-weight: 700;
}

.project-partnership-card {
    box-shadow: 0 22px 55px rgba(74, 51, 32, 0.08);
}

.project-partnership-feature {
    border: 1px solid rgba(212, 184, 149, 0.25);
    box-shadow: 0 8px 22px rgba(74, 51, 32, 0.04);
}

.local-cta {
    padding: 78px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.local-cta h2 {
    color: var(--secondary);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.local-cta p {
    color: #F4E9DA;
    max-width: 680px;
    margin: 0 auto 28px;
}

.form-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: var(--primary);
    color: var(--bg-light);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 110px;
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: contain;
}

.brand-col p {
    color: #D4C9C1;
    margin-bottom: 20px;
}

.footer-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--bg-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-col h3 {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #D4C9C1;
    display: inline-block;
    transition: var(--transition);
}

.links-col ul li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-col p {
    color: #D4C9C1;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-col p i {
    color: var(--secondary);
    margin-top: 5px;
}

.contact-col a {
    color: #D4C9C1;
}

.contact-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    background-color: #362516;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #A3968F;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html,
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .container {
        width: 100vw;
        max-width: 100vw;
        padding-left: 20px;
        padding-right: 20px;
    }

    section,
    header,
    footer {
        max-width: 100vw;
        overflow-x: hidden;
    }

    body {
        padding-bottom: 60px;
    }

    .mobile-action-bar {
        display: flex;
        max-width: 100vw !important;
    }

    .site-header {
        height: 80px;
    }

    .header-inner {
        justify-content: center;
        position: relative;
    }

    .logo img {
        height: 50px;
        max-width: 180px;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        padding: 10px;
    }
    
    .nav-cta {
        display: none; 
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(84vw, 320px);
        max-width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px;
        gap: 10px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
        z-index: 10000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
        justify-content: space-between;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--bg-light);
        border-top: none;
        padding-left: 20px;
        width: 100%;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown.open > a .caret {
        transform: rotate(180deg);
    }
    
    .hero-content h1 {
        font-size: 2.35rem !important;
        line-height: 1.05 !important;
    }

    .hero,
    section.hero {
        height: auto !important;
        min-height: calc(100svh - 80px) !important;
        padding: 96px 0 128px !important;
        align-items: center;
    }

    .hero-content,
    section.hero .hero-content {
        max-width: 100% !important;
    }

    .hero-content p,
    section.hero .hero-content p {
        font-size: 1.08rem !important;
        line-height: 1.55 !important;
        max-width: 100% !important;
        margin-bottom: 28px !important;
    }

    section.hero .hero-content > span {
        font-size: 0.74rem !important;
        letter-spacing: 1.5px !important;
        max-width: 100%;
        border-radius: 999px !important;
        white-space: normal;
    }

    section.hero .hero-content .btn {
        width: 100%;
        padding: 16px 22px !important;
    }

    .sticky-btn {
        gap: 8px;
        padding: 16px 6px;
        font-size: 0.78rem;
        letter-spacing: 0.5px;
    }

    .sticky-btn i {
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .local-hero {
        padding: 54px 0;
    }

    .local-hero-inner,
    .local-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .local-hero-copy h1 {
        font-size: 2.45rem;
    }

    .local-actions .btn {
        width: 100%;
    }

    .local-section {
        padding: 58px 0;
    }

    .local-panel {
        padding: 26px;
    }

    .form-two-col {
        grid-template-columns: 1fr !important;
    }

    .step-card,
    .faq-item {
        padding: 24px;
    }
    .b2b-grid {
        grid-template-columns: 1fr !important;
    }

    .project-partnership-section {
        padding: 56px 0 !important;
    }

    .project-partnership-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 28px 18px !important;
        border-radius: 18px !important;
        text-align: center;
    }

    .project-partnership-title {
        font-size: clamp(1.75rem, 8vw, 2.15rem) !important;
        line-height: 1.12 !important;
        margin-bottom: 16px !important;
        text-align: center;
    }

    .project-partnership-lead {
        max-width: 32rem !important;
        margin: 0 auto 28px !important;
        font-size: 1rem !important;
        line-height: 1.65 !important;
        text-align: center;
    }

    .project-partnership-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 28px !important;
    }

    .project-partnership-feature {
        display: grid !important;
        grid-template-columns: auto 1fr;
        align-items: center !important;
        justify-content: start !important;
        gap: 12px !important;
        min-height: 64px;
        padding: 16px 14px !important;
        border-radius: 14px !important;
        background: #fbf7f0 !important;
        text-align: left;
    }

    .project-partnership-feature i {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(212, 184, 149, 0.24);
        color: var(--accent-deep) !important;
        font-size: 1.05rem !important;
    }

    .project-partnership-feature span {
        font-size: 0.96rem;
        line-height: 1.35;
    }

    .project-partnership-actions {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 12px !important;
    }

    .project-partnership-btn {
        width: 100%;
        min-height: 54px;
        padding: 15px 18px !important;
        border-radius: 14px !important;
        font-size: 0.96rem !important;
        line-height: 1.25 !important;
        white-space: normal;
    }
}
