/* =============================================================
   Güven Yapı Yönetim — Ana Stil Dosyası
   Renk Paleti: Siyah zemin · Altın · Gümüş · Beyaz
   ============================================================= */

/* -------- CSS Custom Properties -------- */
:root {
    --color-bg:          #080808;
    --color-bg-2:        #101010;
    --color-bg-3:        #161616;
    --color-bg-card:     #141414;
    --color-border:      rgba(255,255,255,0.08);
    --color-border-gold: rgba(212,175,55,0.35);

    --gold-light:  #f0d060;
    --gold:        #d4af37;
    --gold-dark:   #b8902a;
    --silver:      #c0c0c0;
    --silver-dark: #8a8a8a;

    --text-white:  #ffffff;
    --text-light:  #e8e8e8;
    --text-muted:  #9a9a9a;

    --font-body:    'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;

    --container-width: 1240px;
    --header-h: 80px;
    --topbar-h: 38px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.5);
}

/* -------- Reset & Base -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--color-bg);
    color: var(--text-light);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* -------- Container -------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: 24px;
}

/* -------- Section Utility -------- */
.section { padding-block: 100px; }
.section--alt { background: var(--color-bg-2); }
.section--dark { background: var(--color-bg-3); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 18px;
}

.section-title span { color: var(--gold); }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.8;
}

/* Gold Divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    margin-block: 18px;
}

/* -------- Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    border: none;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 6px 30px rgba(212,175,55,0.45);
    transform: translateY(-2px);
    color: #000;
}

.btn--outline {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid var(--color-border-gold);
}
.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.06);
}

.btn--white {
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
}
.btn--white:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

/* -------- TOPBAR -------- */
.topbar {
    background: var(--color-bg-3);
    border-bottom: 1px solid var(--color-border-gold);
    height: var(--topbar-h);
    position: relative;
    z-index: 200;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.topbar__left,
.topbar__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--silver);
    transition: color var(--transition);
}
.topbar__item:hover { color: var(--gold); }
.topbar__item i { color: var(--gold); font-size: 0.78rem; }
.topbar__sep { color: var(--color-border); }

/* -------- HEADER / NAVİGASYON -------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(5,5,5,0.98);
    border-bottom-color: var(--color-border-gold);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 30px;
}

.navbar__logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
}

.navbar__link {
    position: relative;
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: 4px;
    transition: color var(--transition);
}
.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.navbar__link:hover,
.navbar__link.active { color: var(--gold); }
.navbar__link:hover::after,
.navbar__link.active::after { width: calc(100% - 32px); }

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}
.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------- HERO SECTION -------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-bg);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 60% 40%, rgba(212,175,55,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(192,192,192,0.04) 0%, transparent 60%),
        linear-gradient(180deg, #080808 0%, #0d0d0d 100%);
}

/* Animated grid lines */
.hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-block: 120px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--color-border-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.hero__badge i { font-size: 0.7rem; }

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-white);
    margin-bottom: 22px;
}

.hero__title .highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.85;
    margin-bottom: 38px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero__stats {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Sağ taraf - Animasyonlu Kart Grubu */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__card-main {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 380px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-gold), var(--shadow-card);
    animation: heroCardFloat 6s ease-in-out infinite;
}

@keyframes heroCardFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.hero__card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    color: #000;
}

.hero__card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.hero__card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero__card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero__card-item i {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Floating badges */
.hero__float-badge {
    position: absolute;
    background: var(--color-bg-3);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-card);
    animation: heroCardFloat 5s ease-in-out infinite;
    z-index: 3;
}

.hero__float-badge--1 {
    top: 10%;
    right: -15%;
    animation-delay: -1s;
}
.hero__float-badge--2 {
    bottom: 10%;
    left: -12%;
    animation-delay: -3s;
}

.float-badge__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.float-badge__icon--green { background: rgba(52,211,153,0.15); color: #34d399; }
.float-badge__icon--blue  { background: rgba(96,165,250,0.15); color: #60a5fa; }

.float-badge__text strong { display: block; font-size: 0.82rem; color: var(--text-white); font-weight: 600; }
.float-badge__text span   { font-size: 0.72rem; color: var(--text-muted); }

/* -------- STATS BAR -------- */
.stats-bar {
    background: var(--color-bg-2);
    border-block: 1px solid var(--color-border);
    padding-block: 50px;
}

.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stats-bar__item {
    text-align: center;
    padding-inline: 30px;
    position: relative;
}

.stats-bar__item + .stats-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--color-border);
}

