/*====================================
  GENEL AYARLAR
=====================================*/
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0F172A;
    --navy-light: #1E293B;
    --gold: #F59E0B;
    --gold-dark: #D97706;
    --white: #ffffff;
    --light: #F8FAFC;
    --gray: #64748B;
    --gray-light: #E2E8F0;
    --text: #1E293B;
    --shadow: 0 2px 16px rgba(15,23,42,0.08);
    --shadow-lg: 0 6px 32px rgba(15,23,42,0.12);
    --radius: 10px;
    --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    width: 1260px;
    max-width: 94%;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background: rgba(245,158,11,0.10);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-title p {
    font-size: 16px;
    color: var(--gray);
    max-width: 540px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.50);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.10);
    border-color: var(--white);
}

/*====================================
  ÜST HEADER
=====================================*/
.top-header {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-header .container {
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-left a {
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.top-right a:hover { color: var(--gold); }
.top-right .divider { opacity: 0.20; }

.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,0.12);
}

.top-social a {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.07);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.65);
}

.top-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

/*====================================
  ANA HEADER
=====================================*/
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 12px rgba(15,23,42,0.08);
    border-bottom: 1px solid var(--gray-light);
}

.main-header .container {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.logo-text {
    line-height: 1.2;
}

.logo-text strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.2px;
}

.logo-text span {
    font-size: 10px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

nav.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav.menu ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

nav.menu ul li a {
    display: block;
    padding: 9px 16px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy-light);
    transition: var(--transition);
    position: relative;
}

nav.menu ul li a:hover,
nav.menu ul li a.active {
    background: var(--light);
    color: var(--navy);
}

nav.menu ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

.header-phone:hover { color: var(--gold-dark); }

.header-phone-icon {
    width: 34px;
    height: 34px;
    background: rgba(245,158,11,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.btn-teklif {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--gold);
    white-space: nowrap;
}

.btn-teklif:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 7px;
    border: none;
    background: var(--light);
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    padding: 12px 0;
}

.mobile-nav.open { display: block; }

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 14px;
}

.mobile-nav ul li a {
    display: block;
    padding: 11px 14px;
    border-radius: 7px;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.mobile-nav ul li a:hover { background: var(--light); }

.mobile-nav-bottom {
    margin-top: 10px;
    padding: 10px 28px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/*====================================
  BANNER SLIDER
=====================================*/
.banner-slider {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    background: var(--navy);
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,23,42,0.60);
}

.banner-content {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
}

.banner-inner {
    max-width: 640px;
    padding-left: max(28px, calc((100% - 1260px) / 2));
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245,158,11,0.45);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.banner-inner h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.banner-inner h1 em {
    font-style: normal;
    color: var(--gold);
}

.banner-inner p {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 500px;
}

.banner-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Slider controls */
.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-prev { left: 28px; }
.banner-next { right: 28px; }

.banner-prev:hover, .banner-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.banner-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

.banner-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.banner-dots span.active-dot {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Stats bar */
.stats-bar {
    background: var(--navy);
}

.stats-bar .container {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat-item {
    padding: 26px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.07);
}

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

.stat-number {
    font-size: 34px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/*====================================
  NELER YAPIYORUZ (Interactive)
=====================================*/
.services-section {
    padding: 90px 0;
    background: var(--light);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

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

.service-tab {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    background: var(--white);
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 1px 6px rgba(15,23,42,0.05);
    text-align: left;
    width: 100%;
    position: relative;
}

.service-tab:hover {
    border-color: rgba(245,158,11,0.30);
}

.service-tab.active {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 2px 16px rgba(245,158,11,0.12);
}

.service-tab.active .tab-num {
    background: var(--gold);
    color: var(--navy);
}

.tab-num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--light);
    color: var(--gray);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.tab-body { flex: 1; }

.tab-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}

.tab-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55;
}

.tab-arrow {
    flex-shrink: 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.service-tab.active .tab-arrow,
.service-tab:hover .tab-arrow {
    opacity: 1;
}

.services-visual {
    position: relative;
}

.service-image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3.2;
    box-shadow: var(--shadow-lg);
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    display: none;
}

.service-image-wrap img.active { display: block; }

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: rgba(15,23,42,0.78);
    color: white;
    display: none;
}

