/* ==========================================================================
   Seramik Atölyesi - El Yapımı Seramik Ürünleri
   Ceramic Style Design with Clay Texture
   ========================================================================== */

:root {
    --terracotta: #C2532F;
    --terracotta-dark: #9A3E22;
    --terracotta-light: #E07B5A;
    --cream: #FDF8F3;
    --sand: #E8DDD4;
    --clay: #D4C4B5;
    --earth: #8B7355;
    --charcoal: #3D3530;
    --text-primary: #2C2420;
    --text-secondary: #5A4F47;
    --white: #FFFFFF;
    --shadow: rgba(60, 45, 35, 0.12);
    --shadow-strong: rgba(60, 45, 35, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Crimson Text', Georgia, 'Times New Roman', serif;
    background-color: var(--cream);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 18px;
    position: relative;
    min-height: 100vh;
}

/* Clay texture background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 196, 181, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(194, 83, 47, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 20%, rgba(232, 221, 212, 0.4) 0%, transparent 45%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 115, 85, 0.02) 2px,
            rgba(139, 115, 85, 0.02) 4px
        ),
        linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
}

h1 { font-size: 2.8rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.6rem; margin-bottom: 1rem; }
h4 { font-size: 1.3rem; margin-bottom: 0.8rem; }

p { margin-bottom: 1.2rem; }

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--terracotta-dark);
}

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

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    border-bottom: 3px solid var(--terracotta);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

/* Logo hover effect */
.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-icon {
    transform: rotate(-15deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(194, 83, 47, 0.4);
}

.logo:hover .logo-text {
    color: var(--terracotta);
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--terracotta);
    border-radius: 50% 50% 50% 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.logo-icon::before {
    content: '';
    width: 20px;
    height: 25px;
    background: var(--cream);
    border-radius: 40% 40% 50% 50%;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    transition: color 0.3s ease;
}

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

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 0.3rem;
}

.nav-desktop a {
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--terracotta);
    background: rgba(194, 83, 47, 0.08);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 60%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--charcoal);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Overlay - Fixed to not block clicks when inactive */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 32, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Navigation - Bottom Slide */
.nav-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 999;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px var(--shadow-strong);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
    display: none;
}

.nav-mobile.active {
    transform: translateY(0);
}

.nav-mobile-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--white);
}

.nav-mobile-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.nav-close {
    background: var(--sand);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-links {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.nav-mobile-links a {
    padding: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-radius: 12px;
    background: var(--cream);
    text-align: center;
    transition: all 0.3s ease;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
    background: var(--terracotta);
    color: var(--white);
}

/* ==========================================================================
   Main Content
   ========================================================================== */
.main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--sand) 50%, var(--clay) 100%);
    border-radius: 0 0 60px 60px;
    margin: -3rem -2rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 83, 47, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(194, 83, 47, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 83, 47, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--terracotta);
    border: 2px solid var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
}

/* ==========================================================================
   Asymmetric Grid & Cards
   ========================================================================== */
.grid-asymmetric {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    align-items: stretch;
}

.card {
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card > *:last-child {
    margin-bottom: 0;
}

.card > p {
    flex-grow: 1;
}

/* Equal height cards in grid */
.grid-asymmetric .card {
    min-height: auto;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
}

/* Card Shapes */
.card-round {
    border-radius: 30px;
}

.card-organic {
    border-radius: 30px;
    padding: 2.5rem;
}

.card-angular {
    border-radius: 4px 40px 4px 40px;
}

.card-wide {
    border-radius: 20px;
}

.card-tall {
    border-radius: 20px 20px 60px 20px;
}

.card-full {
    border-radius: 30px;
    grid-column: 1 / -1;
}

.card h3 {
    color: var(--terracotta-dark);
    margin-bottom: 1rem;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.section {
    margin: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--terracotta);
    border-radius: 2px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

th, td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--sand);
}

th {
    background: var(--terracotta);
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
}

tr:hover {
    background: rgba(194, 83, 47, 0.05);
}

tr:last-child td {
    border-bottom: none;
}

/* Checklists */
.checklist {
    list-style: none;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

.checklist li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px dashed var(--sand);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border: 2px solid var(--terracotta);
    border-radius: 6px;
    background: var(--cream);
}

.checklist li::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-60%) rotate(45deg);
    width: 6px;
    height: 12px;
    border-right: 2px solid var(--terracotta);
    border-bottom: 2px solid var(--terracotta);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--terracotta) 0%, var(--terracotta-light) 100%);
    border-radius: 2px;
}

