/* Temel Ayarlar ve Değişkenler */
:root {
    --primary-color: #d4af37;
    /* Gold */
    --primary-dark: #b5952f;
    --bg-color: #0f1115;
    --surface-color: #1a1d24;
    --text-color: #f1f1f1;
    --text-muted: #9ba1a6;
    --glass-bg: rgba(26, 29, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-decoration: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    width: 1.25em;
    height: 1.25em;
    object-fit: contain;
    border-radius: 0.35em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

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

/* Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface-color);
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    z-index: 1001;
    padding: 10px 0;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}


/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(15, 17, 21, 0.8), rgba(15, 17, 21, 0.95)),
        url('https://images.unsplash.com/photo-1541813133-72251dc34460?q=80&w=1964&auto=format&fit=crop') center/cover;
    padding: 60px 20px 0;
}

.hero.small-hero {
    height: 40vh;
    background-position: center 30%;
}

/* Ana sayfa hero: Öz Çelik Kapı mağaza dış cephe fotoğrafı */
.hero.home-hero {
    background: linear-gradient(rgba(15, 17, 21, 0.78), rgba(15, 17, 21, 0.92)),
        url('assets/images/catalog/magaza-dis.jpg') center/cover no-repeat;
    background-position: center 60%;
}

.hero.yangin-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.777), rgba(4, 5, 6, 0.9)),
        url('assets/images/catalog/yangin-hero.jpg') center/cover no-repeat;
}

.hero.villa-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.777), rgba(15, 17, 21, 0.85)),
        url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
}

.hero.daire-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.777), rgba(15, 17, 21, 0.85)),
        url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease-out;
}

.hero.small-hero .hero-content h1 {
    font-size: 48px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Catalog Section */
.catalog-section {
    padding: 100px 50px;
    min-height: 60vh;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

/* Catalog Gallery (Katalog Sayfası) */
.catalog-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: radial-gradient(1200px 400px at 20% 0%, rgba(212, 175, 55, 0.18), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    cursor: zoom-in;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    min-height: 240px;
}

.catalog-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    border-color: rgba(212, 175, 55, 0.35);
}

.catalog-item img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
    transition: transform 0.45s ease;
}

.catalog-item:hover img {
    transform: scale(1.07);
}

.catalog-item::after {
    content: "Yakınlaştır";
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.2px;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.35);
    opacity: 0;
    transform: translateY(8px);
    transition: 0.25s ease;
    pointer-events: none;
}

.catalog-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    padding: 22px;
}

.lightbox.open {
    display: grid;
}

.lightbox-inner {
    width: min(1200px, 100%);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
    background: rgba(15, 17, 21, 0.75);
    max-height: 86vh;
}

.lightbox-inner img {
    width: 100%;
    height: 72vh;
    max-height: 72vh;
    display: block;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.55);
}

.lightbox-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-title {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 13px;
}

.lightbox-actions {
    display: flex;
    gap: 10px;
}

.lightbox-btn {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--primary-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.lightbox-btn:hover {
    background: rgba(212, 175, 55, 0.22);
    border-color: rgba(212, 175, 55, 0.6);
}

/* Grid & Cards */
.doors-grid {
    display: grid;
    gap: 28px;
    max-width: 1600px;
    margin: 0 auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.door-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}

.door-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(212, 175, 55, 0.3);
}

.door-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    transform: translateZ(0);
}

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

.door-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.door-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.door-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.door-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.door-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.door-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.door-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    transition: 0.25s ease;
    white-space: nowrap;
}

.door-card:hover .btn-detail {
    background: rgba(212, 175, 55, 0.22);
    border-color: rgba(212, 175, 55, 0.6);
}

.loading,
.error-message {
    text-align: center;
    grid-column: 1 / -1;
    padding: 40px;
}

.loading {
    font-size: 18px;
    color: var(--primary-color);
}

.error-message {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 8px;
}

/* Category / Subcategory Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.category-card {
    text-decoration: none;
    background: radial-gradient(1200px 400px at 20% 0%, rgba(212, 175, 55, 0.18), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 190px 1fr;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    border-color: rgba(212, 175, 55, 0.35);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.category-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-card-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.category-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.category-card-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 800;
}

/* Kapı Detay Sayfası */
.detail-container {
    max-width: 1000px;
    margin: 120px auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
    min-height: 50vh;
}

.detail-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-info h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.detail-info .category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: block;
}

.detail-info p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.detail-info .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.btn-back {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    align-self: flex-start;
}