.service-overlay.active { display: block; }

.service-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-overlay p {
    font-size: 13px;
    opacity: 0.78;
    line-height: 1.5;
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-top: 18px;
    text-decoration: none;
    transition: var(--transition);
}

.see-all-link:hover { color: var(--navy); }

/*====================================
  PROJELER BÖLÜMÜ (Ana Sayfa)
=====================================*/
.featured-projects {
    padding: 90px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.project-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--gray-light);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
}

.project-card:first-child {
    grid-column: span 2;
}

.project-thumb {
    overflow: hidden;
}

.project-card:first-child .project-thumb { height: 300px; }
.project-card .project-thumb { height: 210px; }

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-thumb img { transform: scale(1.04); }

.project-info {
    padding: 20px;
}

.project-category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 7px;
}

.project-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    line-height: 1.3;
}

.project-info p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.55;
    margin-bottom: 12px;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--gray);
    flex-wrap: wrap;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.projects-cta {
    text-align: center;
    margin-top: 44px;
}

/*====================================
  NEDEN BİZ
=====================================*/
.why-us {
    padding: 90px 0;
    background: var(--navy);
}

.why-us .section-title h2 { color: var(--white); }
.why-us .section-title p { color: rgba(255,255,255,0.50); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 30px 26px;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(245,158,11,0.07);
    border-color: rgba(245,158,11,0.25);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(245,158,11,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.50);
    line-height: 1.65;
}

/*====================================
  CTA BÖLÜMÜ
=====================================*/
.cta-section {
    padding: 72px 0;
    background: var(--gold);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.cta-text h2 {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 15px;
    color: rgba(15,23,42,0.60);
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cta-dark {
    padding: 13px 26px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-dark:hover {
    background: var(--navy-light);
}

.btn-cta-white {
    padding: 13px 26px;
    background: transparent;
    color: var(--navy);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid rgba(15,23,42,0.30);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white:hover {
    background: rgba(15,23,42,0.08);
    border-color: var(--navy);
}

/*====================================
  FOOTER
=====================================*/
footer {
    background: var(--navy);
    color: rgba(255,255,255,0.60);
}

.footer-top {
    padding: 64px 0 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.footer-brand .logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-brand .logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
}

.footer-brand .logo-text strong { color: var(--white); font-size: 16px; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.35); font-size: 10px; }

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.45);
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.06);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.50);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(245,158,11,0.25);
    display: inline-block;
}

.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(245,158,11,0.10);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-contact-item .info {
    font-size: 13px;
    line-height: 1.55;
}

.footer-contact-item .info strong {
    display: block;
    color: var(--white);
    font-size: 13px;
    margin-bottom: 2px;
}

.footer-contact-item .info a {
    color: rgba(255,255,255,0.50);
    transition: var(--transition);
    font-size: 13px;
}

.footer-contact-item .info p {
    color: rgba(255,255,255,0.50);
    font-size: 13px;
}

.footer-contact-item .info a:hover { color: var(--gold); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.30);
}

.footer-bottom a { color: var(--gold); }

/*====================================
  İÇ SAYFA HERO
=====================================*/
.page-hero {
    background: var(--navy);
    padding: 64px 0;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 14px;
}

.breadcrumb a { color: var(--gold); transition: var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.28); }

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.55);
    max-width: 540px;
    line-height: 1.65;
}

/*====================================
  PROJELERİMİZ SAYFASI
=====================================*/
.projects-page { padding: 72px 0; background: var(--light); }

.projects-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 9px 20px;
    border-radius: 6px;
    border: 2px solid var(--gray-light);
    background: var(--white);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.all-projects-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.all-projects-grid .project-card .project-thumb { height: 230px; }

