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

:root{
    --bg:#050505;
    --black:#080808;
    --card:#101010;
    --card2:#171717;
    --white:#ffffff;
    --soft:#b9b9b9;
    --muted:#8f8f8f;
    --gold:#d4af37;
    --gold2:#f3d77a;
    --bordo:#7a0019;
    --bordo2:#a00024;
    --border:rgba(212,175,55,0.25);
    --shadow:0 18px 60px rgba(0,0,0,0.55);
}

body{
    background:
        radial-gradient(circle at 30% 20%, rgba(212,175,55,0.08), transparent 28%),
        radial-gradient(circle at 70% 20%, rgba(122,0,25,0.24), transparent 30%),
        linear-gradient(180deg,#050505,#0b0b0b);
    color:var(--white);
    font-family:Arial,sans-serif;
    min-height:100vh;
}

.container{
    width:94%;
    max-width:1500px;
    margin:auto;
}

/* HEADER */

.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(5,5,5,0.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(212,175,55,0.18);
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
    gap:30px;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-box{
    width:82px;
    height:82px;

    border:1px solid var(--gold);

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background:white;

    padding:8px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.35);
}

.logo-box img{
    width:200%;
    height:200%;

    object-fit:contain;

    transform:scale(1.15);

    object-position:center;
}

.logo-text h2{
    color:var(--gold);
    font-size:34px;
    letter-spacing:2px;
    line-height:1;
    font-family:Georgia,serif;
}

.logo-text h3{
    color:white;
    font-size:15px;
    letter-spacing:1.2px;
    margin-top:6px;
    font-family:Georgia,serif;
}

.logo-text p{
    color:var(--gold2);
    font-size:12px;
    margin-top:6px;
    letter-spacing:2px;
}

.menu{
    display:flex;
    align-items:center;
    gap:36px;
}

.menu a{
    color:white;
    text-decoration:none;
    font-weight:700;
    font-size:15px;
    position:relative;
    transition:.25s;
}

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

.menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:0;
    height:2px;
    background:var(--gold);
    transition:.25s;
}

.menu a:hover::after{
    width:100%;
}

.login-btn{
    color:var(--gold);
    text-decoration:none;
    border:1px solid var(--gold);
    border-radius:8px;
    padding:14px 22px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.25s;
}

.login-btn:hover{
    background:rgba(212,175,55,0.1);
}

/* HERO */

.hero{
    position:relative;
    padding:70px 0 30px;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.72) 45%, rgba(5,5,5,0.9) 100%),
        url("https://images.unsplash.com/photo-1610375461246-83df859d849d?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
    opacity:.82;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center, transparent, rgba(0,0,0,0.75));
}

.hero-inner{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 680px;
    gap:44px;
    align-items:center;
}

.mini-text{
    display:inline-block;
    color:var(--gold);
    font-weight:800;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:18px;
}

.hero-left h1{
    font-family:Georgia,serif;
    font-size:62px;
    line-height:1.08;
    max-width:640px;
    margin-bottom:18px;
}

.hero-divider{
    width:300px;
    height:1px;
    background:linear-gradient(90deg,var(--gold),transparent);
    margin:22px 0;
}

.hero-left p{
    color:#dedede;
    font-size:17px;
    line-height:1.75;
    max-width:650px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:36px;
}

.feature-card{
    background:rgba(15,15,15,0.72);
    border:1px solid rgba(212,175,55,0.22);
    border-radius:14px;
    padding:22px 16px;
    min-height:135px;
    text-align:center;
}

.feature-card i{
    color:var(--gold);
    font-size:34px;
    margin-bottom:14px;
}

.feature-card h4{
    font-size:14px;
    text-transform:uppercase;
    margin-bottom:8px;
}

.feature-card p{
    color:var(--soft);
    font-size:13px;
    line-height:1.45;
}

/* LIVE PRICE CARD */

