* { box-sizing: border-box; }
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    min-height: 100%;
    scroll-behavior: smooth;
    background: #101010;
    color: #fff;
}
a { color: inherit; }
#hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}
#hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}
.content {
    position: relative;
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.54);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 40px 0;
}
.container {
    max-width: 1120px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
.hero-panel {
    animation: fadeInUp .7s ease both;
}
.brand-logo img {
    max-width: 220px;
    width: 50%;
    height: auto;
}
.content h1 {
    font-size: clamp(2rem, 5vw, 3.7rem);
    margin: 10px 0;
    font-weight: 700;
}
.content p, .hero-lead {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 300;
    line-height: 1.55;
}
.project-features {
    background: rgba(0,0,0,.62);
    padding: 22px;
    border-radius: 16px;
    color: #fff;
    margin-top: 18px;
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(4px);
}
.project-features h2 { margin-top: 0; }
.project-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    text-align: left;
}
.project-features li {
    padding: 10px 12px;
    background: rgba(255,255,255,.09);
    border-radius: 10px;
}
.project-features li::before { content: '✓ '; font-weight: bold; }
.map-section {
    width: 100%;
    height: 100vh;
    background: #111;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.details-section {
    padding: 70px 20px;
    background: #f5f2ed;
    color: #1f1f1f;
}
.details-wrapper {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.details-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 34px rgba(0,0,0,.08);
}
.details-card h2 {
    margin-top: 0;
    font-size: 1.8rem;
}
.details-card ul {
    padding-left: 18px;
    line-height: 1.75;
    margin-bottom: 0;
}
.site-footer {
    background: #111;
    color: #fff;
    padding: 34px 20px;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-inner h2 { margin: 0 0 10px; }
.footer-inner p { margin: 8px 0; }
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-links a {
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.25);
    padding: 10px 14px;
    border-radius: 999px;
    transition: .2s ease;
}
.social-links a:hover { background: #fff; color: #111; }
.whatsapp-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.form-toggle {
    position: fixed;
    right: 20px;
    bottom: 82px;
    z-index: 9998;
    border: 0;
    background: #c9a24a;
    color: #111;
    padding: 14px 18px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.42);
    z-index: 9996;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
}
.form-overlay.is-open { opacity: 1; pointer-events: auto; }
.slide-form {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(110%);
    width: min(390px, 92vw);
    height: 100vh;
    background: #fff;
    color: #171717;
    padding: 34px 24px;
    z-index: 9997;
    box-shadow: -16px 0 35px rgba(0,0,0,.22);
    transition: transform .3s ease;
    overflow-y: auto;
}
.slide-form.is-open { transform: translateX(0); }
.slide-form h3 { margin-top: 20px; font-size: 1.5rem; }
.slide-form p { color: #555; line-height: 1.5; }
.slide-form input, .slide-form textarea {
    width: 100%;
    padding: 13px 12px;
    margin: 7px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}
.slide-form textarea { min-height: 120px; resize: vertical; }
.slide-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    background: #111;
    color: #fff;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
}
.form-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f0f0f0;
    font-size: 28px;
    line-height: 30px;
    cursor: pointer;
}
.success-toast {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translate(-50%, -120%);
    background: #1f8f4d;
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0,0,0,.24);
    opacity: 0;
    transition: .3s ease;
    text-align: center;
}
.success-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 860px) {
    .content { align-items: flex-start; padding-top: 35px; overflow-y: auto; }
    .details-wrapper { grid-template-columns: 1fr; }
    .footer-inner { align-items: flex-start; }
    .project-features { padding: 16px; }
    .project-features ul { grid-template-columns: 1fr; }
    .form-toggle { right: 12px; bottom: 78px; padding: 12px 14px; }
    .whatsapp-fixed { right: 12px; bottom: 18px; padding: 12px 14px; }
}