/*====================================
  HAKKIMIZDA SAYFASI
=====================================*/
.about-page { padding: 72px 0; }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 72px;
}

.about-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3.5;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 10px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 3px;
}

.about-badge span { font-size: 12px; font-weight: 600; }

.about-text .section-tag { margin-bottom: 10px; }
.about-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 12px;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.about-point-icon {
    width: 26px;
    height: 26px;
    background: rgba(245,158,11,0.12);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.team-section {
    background: var(--light);
    padding: 72px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray-light);
}

.team-card:hover { box-shadow: var(--shadow-lg); }

.team-photo {
    height: 220px;
    overflow: hidden;
}

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 18px; }
.team-info h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info p { font-size: 13px; color: var(--gold-dark); font-weight: 600; }

/*====================================
  VİZYONUMUZ SAYFASI
=====================================*/
.vision-page { padding: 72px 0; }

.vision-intro {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}

.vision-intro h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.vision-intro p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.75;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.vm-card {
    background: var(--white);
    border-radius: 12px;
    padding: 34px 30px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold);
    transition: var(--transition);
}

.vm-card:hover { box-shadow: var(--shadow-lg); }

.vm-card .vm-icon {
    width: 52px;
    height: 52px;
    background: rgba(245,158,11,0.10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.vm-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.vm-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.70;
}

.values-section { background: var(--light); padding: 72px 0; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 8px rgba(15,23,42,0.05);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.value-card .value-num {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.value-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.value-card p { font-size: 14px; color: var(--gray); line-height: 1.60; }

/*====================================
  İLETİŞİM SAYFASI
=====================================*/
.contact-page { padding: 72px 0; background: var(--light); }

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

.contact-form-wrap {
    background: var(--white);
    border-radius: 14px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-form-wrap > p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    background: var(--light);
    transition: var(--transition);
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.form-submit:hover {
    background: var(--navy-light);
    box-shadow: 0 4px 16px rgba(15,23,42,0.20);
}

.success-message {
    display: none;
    background: #ecfdf5;
    border: 2px solid #6ee7b7;
    border-radius: 8px;
    padding: 16px 18px;
    color: #065f46;
    font-weight: 600;
    font-size: 14px;
    margin-top: 14px;
    text-align: center;
}

.contact-info-wrap h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-info-wrap > p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 26px;
    line-height: 1.65;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 1px 8px rgba(15,23,42,0.05);
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(245,158,11,0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact-card h4 { font-size: 12px; font-weight: 700; color: var(--gray); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.8px; }
.contact-card p, .contact-card a { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.45; text-decoration: none; transition: var(--transition); }
.contact-card a:hover { color: var(--gold-dark); }

.working-hours {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 22px 20px;
    color: rgba(255,255,255,0.65);
}

.working-hours h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.50); }
.hours-row .time { color: var(--white); font-weight: 600; }

/*====================================
  RESPONSIVE
=====================================*/
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2,1fr); }
    .all-projects-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
    .banner-slider { height: 540px; }
    .banner-inner h1 { font-size: 36px; }
    .stats-bar .container { grid-template-columns: repeat(2,1fr); }
    .services-layout { grid-template-columns: 1fr; }
    .services-visual { order: -1; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:first-child { grid-column: span 1; }
    .about-layout { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; }
    .page-hero h1 { font-size: 32px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav.menu { display: none; }
    .header-cta { display: none; }
    .hamburger { display: flex; }
    .main-header .container { height: 64px; }
    .top-left { display: none; }
    .banner-inner h1 { font-size: 28px; }
    .banner-inner p { font-size: 14px; }
    .section-title h2 { font-size: 26px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .all-projects-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .banner-prev, .banner-next { width: 38px; height: 38px; font-size: 15px; }
    .header-phone { display: none; }
}

@media (max-width: 480px) {
    .banner-slider { height: 460px; }
    .stats-bar .container { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 26px; }
    .banner-btns { flex-direction: column; }
    .team-grid { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 26px 18px; }
    .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
