:root {
    --navy: #0b1f3a;
    --navy-soft: #102b4f;
    --gold: #b88a3b;
    --gold-soft: #d7b46a;
    --cream: #f8f5ef;
    --white: #ffffff;
    --text: #172033;
    --muted: #5f6b7a;
    --line: rgba(184, 138, 59, .22);
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        linear-gradient(rgba(248, 245, 239, .74), rgba(248, 245, 239, .8)),
        url("../img/arka-plan.png") center top / cover fixed no-repeat,
        var(--cream);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 28px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.index-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
}

.logo-area {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0;
    background: transparent;
}

.header-logo {
    width: 360px;
    height: 126px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1 1 auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .7px;
    color: var(--navy);
}

.main-nav a,
.nav-dropdown > button {
    transition: color .2s ease, background .2s ease;
    white-space: nowrap;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-dropdown:hover > button {
    color: var(--gold);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button {
    border: 0;
    padding: 0;
    color: var(--navy);
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 30;
    display: grid;
    min-width: 170px;
    padding: 8px 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.dropdown-menu a {
    padding: 8px 0;
    color: var(--navy);
    border-radius: 0;
    text-shadow: 0 1px 16px rgba(248, 245, 239, .95);
}

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

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-button {
    background: var(--navy);
    color: var(--gold-soft) !important;
    padding: 14px 24px;
    border-radius: 7px;
}

.nav-button:hover {
    background: var(--gold);
    color: var(--white) !important;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(
            90deg,
            rgba(248, 245, 239, .98) 0%,
            rgba(248, 245, 239, .88) 28%,
            rgba(248, 245, 239, .38) 56%,
            rgba(248, 245, 239, .08) 100%
        ),
        url("../img/arka-plan.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 150px 6% 90px;
}

.hero-content {
    max-width: 610px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 26px;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    line-height: 1.8;
    color: var(--navy-soft);
    max-width: 520px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn,
.button {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 7px;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .7px;
    cursor: pointer;
    transition: all .2s ease;
}

.btn-primary,
.button.primary {
    background: var(--navy);
    color: var(--gold-soft);
}

.btn-primary:hover,
.button.primary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary,
.button.secondary {
    border: 1px solid rgba(184, 138, 59, .55);
    color: var(--navy);
    background: rgba(255, 255, 255, .56);
}

.btn-secondary:hover,
.button.secondary:hover {
    border-color: var(--navy);
    background: var(--white);
    transform: translateY(-2px);
}

.feature-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(11, 31, 58, .96);
    color: var(--white);
    padding: 28px 6%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    border-right: 1px solid rgba(255, 255, 255, .12);
    padding-right: 24px;
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    color: var(--gold-soft);
    font-size: 28px;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.feature-item h3 {
    font-size: 15px;
    letter-spacing: .5px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .76);
}

.section,
.page-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 54px 0;
}

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

.section-heading h2,
.page-hero h1,
.simple-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--navy);
}

.section-heading h2 {
    font-size: clamp(30px, 3vw, 44px);
    line-height: 1.15;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.brand-card {
    display: grid;
    grid-template-columns: 38% 1fr;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
}

.brand-logo-wrap {
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(255, 255, 255, .65);
}

.brand-logo-wrap img {
    max-width: 100%;
    max-height: 230px;
    object-fit: contain;
}

.brand-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.brand-category {
    color: var(--gold);
    font-weight: 800;
    margin-bottom: 10px;
}

.brand-content h3 {
    color: var(--navy);
    font-size: 26px;
    margin-bottom: 12px;
}

.brand-content p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.brand-link {
    width: fit-content;
    color: var(--navy);
    font-weight: 800;
}

.simple-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px 28px;
    align-items: center;
    padding: 30px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.simple-cta h2,
.simple-cta p {
    margin: 0;
}

.simple-cta p {
    grid-column: 1;
    color: var(--muted);
}

.page-hero {
    padding: 74px 0 30px;
}

.hakkimizda-page main,
.iletisim-page main {
    background:
        linear-gradient(90deg, rgba(248, 245, 239, .74) 0%, rgba(248, 245, 239, .54) 38%, rgba(248, 245, 239, .14) 78%),
        url("../img/arka-plan.png") center top / cover fixed no-repeat;
}

.about-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: center;
    width: min(1180px, calc(100% - 72px));
    margin: 0 auto;
    padding: 64px 0 36px;
}

.about-copy {
    max-width: 650px;
}

.about-copy h1 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--navy);
    font-size: clamp(34px, 3.45vw, 52px);
    font-weight: 500;
    line-height: 1.12;
    margin-bottom: 24px;
}

.about-copy h1 span {
    color: var(--gold);
}

.about-copy p {
    max-width: 620px;
    margin-bottom: 18px;
    color: var(--navy-soft);
    font-size: 17px;
    line-height: 1.75;
}

.approach-card {
    align-self: center;
    padding: 30px 28px;
    color: var(--white);
    background: rgba(11, 31, 58, .96);
    border-radius: 10px;
    box-shadow: 0 20px 44px rgba(11, 31, 58, .24);
}

.approach-icon {
    margin-bottom: 24px;
    color: var(--gold-soft);
    font-size: 42px;
}

.approach-card h2 {
    margin-bottom: 12px;
    color: var(--gold-soft);
    font-size: 18px;
}

.approach-card p {
    color: rgba(255, 255, 255, .9);
    line-height: 1.7;
}