/* V4 müşteri odaklı koyu tasarım güncellemeleri */
.section-heading {
    max-width: 960px;
    margin: 0 auto 34px;
    text-align: center;
}
.section-heading span {
    display: inline-block;
    color: #d7b45a;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: 10px;
}
.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1.15;
}
.section-heading p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 1.08rem;
    line-height: 1.65;
}
.fixed-social {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9995;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fixed-social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(215,180,90,.5);
    color: #d7b45a;
    text-decoration: none;
    font-weight: 800;
    font-size: .8rem;
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
    transition: .25s ease;
}
.fixed-social a:hover {
    background: #d7b45a;
    color: #111;
    transform: translateX(4px) scale(1.04);
}
.details-section {
    background: #050505;
    color: #fff;
    padding: 86px 20px;
    position: relative;
    overflow: hidden;
}
.details-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(215,180,90,.18), transparent 34%), linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
    pointer-events: none;
}
.details-section > * {
    position: relative;
    z-index: 1;
}
.details-card {
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 1px solid rgba(215,180,90,.24);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.32);
}
.details-card h2 {
    color: #d7b45a;
}
.details-intro {
    color: rgba(255,255,255,.74);
    line-height: 1.65;
    margin-top: -6px;
}
.details-card ul {
    list-style: none;
    padding-left: 0;
}
.details-card li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.details-card li:last-child { border-bottom: 0; }
.details-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: #d7b45a;
    font-weight: 900;
}
.gallery-section {
    background: #0a0a0a;
    color: #fff;
    padding: 84px 20px;
}
.gallery-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.gallery-card {
    min-height: 280px;
    border: 1px solid rgba(215,180,90,.28);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
    color: #fff;
    padding: 28px;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.gallery-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(215,180,90,.7);
    box-shadow: 0 22px 50px rgba(0,0,0,.34);
}
.gallery-placeholder {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px dashed rgba(215,180,90,.8);
    color: #d7b45a;
    display: grid;
    place-items: center;
    font-size: 2.4rem;
    line-height: 1;
}
.gallery-card strong {
    font-size: 1.35rem;
    color: #d7b45a;
}
.gallery-card small {
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0,0,0,.82);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.gallery-modal.is-open { display: flex; }
.gallery-modal-content {
    width: min(960px, 94vw);
    min-height: min(620px, 80vh);
    background: #0d0d0d;
    color: #fff;
    border: 1px solid rgba(215,180,90,.42);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.gallery-modal-content h3 {
    margin: 0 0 18px;
    color: #d7b45a;
    font-size: 1.7rem;
}
.gallery-modal-box {
    min-height: 460px;
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,.26);
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.64);
    text-align: center;
    padding: 20px;
}
.gallery-modal-close {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #d7b45a;
    color: #111;
    font-size: 30px;
    line-height: 40px;
    cursor: pointer;
    z-index: 10002;
}
.map-section {
    height: 72vh;
    background: #050505;
    padding: 18px;
}
.map-section iframe {
    border-radius: 22px;
    filter: grayscale(1) invert(.88) contrast(.88) brightness(.82);
}
.footer-centered {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.footer-logo {
    max-width: 180px;
    width: 55%;
    height: auto;
    margin-bottom: 10px;
}
.site-footer {
    background: #050505;
    border-top: 1px solid rgba(215,180,90,.18);
}
@media (max-width: 860px) {
    .fixed-social { left: 10px; gap: 8px; }
    .fixed-social a { width: 38px; height: 38px; font-size: .72rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card { min-height: 220px; }
    .map-section { height: 58vh; padding: 10px; }
    .details-section, .gallery-section { padding-left: 52px; }
}

/* V5 - 6'lı lightbox görsel alanları */
.image-gallery-section {
    background: #070707;
    border-top: 1px solid rgba(215,180,90,.12);
}
.image-gallery-section:nth-of-type(even) {
    background: #0c0c0c;
}
.image-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.image-card {
    min-height: 340px;
    padding: 18px;
    justify-content: flex-start;
    overflow: hidden;
}
.image-slot {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    border: 1px dashed rgba(215,180,90,.45);
    background:
        linear-gradient(135deg, rgba(215,180,90,.12), rgba(255,255,255,.03)),
        #111;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 8px;
}
.image-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}
.image-slot img.is-missing {
    display: none;
}
.image-fallback {
    color: #d7b45a;
    font-weight: 800;
    line-height: 1.45;
    padding: 16px;
    text-align: center;
}
.image-fallback small {
    color: rgba(255,255,255,.64);
    font-size: .76rem;
    word-break: break-word;
}
.gallery-modal-box {
    position: relative;
    overflow: hidden;
    background: #111;
}
.gallery-modal-box img {
    width: 100%;
    height: 100%;
    max-height: 68vh;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}
.gallery-modal-box img.is-missing {
    display: none;
}
.gallery-modal-box p {
    color: rgba(255,255,255,.72);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 24px;
}
@media (max-width: 980px) {
    .image-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .image-gallery-grid { grid-template-columns: 1fr; }
    .image-card { min-height: 300px; }
}


.drive-detail-section {
    background: #070707;
    color: #fff;
    padding: 80px 20px;
}
.drive-detail-grid {
    max-width: 1180px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}
.drive-detail-card {
    min-height: 230px;
    padding: 24px 20px;
    border-radius: 24px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035));
    border: 1px solid rgba(201,162,74,.35);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    box-shadow: 0 22px 45px rgba(0,0,0,.30);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.drive-detail-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #c9a24a;
    background: linear-gradient(145deg, rgba(201,162,74,.20), rgba(255,255,255,.06));
}
.drive-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(201,162,74,.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}
.drive-detail-card strong {
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 10px;
}
.drive-detail-card small {
    color: rgba(255,255,255,.72);
    line-height: 1.5;
    margin-bottom: 20px;
}
.drive-detail-card em {
    font-style: normal;
    color: #c9a24a;
    font-weight: 700;
}
@media (max-width: 1100px) {
    .drive-detail-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .drive-detail-grid { grid-template-columns: 1fr; }
    .drive-detail-card { min-height: 190px; }
}