.live-card{
    background:rgba(10,10,10,0.86);
    border:1px solid rgba(212,175,55,0.38);
    border-radius:14px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

.live-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 30px;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.live-status{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:20px;
    font-weight:900;
}

.live-dot{
    width:14px;
    height:14px;
    background:#29e66b;
    border-radius:50%;
    box-shadow:0 0 18px #29e66b;
    animation:pulse 1.4s infinite;
}

@keyframes pulse{
    0%{transform:scale(1)}
    50%{transform:scale(1.35)}
    100%{transform:scale(1)}
}

.live-date{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    color:#d7d7d7;
    font-size:14px;
    line-height:1.5;
}

.price-table-head,
.price-item{
    display:grid;
    grid-template-columns:1.7fr 1fr 1fr;
    align-items:center;
    gap:18px;
}

.price-table-head{
    padding:16px 30px;
    color:#bdbdbd;
    font-size:14px;
    font-weight:900;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.price-table{
    padding:0 30px;
}

.price-item{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.price-item:last-child{
    border-bottom:none;
}

.price-name{
    display:flex;
    align-items:center;
    gap:14px;
    font-weight:900;
}

.coin-circle{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(212,175,55,0.16);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
}

.price-item strong{
    color:white;
    font-size:24px;
    text-align:right;
    font-weight:900;
}

.live-card::after{
    content:"Fiyatlar güncel olarak piyasadan alınmaktadır.";
    display:block;
    padding:15px 30px;
    color:var(--gold);
    font-size:13px;
    border-top:1px solid rgba(212,175,55,0.18);
    background:rgba(212,175,55,0.04);
}

/* JEWELERS */

.jewelers{
    position:relative;
    z-index:2;
    padding:22px 0 70px;
}

.section-title{
    display:flex;
    align-items:end;
    justify-content:space-between;
    margin-bottom:20px;
    border-bottom:1px solid rgba(212,175,55,0.25);
    padding-bottom:12px;
}

.section-title h2{
    font-family:Georgia,serif;
    font-size:32px;
    color:white;
}

.section-title p{
    color:var(--soft);
    margin-top:6px;
}

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

.jeweler-card{
    background:rgba(14,14,14,0.9);
    border:1px solid rgba(212,175,55,0.2);
    border-radius:20px;
    padding:22px;
    display:flex;
    flex-direction:column;
    gap:14px;
    transition:border-color .25s, box-shadow .25s, transform .25s;
}

.jeweler-card:hover{
    border-color:rgba(212,175,55,0.55);
    box-shadow:0 12px 40px rgba(212,175,55,0.1);
    transform:translateY(-3px);
}

/* Logo */
.jc-logo-wrap{
    display:flex;
    align-items:center;
    gap:14px;
}

.jc-logo-box{
    width:64px;
    height:64px;
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(212,175,55,0.2);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    flex-shrink:0;
}

.jc-logo-box img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:6px;
}

.jc-logo-box .jc-initials{
    font-size:20px;
    font-weight:800;
    color:var(--gold);
    font-family:Georgia,serif;
}

.jc-name{
    font-size:16px;
    font-weight:800;
    color:var(--white);
    font-family:Georgia,serif;
    line-height:1.3;
}

.jc-stars{
    color:var(--gold);
    font-size:13px;
    letter-spacing:1px;
    margin-top:3px;
}

/* Info */
.jc-info{
    display:flex;
    flex-direction:column;
    gap:6px;
    flex:1;
}

.jc-info-row{
    display:flex;
    align-items:flex-start;
    gap:8px;
    font-size:13px;
    color:var(--soft);
    line-height:1.4;
}

.jc-info-row svg{
    width:13px;
    height:13px;
    flex-shrink:0;
    margin-top:2px;
    fill:var(--gold);
    opacity:.7;
}

/* Call Button */
.jc-call{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    background:rgba(212,175,55,0.1);
    border:1px solid rgba(212,175,55,0.25);
    border-radius:12px;
    padding:11px;
    color:var(--gold);
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    transition:.2s;
    margin-top:auto;
}

.jc-call:hover{
    background:rgba(212,175,55,0.2);
    border-color:rgba(212,175,55,0.5);
}

.jeweler-card h3{
    color:white;
    font-size:16px;
    font-family:Georgia,serif;
}

.jeweler-card p{
    color:var(--soft);
}

.jeweler-card a{
    color:var(--gold);
    text-decoration:none;
    font-weight:800;
}

/* FOOTER */

/* ── Office Info Cards ── */
.office-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(14,14,14,.7);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: 16px;
    padding: 20px;
}
.office-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 16px; flex-shrink: 0;
}
.office-label {
    font-size: 11px; font-weight: 700;
    color: var(--muted); text-transform: uppercase;
    letter-spacing: .5px; margin-bottom: 4px;
}
.office-val {
    font-size: 14px; font-weight: 600; color: var(--soft);
    line-height: 1.5;
}

.footer{
    background:#060606;
    border-top:1px solid rgba(212,175,55,0.2);
    padding:28px 0;
}

.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:var(--soft);
}

/* MOBILE */

