﻿/* OZLAND TUR — lightweight WABA-ready website
   Mobile-first, no Bootstrap dependency, no external fonts.
*/

:root {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --surface-soft: #ededf1;
    --text: #272733;
    --muted: #74747f;
    --line: #dcdce2;
    --brand: #f9c131;
    --brand-dark: #b87800;
    --brand-soft: #fff3c9;
    --ink-dark: #0f0e13;
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(39, 39, 51, 0.11);
    --radius: 22px;
    --radius-sm: 14px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--brand-dark);
    text-decoration: none;
}

a:hover,
a:focus {
    color: #8f5f00;
}

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

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 840px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(220, 220, 226, 0.95);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--ink-dark);
    min-width: 0;
}

.brand:hover {
    color: var(--ink-dark);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 13px;
    background: var(--brand);
    color: var(--ink-dark);
    font-size: 22px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(249, 193, 49, 0.30);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-copy strong {
    font-size: 17px;
    letter-spacing: 0.035em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-label {
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    padding: 14px 16px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(39, 39, 51, 0.12);
}

.main-nav a {
    display: block;
    padding: 12px 10px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 650;
}

.main-nav a:hover {
    background: var(--brand-soft);
    color: var(--ink-dark);
}

.main-nav .nav-wa {
    margin-top: 6px;
    text-align: center;
    background: var(--brand);
    color: var(--ink-dark);
}

.main-nav .nav-wa:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.nav-toggle:checked ~ .main-nav {
    display: block;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 68px 0 56px;
    background:
        radial-gradient(circle at 85% 20%, rgba(249, 193, 49, 0.24), transparent 32%),
        radial-gradient(circle at 10% 90%, rgba(255, 214, 94, 0.12), transparent 30%),
        linear-gradient(145deg, #0f0e13 0%, #272733 58%, #343442 100%);
    color: var(--white);
}

.hero:after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -210px;
    bottom: -230px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 55px rgba(255,255,255,0.03),
        0 0 0 110px rgba(255,255,255,0.02);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 34px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.hero .eyebrow {
    color: #ffd45c;
}

h1,
h2,
h3 {
    margin-top: 0;
    color: var(--ink-dark);
    line-height: 1.12;
}

.hero h1 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: clamp(38px, 9vw, 66px);
    letter-spacing: -0.045em;
}

.hero-lead {
    max-width: 720px;
    margin: 0 0 28px;
    color: rgba(255,255,255,0.82);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-weight: 750;
    text-align: center;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--brand);
    color: var(--ink-dark);
}

.hero .btn-primary {
    background: var(--brand);
    color: var(--ink-dark);
}

.btn-primary:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.hero .btn-primary:hover {
    background: #ffd765;
    color: var(--ink-dark);
}

.btn-secondary {
    border-color: rgba(255,255,255,0.32);
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

.btn-light {
    background: var(--brand);
    color: var(--ink-dark);
}

.btn-light:hover {
    background: #ffd765;
    color: var(--ink-dark);
}

.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
}

.hero-trust div {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 14px;
    background: rgba(255,255,255,0.07);
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    font-size: 15px;
}

.hero-trust span {
    margin-top: 3px;
    color: rgba(255,255,255,0.62);
    font-size: 12px;
}

.hero-card {
    align-self: center;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.10);
    box-shadow: 0 25px 70px rgba(0,0,0,0.18);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.hero-card-top {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.76);
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f9c131;
    box-shadow: 0 0 0 5px rgba(249,193,49,0.16);
}

.hero-card-body {
    padding: 22px;
    display: grid;
    gap: 7px;
}

.hero-card-body strong {
    color: var(--white);
    font-size: 16px;
}