.about-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: min(1180px, calc(100% - 72px));
    margin: 22px auto 0;
}

.about-services article {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 18px;
    min-height: 205px;
    padding: 18px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(11, 31, 58, .08);
}

.service-copy span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 14px;
    color: var(--white);
    background: var(--gold);
    border-radius: 50%;
    font-size: 28px;
}

.service-copy h3 {
    margin-bottom: 16px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.service-copy p {
    color: var(--text);
    line-height: 1.65;
}

.service-photo {
    border-radius: 8px;
    background-image: url("../img/arka-plan.png");
    background-size: 760px auto;
    background-repeat: no-repeat;
}

.service-photo.supply {
    background-position: 92% 78%;
}

.service-photo.brand {
    background-position: 63% 82%;
}

.service-photo.trade {
    background-position: 100% 84%;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(1180px, calc(100% - 72px));
    margin: 22px auto 54px;
    padding: 28px 34px;
    color: var(--white);
    background: rgba(11, 31, 58, .96);
    border-radius: 10px;
}

.about-stats article {
    min-height: 112px;
    padding: 0 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.about-stats article:last-child {
    border-right: 0;
}

.about-stats span {
    display: block;
    color: var(--gold-soft);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stats strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

.about-stats p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
}

.page-hero h1 {
    max-width: 900px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.14;
    margin-bottom: 18px;
}

.page-hero p,
.rich-text,
.contact-card p {
    color: var(--muted);
    line-height: 1.7;
}

.two-column,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.two-column h2,
.contact-card h2 {
    color: var(--navy);
}

.rich-text p {
    margin-bottom: 18px;
}

.contact-left {
    display: grid;
    gap: 24px;
}

.contact-card,
.contact-form {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, .82);
}

.info-card h2,
.contact-form h2,
.map-card h2 {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 20px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

.contact-list div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 14px;
}

.contact-list dt {
    color: var(--navy);
    font-weight: 800;
}

.contact-list dd {
    color: var(--navy);
    font-weight: 700;
    line-height: 1.55;
}

.contact-label {
    display: block;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 12px 14px;
    color: var(--text);
    font: inherit;
    background: rgba(255, 255, 255, .78);
}

.form-note {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.map-card {
    min-height: 560px;
}

.map-card iframe {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: 8px;
    background: var(--cream);
}

.map-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--navy);
    font-weight: 800;
}

.iletisim-page .page-hero h1 {
    font-size: clamp(30px, 3.2vw, 44px);
}

.iletisim-page .page-hero p {
    max-width: 760px;
    font-size: 14px;
}

.iletisim-page .contact-card,
.iletisim-page .contact-form {
    font-size: 13px;
}

.iletisim-page .info-card h2,
.iletisim-page .contact-form h2,
.iletisim-page .map-card h2 {
    font-size: 18px;
}

.iletisim-page .contact-list {
    gap: 12px;
}

.iletisim-page .contact-list div {
    grid-template-columns: 115px 1fr;
}

.iletisim-page .contact-list dt,
.iletisim-page .contact-list dd,
.iletisim-page .contact-form label,
.iletisim-page .map-link {
    font-size: 13px;
}

.iletisim-page .contact-form input,
.iletisim-page .contact-form select,
.iletisim-page .contact-form textarea {
    font-size: 13px;
}

.iletisim-page .form-note {
    font-size: 12px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding: 24px 6%;
    color: var(--white);
    background: var(--navy);
    font-size: 12px;
}

.site-footer p {
    margin-top: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-content: start;
    justify-content: flex-end;
    gap: 14px;
}

.footer-links a {
    color: var(--white);
    font-weight: 800;
    font-size: 12px;
}

@media (max-width: 1180px) {
    .header-logo {
        width: 290px;
        height: 96px;
    }

    .main-nav {
        gap: 18px;
        font-size: 13px;
    }
}

@media (max-width: 1000px) {
    .site-header,
    .index-page .site-header {
        position: relative;
        background: var(--cream);
        padding: 22px 5%;
        flex-direction: column;
        gap: 22px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        min-height: auto;
        padding: 80px 5% 40px;
        background-position: center right;
    }

    .feature-bar {
        position: relative;
        grid-template-columns: repeat(2, 1fr);
        margin: 60px -5% -40px;
    }

    .two-column,
    .contact-layout,
    .simple-cta {
        grid-template-columns: 1fr;
    }

    .about-hero,
    .about-services,
    .about-stats {
        grid-template-columns: 1fr;
        width: min(100% - 40px, 1180px);
    }

    .about-services article {
        grid-template-columns: 1fr 180px;
    }

    .about-stats article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
        padding: 22px 0;
    }

    .about-stats article:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .header-logo {
        width: min(86vw, 310px);
        height: 92px;
    }

    .main-nav {
        display: none;
    }

    .about-copy h1 {
        font-size: 34px;
    }

    .about-services article {
        grid-template-columns: 1fr;
    }

    .service-photo {
        min-height: 170px;
    }

    .hero {
        padding-top: 70px;
        background-image:
            linear-gradient(
                180deg,
                rgba(248, 245, 239, .98) 0%,
                rgba(248, 245, 239, .92) 45%,
                rgba(248, 245, 239, .7) 100%
            ),
            url("../img/arka-plan.png");
        background-position: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }

    .feature-bar {
        grid-template-columns: 1fr;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding-bottom: 18px;
    }

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

    .site-footer {
        display: grid;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