.stats-bar__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stats-bar__suffix {
    font-size: 1.6rem;
    color: var(--gold-light);
}

.stats-bar__label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* -------- HAKKIMIZDA (HOME) -------- */
.about-home {
    padding-block: 110px;
}

.about-home__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-home__image-wrap {
    position: relative;
}

.about-home__image {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid var(--color-border-gold);
}

.about-home__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(212,175,55,0.3);
}

.about-home__badge-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-home__badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-home__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.feature-card__icon {
    width: 42px;
    height: 42px;
    background: rgba(212,175,55,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.feature-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feature-card__desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* -------- HİZMETLER -------- */
.services-section {
    padding-block: 110px;
    background: var(--color-bg-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold), var(--shadow-card);
}

.service-card:hover::before { opacity: 1; }

.service-card__number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212,175,55,0.1);
    line-height: 1;
    margin-bottom: -10px;
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 22px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: #000;
    border-color: transparent;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 12px; }

/* Son iki kart ekstra genişlik için */
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    /* Grid otomatik yerleşim — istenirse manuel span eklenebilir */
}

/* -------- NEDEN BİZ -------- */
.why-section {
    padding-block: 110px;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 0;
}

.why-content .section-desc { max-width: 100%; }

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.why-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.why-item:hover {
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.why-item__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #000;
}

.why-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.why-item__desc {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Sağ taraf büyük sayılar */
.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-stat-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
}

.why-stat-box:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.why-stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.why-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* -------- CTA BANNER -------- */
.cta-section {
    position: relative;
    padding-block: 100px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(8,8,8,0) 50%, rgba(192,192,192,0.05) 100%),
        var(--color-bg-2);
    border-top: 1px solid var(--color-border-gold);
    border-bottom: 1px solid var(--color-border-gold);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 60%);
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner .section-title { font-size: clamp(2rem, 3.5vw, 3rem); }

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 18px auto 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition);
}

.cta-phone i { color: var(--gold); }
.cta-phone:hover { border-color: var(--gold); color: var(--gold); }

/* -------- İLETİŞİM SECTION (home widget) -------- */
.contact-widget {
    padding-block: 110px;
}

.contact-widget__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Form */
.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 46px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
    background: rgba(255,255,255,0.06);
}

.form-control::placeholder { color: var(--silver-dark); }

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* İletişim Bilgileri */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 22px;
    transition: all var(--transition);
}

.contact-info-card:hover {
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.contact-info-card__icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #000;
}

.contact-info-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info-card__value {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.contact-info-card__value a {
    color: var(--text-light);
    transition: color var(--transition);
}
.contact-info-card__value a:hover { color: var(--gold); }

/* -------- FOOTER -------- */
.site-footer {
    background: #050505;
    border-top: 1px solid var(--color-border-gold);
}

.footer__main { padding-block: 72px; }

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer__logo img { height: 50px; width: auto; margin-bottom: 18px; }

.footer__tagline {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 280px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--silver);
    transition: all var(--transition);
}

.footer__social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.footer__title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-gold);
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }

.footer__links a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer__links a::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
}

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

.footer__contact-list { display: flex; flex-direction: column; gap: 12px; }

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer__contact-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer__contact-list li a { color: var(--text-muted); }
.footer__contact-list li a:hover { color: var(--gold); }

.footer__bottom {
    background: #030303;
    border-top: 1px solid var(--color-border);
    padding-block: 20px;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.footer__bottom strong { color: var(--gold); }
.footer__bottom-right { display: flex; gap: 16px; align-items: center; }
.footer__bottom-right a { color: var(--text-muted); }
.footer__bottom-right a:hover { color: var(--gold); }
.footer__bottom-right span { color: var(--color-border); }

/* -------- WhatsApp FAB -------- */
.whatsapp-fab {
    position: fixed;
    bottom: 90px;
    right: 26px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition);
    overflow: visible;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    color: #fff;
}

.whatsapp-fab__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    background: rgba(14,14,14,0.9);
    color: var(--text-white);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 7px 12px;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-fab:hover .whatsapp-fab__tooltip { opacity: 1; }

/* -------- Back to Top -------- */
.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    color: var(--gold);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

/* -------- Page Hero (iç sayfalar) -------- */
.page-hero {
    padding-block: 80px 60px;
    background: var(--color-bg-2);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212,175,55,0.06) 0%, transparent 70%);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-white);
    position: relative;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
    position: relative;
}

