/* ============================================================
   Bofor Güvenlik Hizmetleri — Standalone CSS
   ============================================================ */

/* ---- Variables ---- */
:root {
    --navy:       #0B1E3D;
    --navy-mid:   #1a3a6b;
    --teal:       #00BFA5;
    --teal-dark:  #009E8B;
    --light-bg:   #F4F7FC;
    --text-dark:  #0B1E3D;
    --text-muted: #5a6a82;
    --border:     #e0e8f0;
    --white:      #ffffff;
    --radius:     12px;
    --radius-lg:  20px;
    --shadow:     0 4px 20px rgba(11,30,61,0.08);
    --shadow-lg:  0 8px 40px rgba(11,30,61,0.14);
    --trans:      all 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- Topbar ---- */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    font-size: 12.5px;
    padding: 9px 0;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--teal); }
.topbar i { font-size: 11px; color: var(--teal); }

/* ---- Navbar ---- */
.site-navbar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(11,30,61,0.06);
}
.site-navbar .container {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 72px;
}
.nav-logo img { height: 52px; object-fit: contain; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    flex-wrap: wrap;
}
.nav-item { position: relative; }
.nav-link {
    font-weight: 600;
    font-size: 14.5px;
    color: var(--navy);
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--trans);
}
.nav-link:hover,
.nav-link.active { color: var(--teal); background: rgba(0,191,165,.07); }
.nav-link .fa-chevron-down { font-size: 10px; transition: var(--trans); }
.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }

/* dropdown */
.dropdown-panel {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    padding: 12px 8px 8px;
    z-index: 100;
    border: 1px solid var(--border);
    transition: opacity 0.18s ease, visibility 0.18s ease;
}
.nav-item:hover .dropdown-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.dropdown-panel a {
    display: block;
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    border-radius: 8px;
}
.dropdown-panel a:hover { background: rgba(0,191,165,.1); color: var(--teal); }

/* nav cta btn */
.btn-teklif {
    background: var(--teal);
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 13.5px !important;
    white-space: nowrap;
}
.btn-teklif:hover { background: var(--teal-dark) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 1.3rem; color: var(--navy); padding: 4px; }

/* ---- Hero ---- */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1485230405346-71acb9518d9c?w=1600&auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center 30%;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11,30,61,0.92) 0%, rgba(11,30,61,0.65) 60%, rgba(11,30,61,0.30) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 660px;
    padding: 100px 0 80px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,191,165,.15);
    border: 1px solid rgba(0,191,165,.4);
    color: var(--teal);
    padding: 6px 18px; border-radius: 30px;
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.8px; text-transform: uppercase;
    margin-bottom: 22px;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--teal); }
.hero-content p {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
    padding: 15px 36px;
    background: var(--teal);
    color: #fff;
    font-weight: 700; font-size: 0.95rem;
    border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--trans);
}
.btn-hero-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-hero-outline {
    padding: 15px 36px;
    background: transparent;
    color: #fff;
    font-weight: 700; font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,.5);
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--trans);
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* stat strip */
.hero-stat-row {
    display: flex; gap: 48px;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--teal); }
.hero-stat span { font-size: 0.8rem; opacity: 0.7; }

/* ---- Section commons ---- */
.section { padding: 90px 0; }
.section-label {
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--teal); margin-bottom: 10px;
}
.section-title h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800; color: var(--navy); line-height: 1.2;
    margin-bottom: 14px;
}
.section-title p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; max-width: 580px; }
.section-title.center { text-align: center; }
.section-title.center p { margin: 0 auto; }
.accent { color: var(--teal); }

/* ---- Feature strip ---- */
.features-strip { background: var(--navy); padding: 0; }
.features-strip .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.feature-item {
    padding: 32px 28px;
    display: flex; align-items: center; gap: 16px;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: var(--trans);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.04); }
.feature-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(0,191,165,.12);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--teal);
}
.feature-item h4 { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.feature-item p  { font-size: 0.78rem; color: rgba(255,255,255,.55); }

/* ---- Services grid ---- */
.services-section { background: var(--light-bg); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-top: 52px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border: 1.5px solid transparent;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--navy));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,191,165,.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(0,191,165,.1), rgba(0,191,165,.05));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--teal);
    margin-bottom: 22px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-card .read-more {
    font-size: 0.85rem; font-weight: 700; color: var(--teal);
    display: flex; align-items: center; gap: 6px;
}
.service-card:hover .read-more gap { gap: 10px; }

