/* =====================================================
   ZORLU CONSTRUCTION — MAIN STYLESHEET
   ===================================================== */

/* --- CSS Variables --- */
:root {
  --navy:      #0D1B2A;
  --navy-mid:  #152338;
  --navy-lt:   #1e3455;
  --gold:      #C8973A;
  --gold-dark: #a87828;
  --gold-lt:   #e8b85a;
  --white:     #ffffff;
  --off-white: #f8f7f4;
  --gray-lt:   #f2f2f2;
  --gray:      #d1d5db;
  --gray-mid:  #9ca3af;
  --text:      #222831;
  --text-lt:   #4b5563;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow:    0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: .3s ease;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-lt);
  border-color: var(--navy-lt);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .82rem; }

/* --- Section Helpers --- */
.section { padding: 90px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-gray { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-lt); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-dark .section-header p { color: rgba(255,255,255,.7); }
.divider {
  width: 60px; height: 4px;
  background: var(--gold);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.topbar {
  background: var(--navy-mid);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: 8px 0;
  font-family: var(--font-head);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.topbar a, .topbar span {
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--gold); }
.topbar i { font-size: .75rem; }
.topbar-right a { font-size: .85rem; }

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
}
.logo-main span { color: var(--gold); }
.logo-tag {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

/* =====================================================
   DESKTOP NAV
   ===================================================== */
.main-nav-desktop { display: flex; }
.main-nav { display: none; } /* mobile only */

/* Nav List (desktop) */
.nav-list {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-list > li > a {
  font-family: var(--font-head);
  font-size: .87rem;
  font-weight: 600;
  padding: .5rem .75rem;
  border-radius: var(--radius);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: all var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--gold);
}
.nav-list > li > a.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: .5rem 1.25rem;
  margin-left: .5rem;
}
.nav-list > li > a.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white);
}
.nav-list .has-mega { position: relative; }
.nav-list .has-mega > a .fa-chevron-down {
  font-size: .65rem;
  transition: transform var(--transition);
}
.nav-list .has-mega:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* Mega Menu (desktop) */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
  min-width: 700px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 200;
}
.has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  top: 100%;
}
.mega-inner { padding: 1.5rem 0; }
.mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.mega-col a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .6rem;
  border-radius: var(--radius);
  font-size: .87rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-head);
  transition: all var(--transition);
}
.mega-col a:hover {
  background: var(--off-white);
  color: var(--gold);
}
.mega-col a .fa-chevron-right { font-size: .65rem; color: var(--gold); }
.mega-cta-col { border-left: 1px solid var(--gray-lt); padding-left: 1rem; }
.mega-cta {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  height: 100%;
  justify-content: center;
}
.mega-cta p { font-size: .9rem; color: var(--text-lt); margin: 0; }
.mega-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.mega-phone:hover { color: var(--gold); }

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 10001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  background: var(--navy);
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 50%, rgba(200,151,58,.15) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255,255,255,1) 20px,
    rgba(255,255,255,1) 21px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,58,.12);
  border: 1px solid rgba(200,151,58,.3);
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* =====================================================
   SERVICES GRID
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(200,151,58,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  color: var(--gold);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.service-card p { color: var(--text-lt); font-size: .9rem; margin-bottom: 1.25rem; }
.service-card .link-arrow {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition);
}
.service-card:hover .link-arrow { gap: .75rem; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.why-icon {
  width: 70px; height: 70px;
  background: rgba(200,151,58,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--gold);
}
.section-dark .why-card h3 { color: var(--white); }
.section-dark .why-card p { color: rgba(255,255,255,.65); }

/* =====================================================
   PROJECTS GRID
   ===================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-img {
  height: 240px;
  overflow: hidden;
  background: var(--navy-mid);
  position: relative;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .project-img img { transform: scale(1.06); }
.project-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-lt));
  color: rgba(255,255,255,.4);
}
.project-img-placeholder i { font-size: 2.5rem; }
.project-img-placeholder span { font-size: .8rem; font-family: var(--font-head); letter-spacing: .08em; }
.project-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
}
.project-body { padding: 1.5rem; }
.project-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.project-body .project-loc {
  font-size: .82rem;
  color: var(--text-lt);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .75rem;
}
.project-body p { font-size: .88rem; color: var(--text-lt); margin-bottom: 1rem; }
.project-body .link-arrow { font-family: var(--font-head); font-size: .83rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: .4rem; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: .9rem; }
.testimonial-card blockquote {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-family: var(--font-head); font-size: .9rem; }
.testimonial-author span { font-size: .8rem; color: rgba(255,255,255,.5); }

/* =====================================================
   BLOG CARDS
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img {
  height: 200px;
  overflow: hidden;
  background: var(--navy-mid);
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-lt));
  color: rgba(255,255,255,.3);
  font-size: 2.5rem;
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .78rem; color: var(--text-lt); margin-bottom: .75rem; display: flex; gap: .75rem; }
.blog-meta .blog-cat { color: var(--gold); font-weight: 700; font-family: var(--font-head); }
.blog-body h3 { font-size: 1rem; margin-bottom: .6rem; line-height: 1.4; }
.blog-body h3 a:hover { color: var(--gold); }
.blog-body p { font-size: .88rem; color: var(--text-lt); flex: 1; margin-bottom: 1rem; }
.blog-body .link-arrow { font-family: var(--font-head); font-size: .83rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: .4rem; margin-top: auto; }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-box {
  height: 500px;
  max-height: 60vw;        /* mobilde viewport'a göre kısalt */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  color: rgba(255,255,255,.2);
  font-size: 5rem;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong { font-family: var(--font-head); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge span { font-family: var(--font-head); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.about-content .label { color: var(--gold); font-family: var(--font-head); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; display: block; margin-bottom: .75rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--text-lt); margin-bottom: 1rem; }
.about-features { display: flex; flex-direction: column; gap: .75rem; margin: 1.5rem 0; }
.about-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
}
.about-feature i { color: var(--gold); font-size: 1rem; }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--gold);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-item span {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: var(--navy);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 50%, rgba(200,151,58,.1) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  font-family: var(--font-head);
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { font-size: .7rem; }
.breadcrumb .current { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 640px; }

/* =====================================================
   SERVICE DETAIL
   ===================================================== */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.service-content h2 { margin: 2rem 0 1rem; }
.service-content h3 { margin: 1.5rem 0 .75rem; color: var(--navy); }
.service-content p { color: var(--text-lt); margin-bottom: 1rem; }
.service-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.service-content ul li { color: var(--text-lt); margin-bottom: .4rem; }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-card.sidebar-dark {
  background: var(--navy);
  color: var(--white);
}
.sidebar-card.sidebar-dark h4 { color: var(--white); }
.sidebar-card h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: .75rem; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
  margin-top: 1rem;
}
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-lt);
  font-size: .88rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--gold); }