/* ══════════════════════════════════════════
   HAMBurger MENÜ
══════════════════════════════════════════ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}
.hamburger:hover { background: rgba(212,175,55,.1); }
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 80px 24px 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 14px;
    transition: .2s;
    width: 100%;
    text-align: center;
    border: 1px solid transparent;
}
.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--gold);
    border-color: rgba(212,175,55,.25);
    background: rgba(212,175,55,.08);
}
.mobile-menu-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(255,255,255,.08);
    border: none; border-radius: 10px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; cursor: pointer;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1100px)
══════════════════════════════════════════ */
@media(max-width:1100px){
    .hero-inner { grid-template-columns:1fr; }
    .live-card  { max-width:100%; }
    .feature-grid,
    .jeweler-grid { grid-template-columns:repeat(2,1fr); }
    .menu { display:none; }
    .hamburger { display:flex; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBİL (≤ 650px)
══════════════════════════════════════════ */
@media(max-width:650px){

    /* Header */
    .header-inner { padding: 12px 0; gap: 12px; }
    .logo-box { width:52px; height:52px; padding:6px; }
    .logo-box img { width:100%; height:100%; transform:none; }
    .logo-text h2 { font-size:18px; letter-spacing:1px; }
    .logo-text h3 { font-size:11px; letter-spacing:.5px; margin-top:3px; }
    .logo-text p  { display:none; }
    .login-btn { display:none; }

    /* Hero (eski) */
    .hero-left h1 { font-size:28px; }
    .hero-inner { gap:24px; }
    .feature-grid { grid-template-columns:1fr 1fr; gap:10px; }
    .feature-card { padding:14px; }
    .feature-card h4 { font-size:13px; }
    .feature-card p  { font-size:11px; }

    /* Grids */
    .jeweler-grid { grid-template-columns:1fr; }

    /* Price table */
    .price-table-head,
    .price-item { grid-template-columns:1.4fr 1fr 1fr; gap:6px; }
    .price-item strong { font-size:16px; }
    .price-table { padding:0 16px; }
    .price-table-head { padding:10px 16px; font-size:12px; }

    /* Live card */
    .live-card { border-radius:16px; }
    .live-header { padding:12px 16px; }

    /* Sections */
    .content-section { padding:40px 0; }
    .section-title h2 { font-size:22px; }

    /* Hero v2 (yeni) */
    .hero-v2 { padding:40px 0 30px; }
    .hero-v2-inner { padding:0 16px; gap:28px; }
    .hero-v2-left h1 { font-size:24px; }
    .hero-v2-left p  { font-size:14px; margin-bottom:24px; }
    .hero-stats { gap:16px; }
    .hero-stat-num { font-size:22px; }
    .price-card-v2 { border-radius:16px; }
    .pcv2-header { padding:12px 16px; }
    .pcv2-head   { padding:8px 16px; }
    .pcv2-row    { padding:10px 16px; }
    .pcv2-name   { font-size:12px; gap:8px; }
    .pcv2-val    { font-size:14px; }
    .pcv2-dot    { width:6px; height:6px; }

    /* Section başlığı */
    .sec-hd { flex-direction:column; align-items:flex-start; gap:10px; }
    .sec-hd-left h2 { font-size:22px; }
    .featured-section { padding:40px 0; }
    .container-v2 { padding:0 16px; }

    /* Kuyumcu kartları */
    .featured-grid { grid-template-columns:1fr; gap:14px; }
    .jeweler-card-v2 { padding:18px; }
    .jcv2-logo { width:48px; height:48px; }
    .jcv2-name { font-size:15px; }

    /* Preview kartları */
    .preview-section { padding:40px 0; }
    .preview-grid { grid-template-columns:1fr; gap:14px; }
    .preview-img  { height:160px; }
    .preview-body { padding:16px; }
    .preview-title { font-size:15px; }

    /* İletişim */
    .contact-section { padding:40px 0; }
    .office-card { padding:16px; }

    /* Footer */
    .footer { padding:20px 0; }
    .footer-inner { flex-direction:column; gap:8px; text-align:center; font-size:13px; }
}
.price-item strong{
    color:#29e66b !important;
}

.price-table-head span{
    color:#ffffff !important;
}

.price-table-head span:not(:first-child),
.price-item > strong {
    text-align: right;
}

.small-note{
    font-size:11px !important;
    line-height:1.2 !important;
    color:#ffffff !important;
    max-width:120px;
    display:block;
}

/* PRICE COLOR FIX */
.price-item > strong{
    color:#29e66b !important;
}

.price-table-head span{
    color:#ffffff !important;
}

.maintenance-active > *:not(.maintenance-screen){
    display:none !important;
}

.maintenance-screen{
    min-height:100vh;
    background:#050505;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.maintenance-card{
    max-width:620px;
    text-align:center;
    background:#111;
    border:1px solid rgba(212,175,55,0.35);
    border-radius:24px;
    padding:45px;
}

.maintenance-card h1{
    color:#d4af37;
    font-size:42px;
    margin-bottom:18px;
}

.maintenance-card p{
    color:#ddd;
    font-size:18px;
    line-height:1.7;
}
.content-section{
    padding:70px 0;
}

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

.content-card{
    background:rgba(12,12,12,0.86);
    border:1px solid rgba(212,175,55,0.25);
    border-radius:18px;
    padding:24px;
    min-height:180px;
}

.content-card h3{
    color:#d4af37;
    margin-bottom:12px;
}

.content-card p{
    color:#ddd;
    line-height:1.6;
}

.announcement-card{
    border-color:rgba(122,0,25,0.55);
}

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