.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb i { font-size: 0.7rem; }

/* -------- Scroll Reveal -------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* -------- Alert Messages -------- */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.alert--success {
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.3);
    color: #34d399;
}

.alert--error {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    color: #f87171;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
    .hero__content { grid-template-columns: 1fr; gap: 60px; }
    .hero__visual { display: none; }
    .about-home__grid { grid-template-columns: 1fr; gap: 50px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stats-bar__item + .stats-bar__item::before { display: none; }
}

@media (max-width: 768px) {
    :root { --header-h: 70px; }

    .topbar { display: none; }

    .navbar__menu {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5,5,5,0.98);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
        z-index: 90;
    }

    .navbar__menu.open {
        opacity: 1;
        pointer-events: auto;
    }

    .navbar__link {
        font-size: 1.4rem;
        padding: 12px 24px;
    }

    .navbar__hamburger { display: flex; }
    .navbar__cta { display: none; }

    .section { padding-block: 70px; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-widget__grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 22px; }
    .footer__grid { grid-template-columns: 1fr; }
    .hero__stats { flex-wrap: wrap; gap: 20px; }
    .about-home__badge { bottom: -10px; right: 10px; }
    .about-home__features { grid-template-columns: 1fr; }
    .why-stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .footer__bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .stats-bar__grid { grid-template-columns: 1fr 1fr; }
    .why-stats-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   İÇ SAYFA STİLLERİ — Hakkımızda, Hizmetler, İletişim
   ============================================================= */

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-page__img-wrap { position: relative; }
.about-page__img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--color-border-gold);
}
.about-page__img-frame {
    position: absolute;
    bottom: -12px; right: -12px;
    width: 70%; height: 70%;
    border: 2px solid var(--color-border-gold);
    border-radius: var(--radius-lg);
    z-index: -1; opacity: 0.4;
}
.about-page__img-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-top: 20px;
}
.about-img-stat {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-gold);
    border-radius: var(--radius-md);
    padding: 16px; text-align: center;
}
.about-img-stat__num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    color: var(--gold); line-height: 1;
}
.about-img-stat__label {
    display: block; font-size: 0.75rem;
    color: var(--text-muted); margin-top: 4px;
}

/* Değerler */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    transition: all var(--transition);
    position: relative; overflow: hidden;
}
.value-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    opacity: 0; transition: opacity var(--transition);
}
.value-card:hover { border-color: var(--color-border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.value-card:hover::before { opacity: 1; }
.value-card__icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
    border: 1px solid var(--color-border-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--gold);
    margin: 0 auto 18px;
    transition: all var(--transition);
}
.value-card:hover .value-card__icon { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: #000; border-color: transparent; }
.value-card__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; }
.value-card__desc  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* Misyon & Vizyon */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { background: var(--color-bg-card); border: 1px solid var(--color-border-gold); border-radius: var(--radius-lg); overflow: hidden; }
.mv-card--vision { border-color: rgba(192,192,192,0.3); }
.mv-card__header { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); padding: 28px 32px; display: flex; align-items: center; gap: 16px; }
.mv-card--vision .mv-card__header { background: linear-gradient(135deg, #3a3a3a, #1a1a1a); border-bottom: 1px solid rgba(192,192,192,0.2); }
.mv-card__icon { width: 50px; height: 50px; background: rgba(0,0,0,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #000; flex-shrink: 0; }
.mv-card--vision .mv-card__icon { color: var(--gold); }
.mv-card__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #000; }
.mv-card--vision .mv-card__title { color: var(--text-white); }
.mv-card__body { padding: 28px 32px; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; border-bottom: 1px solid var(--color-border); }
.mv-card__points { padding: 20px 32px; display: flex; flex-direction: column; gap: 10px; }
.mv-card__points li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-light); }
.mv-card__points li i { color: var(--gold); font-size: 0.78rem; flex-shrink: 0; }

/* Hizmetler Detay */
.svc-detail-row { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.svc-detail-row--reverse { grid-template-columns: 2fr 1fr; }
.svc-detail-row--reverse .svc-detail-row__visual { order: 2; }
.svc-detail-row--reverse .svc-detail-row__content { order: 1; }
.svc-detail-visual { background: var(--color-bg-card); border: 1px solid var(--color-border-gold); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; position: sticky; top: calc(var(--header-h) + 24px); box-shadow: var(--shadow-gold); }
.svc-detail-visual__number { font-family: var(--font-display); font-size: 5rem; font-weight: 700; color: rgba(212,175,55,0.12); line-height: 1; margin-bottom: -16px; }
.svc-detail-visual__icon { width: 90px; height: 90px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: #000; margin: 0 auto 20px; }
.svc-detail-visual__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--text-white); }
.svc-points-list { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.svc-points-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text-muted); padding: 12px 16px; background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-sm); transition: all var(--transition); }
.svc-points-list li:hover { border-color: var(--color-border-gold); color: var(--text-light); }
.svc-points-list li i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }

/* İletişim Sayfası */
.contact-cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 20px; }
.contact-big-card { background: var(--color-bg-card); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: all var(--transition); }
.contact-big-card:hover { border-color: var(--color-border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.contact-big-card__icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #000; margin: 0 auto 16px; }
.contact-big-card__title { font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 14px; }
.contact-big-card__items { display: flex; flex-direction: column; gap: 10px; }
.contact-big-card__link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: rgba(255,255,255,0.03); border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 0.88rem; color: var(--text-muted); transition: all var(--transition); text-align: left; }
.contact-big-card__link:hover { border-color: var(--color-border-gold); color: var(--gold); }
.contact-big-card__link i { color: var(--gold); flex-shrink: 0; }
.contact-big-card__link span { display: flex; flex-direction: column; }
.contact-big-card__link small { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 2px; }
.contact-full-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.whatsapp-contact-box { display: flex; align-items: center; gap: 16px; background: rgba(37,211,102,0.06); border: 1px solid rgba(37,211,102,0.3); border-radius: var(--radius-md); padding: 18px 20px; }
.whatsapp-contact-box__icon { width: 48px; height: 48px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; flex-shrink: 0; }
.whatsapp-contact-box__title { font-size: 0.95rem; font-weight: 600; color: var(--text-white); }
.whatsapp-contact-box__desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* İç sayfa responsive */
@media (max-width: 1024px) {
    .about-page-grid, .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .svc-detail-row, .svc-detail-row--reverse { grid-template-columns: 1fr; }
    .svc-detail-row--reverse .svc-detail-row__visual,
    .svc-detail-row--reverse .svc-detail-row__content { order: 0; }
    .svc-detail-visual { position: static; }
    .contact-cards-grid { grid-template-columns: 1fr 1fr; }
    .contact-full-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .about-page__img-stats { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   PAGE HERO — İç Sayfa Hero Bölümü
   ============================================================= */
.page-hero {
    position: relative;
    background: var(--color-bg-2);
    padding-block: 72px 52px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 90% at 50% 0%, rgba(212,175,55,0.07) 0%, transparent 65%),
        linear-gradient(180deg, var(--color-bg-3) 0%, var(--color-bg-2) 100%);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.4) 30%, rgba(0,0,0,0.3) 70%, transparent);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 16px;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.page-hero__breadcrumb a { color: var(--gold); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero__breadcrumb i { font-size: 0.65rem; }
.page-hero__breadcrumb span { color: var(--text-muted); }

/* =============================================================
   CTA SECTION — Call To Action
   ============================================================= */
.cta-section {
    background: linear-gradient(135deg, #0f0e00 0%, #1a1600 40%, #0f0e00 100%);
    border-block: 1px solid rgba(212,175,55,0.15);
    padding-block: 100px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1.5px solid var(--color-border-gold);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all var(--transition);
}
.cta-phone:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,0.06); }
.cta-phone i { color: var(--gold); }

/* =============================================================
   CONTACT FORM — İletişim Formu
   ============================================================= */
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }

.form-group label {
    font-size: 0.83rem;
    font-weight: 600;
    color: #aaa;
}

.form-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.93rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-control::placeholder { color: #555; }

textarea.form-control { resize: vertical; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

select.form-control option { background: var(--color-bg-2); color: var(--text-white); }

/* Alert mesajları */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.alert--success {
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.3);
    color: #34d399;
}

.alert--error {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    color: #f87171;
}

/* =============================================================
   PAGE RESPONSIVE EKLENTILER
   ============================================================= */
@media (max-width: 768px) {
    .page-hero { padding-block: 52px 36px; }
    .page-hero__title { font-size: 1.9rem; }
    .cta-actions { flex-direction: column; align-items: stretch; justify-content: center; }
    .cta-phone { justify-content: center; }
    .contact-form > div[style*="grid-template-columns"] { display: flex !important; flex-direction: column !important; }
}