.sidebar-services a i { color: var(--gold); font-size: .7rem; }

/* =====================================================
   FAQ ACCORDION
   ===================================================== */
.faq-section { margin-top: 2.5rem; }
.faq-section h2 { margin-bottom: 1.5rem; }
.faq-item {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question.active { background: var(--navy); color: var(--white); }
.faq-question i { transition: transform var(--transition); flex-shrink: 0; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  color: var(--text-lt);
  font-size: .93rem;
  border-top: 1px solid var(--gray-lt);
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-lt); margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 46px; height: 46px;
  background: rgba(200,151,58,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-family: var(--font-head); font-weight: 700; font-size: .88rem; margin-bottom: .2rem; }
.contact-item-text span, .contact-item-text a { color: var(--text-lt); font-size: .9rem; }
.contact-item-text a:hover { color: var(--gold); }

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .85rem;
  margin-bottom: .4rem;
  color: var(--navy);
}
.form-group label .req { color: #e53e3e; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,58,.15);
}
.form-control.error { border-color: #e53e3e; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: .78rem; color: var(--text-lt); text-align: center; margin-top: .75rem; }
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* =====================================================
   BOROUGH CARDS
   ===================================================== */
.boroughs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.borough-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
}
.borough-card:hover {
  background: rgba(200,151,58,.15);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.borough-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: .75rem; }