.mini-label {
    margin-top: 11px;
    color: rgba(255,255,255,0.58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.section {
    padding: 68px 0;
}

.section-soft {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.company-grid h2,
.cta h2,
.page-hero h1 {
    font-size: clamp(30px, 6vw, 48px);
    letter-spacing: -0.035em;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.service-grid {
    display: grid;
    gap: 16px;
}

.service-card,
.identity-card,
.contact-card,
.notice-box {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.service-card {
    position: relative;
    min-height: 245px;
    padding: 25px;
}

.service-number {
    display: inline-block;
    margin-bottom: 46px;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 850;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 23px;
}

.service-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.company-grid {
    display: grid;
    gap: 28px;
    align-items: start;
}

.large-text {
    font-size: 19px;
}

.identity-card {
    padding: 24px;
}

.identity-card h3,
.contact-card h2,
.notice-box h2 {
    margin-bottom: 18px;
}

.identity-list {
    margin: 0;
}

.identity-list > div {
    display: grid;
    gap: 4px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.identity-list > div:last-child {
    border-bottom: 0;
}

.identity-list dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.identity-list dd {
    margin: 0;
    color: var(--text);
    font-weight: 750;
    overflow-wrap: anywhere;
}

.cta {
    display: grid;
    gap: 24px;
    align-items: center;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(145deg, #0f0e13, #2f2f3d);
    color: var(--white);
    box-shadow: 0 22px 60px rgba(39, 39, 51, 0.22);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta p {
    margin: 0;
    color: rgba(255,255,255,0.78);
}

.eyebrow-light {
    color: #ffd45c;
}

.page-hero {
    padding: 58px 0 38px;
    background: linear-gradient(180deg, #fff8e5, var(--bg));
}

.page-hero h1 {
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 700px;
    color: var(--muted);
    font-size: 17px;
}

.contact-layout {
    display: grid;
    gap: 18px;
}

.contact-card {
    padding: 24px;
}

.contact-card-primary {
    background: linear-gradient(145deg, #0f0e13, #2d2d3a);
    color: var(--white);
    border: 0;
}

.contact-card-primary .mini-label {
    color: rgba(255,255,255,0.66);
}

.contact-card-primary p {
    color: rgba(255,255,255,0.76);
}

.contact-phone {
    display: block;
    margin: 8px 0 12px;
    color: var(--white);
    font-size: clamp(25px, 6vw, 36px);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.contact-phone:hover {
    color: #ffd45c;
}

.contact-card-primary .btn-primary {
    margin-top: 12px;
    background: var(--brand);
    color: var(--ink-dark);
}

.legal-address-large {
    max-width: 760px;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.45;
}

.muted {
    color: var(--muted);
}

.notice-box {
    padding: 26px;
}

.text-link {
    font-weight: 800;
}

.policy {
    max-width: 900px;
}

.policy-intro {
    margin-bottom: 32px;
    padding: 24px;
    border-left: 4px solid var(--brand);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--surface);
    box-shadow: var(--shadow);
    font-size: 17px;
}

.policy h2 {
    margin-top: 42px;
    margin-bottom: 14px;
    font-size: 25px;
}

.policy p,
.policy li {
    color: #474752;
}

.policy li {
    margin: 7px 0;
}

.policy-highlight {
    margin: 22px 0;
    padding: 24px;
    border: 2px solid #efd17a;
    border-radius: var(--radius);
    background: #fff8e5;
}

.policy-highlight p:first-child {
    margin-top: 0;
}

.policy-highlight p:last-child {
    margin-bottom: 0;
}

.policy-contact {
    padding: 22px;
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}

.policy-contact p {
    margin: 7px 0;
}

.site-footer {
    padding: 48px 0 20px;
    background: #0f0e13;
    color: rgba(255,255,255,0.76);
}

.footer-grid {
    display: grid;
    gap: 28px;
}

.footer-brand {
    color: var(--white);
    font-size: 22px;
    font-weight: 850;
    letter-spacing: 0.035em;
}

.footer-muted {
    max-width: 280px;
    color: rgba(255,255,255,0.54);
}

.footer-title {
    margin-bottom: 13px;
    color: var(--white);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.legal-list {
    margin: 0;
}

.legal-list > div {
    margin-bottom: 12px;
}

.legal-list dt {
    color: rgba(255,255,255,0.48);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.legal-list dd {
    margin: 2px 0 0;
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.footer-address {
    color: rgba(255,255,255,0.82);
    font-style: normal;
    line-height: 1.65;
}

.site-footer a {
    color: #f6c84f;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.48);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.floating-wa {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 45;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px 9px 9px;
    border-radius: 999px;
    background: #20b969;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(15, 14, 19, 0.28);
    font-size: 13px;
    font-weight: 800;
}

.floating-wa:hover {
    background: #159657;
    color: var(--white);
    transform: translateY(-1px);
}

.floating-wa-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    font-size: 11px;
}

.floating-wa-text {
    display: none;
}

@media (min-width: 620px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-trust {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card-wide {
        grid-column: 1 / -1;
    }

    .floating-wa-text {
        display: inline;
    }
}

@media (min-width: 820px) {
    .section {
        padding: 88px 0;
    }

    .hero {
        padding: 88px 0 76px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
        gap: 54px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .company-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
        gap: 52px;
    }

    .cta {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: 42px;
    }

    .footer-grid {
        grid-template-columns: 0.75fr 1.25fr 1fr;
        gap: 42px;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 900px) {
    .nav-toggle-label,
    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .main-nav a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .main-nav .nav-wa {
        margin: 0 0 0 5px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 420px) {
    .brand-copy small {
        display: none;
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero {
        padding-top: 54px;
    }

    .hero-card-body {
        padding: 18px;
    }

    .section {
        padding: 54px 0;
    }
}


/* ==========================================
   OZLAND logo palette — final brand accents
   ========================================== */

.hero-card {
    border-color: rgba(249, 193, 49, 0.22);
}

.hero-card-top {
    border-bottom-color: rgba(249, 193, 49, 0.15);
}

.hero-trust div {
    border-color: rgba(249, 193, 49, 0.18);
    background: rgba(255, 255, 255, 0.055);
}

.identity-card,
.service-card,
.contact-card,
.notice-box {
    box-shadow: 0 18px 55px rgba(39, 39, 51, 0.10);
}

.identity-card {
    border-top: 3px solid var(--brand);
}

.policy-intro {
    border-left-color: var(--brand);
}

.policy-highlight strong {
    color: var(--ink-dark);
}

.site-footer {
    border-top: 4px solid var(--brand);
}

.footer-brand {
    color: var(--brand);
}

.contact-card-primary .mini-label,
.hero-card .mini-label {
    color: #e1c46f;
}

.contact-card-primary .btn-primary:hover {
    background: #ffd765;
    color: var(--ink-dark);
}

.cta {
    border: 1px solid rgba(249, 193, 49, 0.20);
}

.cta .btn-light {
    box-shadow: 0 10px 30px rgba(249, 193, 49, 0.16);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn,
    .floating-wa {
        transition: none;
    }
}