/* KVKK, çerez yönetimi ve PWA alanları */
.kvkk-check { display:flex; gap:10px; align-items:flex-start; font-size:.88rem; line-height:1.45; color:#333; margin:10px 0 14px; }
.kvkk-check input { margin-top:3px; }
.kvkk-check a { color:#9a7422; font-weight:700; text-decoration:none; }
.legal-links { margin-top:10px; font-size:.92rem; }
.legal-links a, .legal-links button { color:#c9a24a; background:none; border:0; cursor:pointer; text-decoration:none; font:inherit; padding:0; }
.cookie-banner { position:fixed; left:22px; right:22px; bottom:22px; z-index:10020; display:none; grid-template-columns:1fr auto; gap:18px; align-items:center; padding:18px 20px; border-radius:20px; color:#fff; background:rgba(7,7,7,.96); border:1px solid rgba(201,162,74,.5); box-shadow:0 24px 70px rgba(0,0,0,.42); }
.cookie-banner.is-visible { display:grid; }
.cookie-banner p { margin:6px 0 0; color:rgba(255,255,255,.78); line-height:1.5; }
.cookie-actions { display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.cookie-actions button, .cookie-modal-actions button { border:1px solid rgba(201,162,74,.65); border-radius:999px; padding:11px 16px; cursor:pointer; background:#c9a24a; color:#070707; font-weight:800; }
.cookie-actions button:first-child, .cookie-actions button:nth-child(2) { background:transparent; color:#fff; }
.cookie-modal { position:fixed; inset:0; z-index:10030; display:none; align-items:center; justify-content:center; padding:18px; background:rgba(0,0,0,.65); }
.cookie-modal.is-open { display:flex; }
.cookie-modal-content { position:relative; width:min(540px, 100%); background:#101010; color:#fff; border:1px solid rgba(201,162,74,.45); border-radius:26px; padding:28px; box-shadow:0 30px 80px rgba(0,0,0,.50); }
.cookie-modal-content h3 { margin-top:0; color:#c9a24a; }
.cookie-modal-content p, .cookie-modal-content small { color:rgba(255,255,255,.76); line-height:1.6; }
.cookie-modal-content label { display:flex; gap:10px; margin:14px 0; align-items:center; }
.cookie-close { position:absolute; top:12px; right:14px; width:34px; height:34px; border:0; border-radius:50%; background:rgba(255,255,255,.10); color:#fff; cursor:pointer; font-size:24px; }
.pwa-panel { position:fixed; right:18px; bottom:88px; z-index:10010; display:flex; flex-direction:column; gap:10px; }
.pwa-panel button { border:0; border-radius:999px; padding:12px 16px; cursor:pointer; color:#070707; background:#c9a24a; font-weight:800; box-shadow:0 14px 30px rgba(0,0,0,.28); }
@media (max-width:760px){ .cookie-banner{ grid-template-columns:1fr; left:12px; right:12px; bottom:12px; } .cookie-actions{ justify-content:flex-start; } .pwa-panel{ right:12px; bottom:120px; } }

/* Sosyal ikon ve hızlı işlem güncellemesi */
.fixed-social a svg,
.whatsapp-fixed svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
    flex-shrink: 0;
}
.fixed-social a span {
    position: absolute;
    left: 52px;
    white-space: nowrap;
    background: rgba(5,5,5,.92);
    color: #d7b45a;
    border: 1px solid rgba(215,180,90,.35);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-6px);
    transition: .2s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.fixed-social a:hover span,
.fixed-social a:focus-visible span {
    opacity: 1;
    transform: translateX(0);
}
.fixed-social .social-call {
    background: #c9a24a;
    color: #111;
}
.quick-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10010;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}
.quick-actions .whatsapp-fixed,
.quick-actions .form-toggle,
.quick-actions .pwa-panel {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
}
.quick-actions .whatsapp-fixed {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 17px;
}
.quick-actions .form-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.quick-actions .pwa-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.quick-actions .pwa-panel button {
    font-size: 13px;
    padding: 10px 14px;
}
@media (max-width: 760px) {
    .quick-actions {
        right: 12px;
        bottom: 12px;
        gap: 8px;
    }
    .quick-actions .whatsapp-fixed,
    .quick-actions .form-toggle,
    .quick-actions .pwa-panel button {
        padding: 10px 12px;
        font-size: 12px;
    }
    .fixed-social a span { display: none; }
}


/* Genel kontrol: kayma, taşma ve özellik link hizaları */
html, body { width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; }
#hero { isolation: isolate; }
#hero video { pointer-events: none; }
.project-features ul { align-items: stretch; }
.project-features li {
    display: flex;
    align-items: stretch;
    min-height: 46px;
    padding: 0;
    overflow: hidden;
}
.project-features li::before {
    content: '✓';
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    padding-left: 4px;
    color: #d8b15c;
    line-height: 1;
}
.project-features li a {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 10px 12px 10px 0;
    color: inherit;
    text-decoration: none;
    line-height: 1.35;
    word-break: normal;
    overflow-wrap: anywhere;
}
.project-features li:hover {
    background: rgba(216,177,92,.22);
    transform: translateY(-1px);
    transition: .2s ease;
}
.details-wrapper, .drive-detail-grid, .gallery-grid { min-width: 0; }
.details-card, .drive-detail-card, .gallery-card, .project-features { min-width: 0; }
.fixed-social, .quick-actions, .cookie-banner, .slide-form { max-width: 100vw; }
@media (max-width: 768px) {
    .content { padding: 82px 0 34px; }
    .project-features ul { gap: 8px; }
    .project-features li { min-height: 44px; }
    .project-features li::before { width: 34px; }
    .project-features li a { font-size: .95rem; }
}
@media (max-width: 480px) {
    .container { padding-left: 14px; padding-right: 14px; }
    .project-features { padding: 14px; border-radius: 14px; }
    .content h1 { line-height: 1.08; }
}


/* Üst şeffaf ana menü */
.glass-main-menu {
    position: fixed;
    top: 34px;
    left: 18px;
    right: auto;
    z-index: 300;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: min(860px, calc(100vw - 36px));
    padding: 9px 10px;
    border: 1px solid rgba(216,177,92,.36);
    border-radius: 16px;
    background: rgba(0,0,0,.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(0,0,0,.22);
}
.glass-main-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .2px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    white-space: nowrap;
    transition: .2s ease;
}
.glass-main-menu a:hover,
.glass-main-menu a:focus {
    color: #101010;
    background: #d8b15c;
    border-color: #d8b15c;
    outline: none;
}
.info-page-hero {
    min-height: 100vh;
    padding: 145px 20px 70px;
    background:
        linear-gradient(135deg, rgba(0,0,0,.82), rgba(0,0,0,.58)),
        url('../detaylar.jpg') center/cover no-repeat;
    color: #fff;
}
.info-page-container {
    max-width: 1080px;
    margin: 0 auto;
}
.info-page-card {
    background: rgba(0,0,0,.56);
    border: 1px solid rgba(216,177,92,.28);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 48px);
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.info-page-card h1 {
    color: #d8b15c;
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}
.info-page-card h2 {
    color: #d8b15c;
    margin-top: 28px;
}
.info-page-card p,
.info-page-card li {
    color: #f2f2f2;
    line-height: 1.75;
    font-size: 1.03rem;
}
.info-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}
.info-mini-box {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 18px;
}
.info-mini-box strong { color: #d8b15c; display: block; margin-bottom: 6px; }
.bank-details {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}
.bank-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
}
.bank-row span:first-child { color: #d8b15c; font-weight: 800; }
.bank-row span:last-child { overflow-wrap: anywhere; }
@media (max-width: 768px) {
    .glass-main-menu {
        top: 30px;
        left: 10px;
        max-width: calc(100vw - 20px);
        gap: 6px;
        padding: 7px;
        border-radius: 14px;
    }
    .glass-main-menu a {
        font-size: 11.5px;
        padding: 7px 8px;
    }
    .bank-row { grid-template-columns: 1fr; gap: 4px; }
    .info-page-hero { padding-top: 175px; }
}


/* Profesyonel WhatsApp hızlı iletişim butonu */
.quick-actions .whatsapp-fixed {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 16px 34px rgba(0,0,0,.30), 0 0 0 0 rgba(37,211,102,.45);
    animation: whatsappPulse 2.4s infinite;
    min-width: 178px;
    justify-content: center;
}
.quick-actions .whatsapp-fixed span {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-align: left;
}
.quick-actions .whatsapp-fixed span strong {
    font-size: 14px;
    letter-spacing: .2px;
}
.quick-actions .whatsapp-fixed span small {
    font-size: 11px;
    font-weight: 600;
    opacity: .9;
}
.quick-actions .whatsapp-fixed:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 16px 34px rgba(0,0,0,.30), 0 0 0 0 rgba(37,211,102,.45); }
    70% { box-shadow: 0 16px 34px rgba(0,0,0,.30), 0 0 0 12px rgba(37,211,102,0); }
    100% { box-shadow: 0 16px 34px rgba(0,0,0,.30), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 760px) {
    .quick-actions .whatsapp-fixed { min-width: 0; }
    .quick-actions .whatsapp-fixed span small { display: none; }
}