.btn-back:hover {
    background: var(--primary-color);
    color: #000;
}

.tech-specs {
    margin-top: 18px;
    padding: 18px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
}

.tech-specs h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.spec-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
}

.spec-item strong {
    color: #fff;
    font-weight: 700;
}

/* Hakkımızda Sayfası */
.about-section {
    max-width: 1200px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.stat-card {
    background: var(--surface-color);
    padding: 40px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.stat-card h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

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

.stat-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Bize Ulaşın Sayfası */
.contact-container {
    max-width: 1200px;
    margin: 80px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
}

.contact-info {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-color);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

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

.info-icon {
    font-size: 24px;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
}

.info-item h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.contact-form h2 {
    color: #fff;
    margin-bottom: 30px;
}

/* WhatsApp Card (İletişim sayfası) */
.whatsapp-card {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    border-left: 4px solid #25D366;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.whatsapp-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.whatsapp-card h2 {
    color: #fff;
    font-size: 26px;
    margin: 0;
}

.whatsapp-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 14px 26px;
    background: #25D366;
    color: #0b1a12;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.2px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.25);
}

.whatsapp-button:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
}

.whatsapp-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.whatsapp-note {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.85;
}

/* WhatsApp Floating Action Button (tüm sayfalar) */
.ozc-wa-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #0b1a12;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
    z-index: 1500;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ozc-wa-fab:hover {
    background: #1ebe5d;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
}

/* Cookie Consent Banner */
.ozc-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: 720px;
    margin: 0 auto;
    padding: 16px 18px;
    background: rgba(20, 23, 30, 0.96);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-color);
    border-radius: 14px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
    z-index: 1600;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: ozcCookieIn 0.35s ease both;
}

.ozc-cookie-banner--hide {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ozc-cookie-text {
    flex: 1 1 280px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
}

.ozc-cookie-text a {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.ozc-cookie-accept {
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: #000;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ozc-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

@keyframes ozcCookieIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gizlilik / KVKK ve 404 sayfaları için yasal/içerik kartı */
.legal-section {
    max-width: 920px;
    margin: 60px auto 80px;
    padding: 0 20px;
}

.legal-card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary-color);
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.legal-card h2 {
    color: #fff;
    font-size: 28px;
    margin: 0 0 16px;
}

.legal-card h3 {
    color: var(--primary-color);
    font-size: 19px;
    margin: 28px 0 10px;
}

.legal-card p,
.legal-card li {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 10px;
}

.legal-card ul {
    margin: 0 0 14px 22px;
}

.legal-card strong {
    color: #fff;
}

.legal-meta {
    margin-top: 26px !important;
    font-size: 13px !important;
    opacity: 0.7;
}

/* 404 sayfası özel düzen */
.notfound-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.notfound-card {
    max-width: 560px;
}

.notfound-code {
    font-size: 96px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 4px;
}

.notfound-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 14px;
}

.notfound-text {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 16px;
}

@media (max-width: 700px) {
    .legal-card {
        padding: 26px 22px;
    }
    .legal-card h2 {
        font-size: 24px;
    }
    .notfound-code {
        font-size: 72px;
    }
}

@media (max-width: 520px) {
    .ozc-wa-fab {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
    .ozc-cookie-banner {
        padding: 14px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

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

.map-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

/* Footer */
footer {
    background: #08090b;
    padding: 60px 50px 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-info p,
.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 1.15em;
    height: 1.15em;
    object-fit: contain;
    border-radius: 0.35em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

/* Animations & Responsive */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 900px) {

    .detail-container,
    .about-section,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .catalog-section {
        padding: 80px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    /* Mobile Dropdown */
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 15px;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.03);
        transform: none;
        opacity: 1;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}


@media (max-width: 1400px) {
    .doors-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .catalog-gallery {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .doors-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    }

    .catalog-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .doors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .catalog-gallery {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form,
    .whatsapp-card {
        padding: 24px;
    }

    .whatsapp-card h2 {
        font-size: 22px;
    }

    .whatsapp-icon {
        width: 60px;
        height: 60px;
    }

    .info-item {
        margin-bottom: 24px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-right: 14px;
    }

    .about-section {
        margin: 40px auto;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 16px;
    }

    .stat-card {
        padding: 28px;
    }

    .map-section {
        height: 360px;
    }

    footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 520px) {
    .doors-grid {
        grid-template-columns: 1fr;
    }
}