.borough-card h4 { color: var(--white); font-size: .95rem; }
.borough-card p { color: rgba(255,255,255,.5); font-size: .8rem; margin: 0; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 60px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-cta-text h2 { color: var(--white); margin-bottom: .5rem; }
.footer-cta-text p { color: rgba(255,255,255,.85); margin: 0; }
.footer-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.site-footer { background: var(--navy); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand p { color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: .75rem; }
.footer-license { display: flex; align-items: center; gap: .4rem; font-size: .8rem; color: var(--gold); font-family: var(--font-head); font-weight: 600; }
.footer-boroughs { font-size: .78rem; color: rgba(255,255,255,.4); display: flex; align-items: flex-start; gap: .4rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-family: var(--font-head);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: .65rem; color: var(--gold); }
.footer-posts li { padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-posts a { color: rgba(255,255,255,.6); font-size: .85rem; display: block; transition: color var(--transition); }
.footer-posts a:hover { color: var(--gold); }
.footer-posts span { font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact i { color: var(--gold); margin-top: .15rem; flex-shrink: 0; font-size: .9rem; }
.footer-contact span, .footer-contact a { color: rgba(255,255,255,.6); font-size: .88rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.35); font-size: .8rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: .85rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* =====================================================
   PAGINATION
   ===================================================== */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.page-link {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  transition: all var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* =====================================================
   404
   ===================================================== */
.error-page {
  text-align: center;
  padding: 100px 0;
}
.error-code {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.error-page h2 { margin-bottom: 1rem; }
.error-page p { color: var(--text-lt); max-width: 480px; margin: 0 auto 2rem; }

/* =====================================================
   ADMIN — shared classes used in pages
   ===================================================== */
.tag {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 100px;
  font-size: .75rem;
  font-family: var(--font-head);
  font-weight: 700;
}
.tag-success { background: #d1fae5; color: #065f46; }
.tag-danger { background: #fee2e2; color: #991b1b; }
.tag-warning { background: #fef3c7; color: #92400e; }
.tag-info { background: #dbeafe; color: #1e40af; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 500px; margin: 0 auto; }
  .about-img-box { height: 320px; max-height: none; }
  .about-badge { width: 110px; height: 110px; bottom: -15px; right: -15px; }
  .about-badge strong { font-size: 1.8rem; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .boroughs-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-cta-inner { text-align: center; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {

  /* ---- Topbar sadeleştir ---- */
  .topbar-left a:nth-child(2),
  .topbar-left span { display: none; }

  /* ---- Header ---- */
  .nav-inner { padding-top: 12px; padding-bottom: 12px; }
  .logo-main { font-size: 1.2rem; }
  .logo-tag { font-size: .58rem; }
  .main-nav-desktop { display: none; }  /* desktop nav'ı gizle */
  .hamburger { display: flex; }         /* hamburger göster */

  /* ---- Overlay ---- */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    pointer-events: none;
  }
  .nav-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* ---- Mobil nav paneli ---- */
  .main-nav {
    display: flex;               /* artık flex ile göster */
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 300px;
    height: 100%;
    height: 100dvh;
    background: #0D1B2A;
    z-index: 10001;              /* overlay'den (10000) bir üst */
    overflow-y: auto;
    overflow-x: hidden;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -6px 0 30px rgba(0,0,0,.5);
  }
  .main-nav.open { right: 0; }

  /* Mobil nav header satırı */
  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
  }
  .mobile-nav-header span {
    font-family: var(--font-head);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: var(--gold);
    text-transform: uppercase;
  }
  .nav-close {
    background: none;
    border: none;
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    cursor: pointer;
    padding: .25rem;
    line-height: 1;
    transition: color .2s;
  }
  .nav-close:hover { color: #fff; }

  /* Nav listesi */
  .main-nav .nav-list {
    flex-direction: column;
    gap: 0;
    padding: .5rem 0 2rem;
    flex: 1;
  }
  .main-nav .nav-list > li > a,
  .main-nav .nav-list > li > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: rgba(255,255,255,.8);
    padding: .9rem 1.25rem;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 600;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .15s, color .15s;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    cursor: pointer;
    text-align: left;
  }
  .main-nav .nav-list > li:last-child > a,
  .main-nav .nav-list > li:last-child > button { border-bottom: none; }
  .main-nav .nav-list > li > a:hover,
  .main-nav .nav-list > li > button:hover,
  .main-nav .nav-list > li > a.active {
    color: var(--gold);
    background: rgba(255,255,255,.05);
  }

  /* Free Estimate butonu */
  .nav-cta-mobile {
    display: block;
    margin: 1rem 1.25rem 0 !important;
    padding: .85rem 1.25rem !important;
    background: var(--gold) !important;
    color: #fff !important;
    border-radius: var(--radius) !important;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .88rem;
    justify-content: center !important;
    border-bottom: none !important;
  }
  .nav-cta-mobile:hover { background: var(--gold-dark) !important; }

  /* Services accordion */
  .mobile-nav-toggle { font-family: var(--font-head) !important; }
  .mobile-nav-toggle i { transition: transform .25s ease; font-size: .7rem; }
  .mobile-nav-toggle.open i { transform: rotate(180deg); }

  .mobile-submenu {
    display: none;
    background: rgba(0,0,0,.25);
    list-style: none;
  }
  .mobile-submenu.open { display: block; }
  .mobile-submenu li a {
    display: block;
    padding: .7rem 1.25rem .7rem 2rem;
    color: rgba(255,255,255,.6);
    font-family: var(--font-head);
    font-size: .83rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .15s, background .15s;
  }
  .mobile-submenu li:last-child a { border-bottom: none; }
  .mobile-submenu li a:hover { color: var(--gold); background: rgba(255,255,255,.04); }

  /* Layout */
  .footer-grid { grid-template-columns: 1fr; }
  .boroughs-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 1.5rem; }

  /* About section — resim kutusunu mobilde gizle, sadece içerik göster */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap { display: none; }   /* resim/placeholder mobilde gizle */
  .about-content { padding: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 50px 0; }
  .services-grid, .projects-grid, .testimonials-grid, .blog-grid { grid-template-columns: 1fr; }
  .boroughs-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-cta-actions { flex-direction: column; width: 100%; }
  .footer-cta-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* =====================================================
   FLOATING ACTION BUTTONS — WhatsApp & Call
   ===================================================== */
.fab-wrap {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
  z-index: 998;
}

/* Shared button style */
.fab-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.1rem;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.fab-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,.32);
  color: #fff;
}
.fab-btn i {
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* WhatsApp — visible on all devices */
.fab-whatsapp {
  background: #25D366;
}
.fab-whatsapp:hover { background: #1ebe5d; }

/* Call Now — visible only on mobile */
.fab-call {
  background: var(--gold);
}
.fab-call:hover { background: var(--gold-dark); }

/* Hide call button on desktop */
@media (min-width: 769px) {
  .fab-call { display: none; }
}

/* On mobile: icon-only pill (no label) to save space */
@media (max-width: 480px) {
  .fab-wrap { bottom: 4.5rem; right: 1rem; }
  .fab-btn { padding: .75rem; border-radius: 50%; }
  .fab-btn .fab-label { display: none; }
  .fab-btn i { font-size: 1.3rem; }
}

/* Pulse animation on WhatsApp button */
@keyframes fab-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.fab-whatsapp {
  animation: fab-pulse 2.5s infinite;
}
.fab-whatsapp:hover {
  animation: none;
}