/* ---- About / why us ---- */
.about-section { background: #fff; }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 480px;
}
.about-float-stat {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--navy);
    border: 4px solid #fff;
    border-radius: 14px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-float-stat .num { font-size: 2rem; font-weight: 800; color: var(--teal); }
.about-float-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,.8); font-weight: 500; }
.checklist { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 0.9rem; color: var(--text-muted);
}
.checklist li i { color: var(--teal); margin-top: 2px; flex-shrink: 0; }

/* ---- Stats ---- */
.stats-section { background: var(--navy); padding: 72px 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    text-align: center;
}
.stat-item .num {
    font-size: 3rem; font-weight: 800; color: var(--teal);
    line-height: 1; margin-bottom: 8px;
}
.stat-item .num sup { font-size: 1.4rem; }
.stat-item .lbl { font-size: 0.85rem; color: rgba(255,255,255,.65); }

/* ---- Service detail sections ---- */
.service-detail-section { padding: 90px 0; }
.service-detail-section:nth-child(even) { background: var(--light-bg); }
.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }
.service-detail-img {
    width: 100%; height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.service-tag {
    background: rgba(0,191,165,.1);
    color: var(--teal);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}
.service-detail-inner h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.service-detail-inner p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.btn-teklif-dark {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px;
    background: var(--navy);
    color: #fff;
    font-weight: 700; font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--trans);
    margin-top: 8px;
}
.btn-teklif-dark:hover { background: var(--teal); }

/* ---- CTA box ---- */
.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
    padding: 14px 36px; background: #fff; color: var(--navy);
    font-weight: 700; font-size: 0.95rem; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--trans);
}
.btn-cta-white:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-cta-outline {
    padding: 14px 36px;
    background: transparent; color: #fff;
    font-weight: 700; font-size: 0.95rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,.6);
    display: inline-flex; align-items: center; gap: 8px;
    transition: var(--trans);
}
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ---- Page header ---- */
.page-header {
    position: relative;
    padding: 90px 0 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: #fff;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1563986768609-322da13575f3?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
    opacity: 0.12;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 12px; }
.page-header p { font-size: 1rem; opacity: 0.8; max-width: 540px; margin-bottom: 20px; }
.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--teal); }

/* ---- Footer ---- */
.site-footer {
    background: var(--navy);
    padding: 70px 0 0;
    color: rgba(255,255,255,.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.footer-logo { height: 64px; margin-bottom: 18px; display: block; }
.footer-brand p { font-size: 13.5px; line-height: 1.85; color: rgba(255,255,255,.65); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.75);
    font-size: 14px;
    transition: var(--trans);
}
.footer-social a:hover { background: var(--teal); color: #fff; }
.footer-col h5 {
    color: #fff; font-size: 15px; font-weight: 700;
    margin-bottom: 18px; padding-bottom: 10px;
    position: relative;
}
.footer-col h5::after {
    content: ''; position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--teal);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
    display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }
.footer-contact-list li {
    display: flex; gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 13.5px;
    color: rgba(255,255,255,.65);
}
.footer-contact-list i { color: var(--teal); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.65); }
.footer-contact-list a:hover { color: var(--teal); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,.4);
}

/* ---- Grid / layout helpers ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.row { display: flex; flex-wrap: wrap; gap: 24px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 48px; }
.mb-4 { margin-bottom: 24px; }
.mb-5 { margin-bottom: 48px; }
.text-center { text-align: center; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .features-strip .container { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-float-stat { bottom: 16px; right: 16px; }
    .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
    .service-detail-inner.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; box-shadow: var(--shadow-lg); padding: 16px; gap: 4px; }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: block; }
    .dropdown-panel { position: static; box-shadow: none; border: none; background: var(--light-bg); padding: 8px; visibility: hidden; opacity: 0; pointer-events: none; max-height: 0; overflow: hidden; transition: none; }
    .nav-item.open .dropdown-panel { visibility: visible; opacity: 1; pointer-events: auto; max-height: 300px; display: block; }
    .site-navbar .container { flex-wrap: wrap; }
}
@media (max-width: 768px) {
    .topbar { display: none; }
    .hero-content { padding: 80px 0 60px; }
    .hero-stat-row { flex-wrap: wrap; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .features-strip .container { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 1.9rem; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
    .features-strip .container { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}