.step {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow);
    position: relative;
}

/* Simple step numbers - no ::before pseudo element */
.step-number {
    position: absolute;
    left: -2.85rem;
    top: 1.3rem;
    width: 30px;
    height: 30px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid var(--cream);
}

.step h4 {
    color: var(--terracotta-dark);
    margin-bottom: 0.5rem;
}

/* FAQ Accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--charcoal);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(194, 83, 47, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--terracotta);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==========================================================================
   Contact & Form
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 30px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

/* Form Styles */
.form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group label span {
    color: var(--terracotta);
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid var(--sand);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-control:focus {
    outline: none;
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(194, 83, 47, 0.1);
}

.form-control::placeholder {
    color: var(--earth);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Checkbox group - aligned properly */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--terracotta);
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.form-error {
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: none;
}

.form-control.error {
    border-color: #c0392b;
}

.form-control.error + .form-error {
    display: block;
}

/* ==========================================================================
   Push Notification
   ========================================================================== */
.push-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--white);
    padding: 1.2rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    border-left: 4px solid var(--terracotta);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 350px;
}

.push-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.push-notification.success {
    border-left-color: #27ae60;
}

.push-notification.error {
    border-left-color: #c0392b;
}

.push-notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.push-notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.push-notification.success .push-notification-icon {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.push-notification.error .push-notification-icon {
    background: rgba(192, 57, 43, 0.1);
    color: #c0392b;
}

.push-notification-text h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.push-notification-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.push-notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-secondary);
    padding: 4px;
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -10px 40px var(--shadow-strong);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--terracotta);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--terracotta-dark);
}

.cookie-btn-necessary {
    background: var(--sand);
    color: var(--charcoal);
}

.cookie-btn-necessary:hover {
    background: var(--clay);
}

/* Reject button */
.cookie-btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--sand);
}

.cookie-btn-reject:hover {
    background: var(--sand);
    color: var(--charcoal);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--charcoal);
    color: var(--sand);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--sand);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--terracotta-light);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--sand);
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.footer-legal a:hover {
    color: var(--terracotta-light);
    background: rgba(255, 255, 255, 0.1);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Page-Specific Styles
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    margin: -3rem -2rem 3rem;
    border-radius: 0 0 60px 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Content Blocks */
.content-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 2rem;
}

.content-block h2 {
    color: var(--terracotta-dark);
    border-bottom: 2px solid var(--sand);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.content-block ul {
    padding-left: 1.5rem;
}

.content-block li {
    margin-bottom: 0.8rem;
}

/* Image Placeholder */
.img-placeholder {
    background: linear-gradient(135deg, var(--sand) 0%, var(--clay) 100%);
    border: 3px dashed var(--terracotta);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    color: var(--terracotta-dark);
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    margin: 1.5rem 0;
}

.img-placeholder span {
    opacity: 0.7;
}

/* Instruction Gallery */
.instruction-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.instruction-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.instruction-item .img-placeholder {
    margin: 0;
    border-radius: 0;
    border: none;
    border-bottom: 3px dashed var(--terracotta);
    min-height: 200px;
}

.instruction-item-content {
    padding: 1.5rem;
}

.instruction-item h4 {
    color: var(--terracotta-dark);
    margin-bottom: 0.5rem;
}

.instruction-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    font-size: 0.95rem;
}

/* Sitemap */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sitemap-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
}

.sitemap-section h3 {
    color: var(--terracotta);
    border-bottom: 2px solid var(--sand);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.sitemap-section ul {
    list-style: none;
}

.sitemap-section li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--sand);
}

.sitemap-section li:last-child {
    border-bottom: none;
}

.sitemap-section a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sitemap-section a::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    .header-inner {
        padding: 1rem;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .main {
        padding: 2rem 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
        margin: -2rem -1rem 2rem;
        border-radius: 0 0 40px 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .page-header {
        padding: 3rem 1rem;
        margin: -2rem -1rem 2rem;
        border-radius: 0 0 40px 40px;
    }
    
    .grid-asymmetric {
        grid-template-columns: 1fr;
    }
    
    .card-organic {
        border-radius: 20px;
    }
    
    .push-notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .process-steps {
        padding-left: 2.5rem;
    }
    
    .step-number {
        left: -2.3rem;
        width: 26px;
        height: 26px;
        font-size: 0.8rem;
    }
    
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-mobile-links {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    th, td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .nav-mobile,
    .nav-overlay,
    .push-notification {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    body::before {
        display: none;
    }
}
