﻿/* ============================================================
   NEWLINE ADVERTISING — style.css
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --yellow:      #FED91F;
  --yellow-dark: #e6c400;
  --red:         #F93E5E;
  --dark:        #0d0d0d;
  --dark2:       #111111;
  --dark3:       #1a1a1a;
  --title:       #121212;
  --body:        #797E88;
  --light-bg:    #f8f8f8;
  --white:       #ffffff;
  --border:      #e0e0e0;
  --font-title:  'Space Grotesk', sans-serif;
  --font-body:   'Kanit', sans-serif;
  --container:   1260px;
  --gap:         24px;
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.3s ease;
  --shadow:      0 10px 40px rgba(0,0,0,0.08);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
}

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

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gap); }

/* ── Section ─────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ── Section Label ───────────────────────────────────────────── */
.sec-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--title);
  margin-bottom: 14px;
}
.sec-label::before,
.sec-label::after {
  content: '';
  width: 40px; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}
.sec-label-left { justify-content: flex-start; }
.sec-label-left::before { display: none; }

.sec-title {
  font-family: var(--font-title);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--title);
  line-height: 1.2;
  margin-bottom: 20px;
}
.sec-title span { color: var(--yellow); }
.sec-title-white { color: var(--white); }
.sec-desc { font-size: 15px; color: var(--body); line-height: 1.8; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,217,31,0.35); }
.btn-outline { background: transparent; border: 2px solid var(--yellow); color: var(--yellow); }
.btn-outline:hover { background: var(--yellow); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); border: 2px solid var(--dark); }
.btn-dark:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.btn i { font-size: 13px; transition: transform 0.3s; }
.btn:hover i { transform: translateX(4px); }

.btn-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  color: var(--title);
  text-align: center;
  line-height: 1.4;
  transition: var(--transition);
  padding: 10px;
  flex-shrink: 0;
}
.btn-circle:hover { background: var(--yellow); border-color: var(--yellow); transform: scale(1.05); }
.btn-circle-white {
  border-color: rgba(255,255,255,0.3);
  color: white;
}
.btn-circle-white:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }

/* ── Header ──────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  background: var(--dark);
}
#header.scrolled { background: var(--dark); padding: 16px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.header-inner { display: flex; align-items: center; gap: 40px; }
.header-logo img { height: 52px; width: auto; }
.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 34px; }
.nav-list a {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-list a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--yellow); transition: width var(--transition); }
.nav-list a:hover, .nav-list a.active { color: var(--yellow); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

/* Dropdown */
.nav-item-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px); background: var(--dark2); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 8px 0; min-width: 190px; opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s, transform 0.25s; }
.nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 14px; color: rgba(255,255,255,0.75); }
.dropdown-menu a:hover { color: var(--yellow); background: rgba(255,255,255,0.04); }
.dropdown-menu a::after { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header-search-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); border-radius: 50%; transition: var(--transition); }
.header-search-btn:hover { color: var(--yellow); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; cursor: pointer; margin-left: 8px; }
.hamburger span { display: block; height: 2px; background: white; border-radius: 2px; transition: 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); }

/* Mobile Menu */
.mobile-menu { display: none; position: fixed; top: 0; left: -100%; width: 300px; height: 100vh; background: var(--dark2); z-index: 1100; padding: 80px 30px 30px; overflow-y: auto; transition: left 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: 4px 0 30px rgba(0,0,0,0.5); }
.mobile-menu.open { left: 0; }
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1099; opacity: 0; transition: opacity 0.4s; }
.mobile-menu-overlay.open { opacity: 1; }
.mobile-menu .close-btn { position: absolute; top: 24px; right: 24px; color: white; font-size: 22px; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-list a { display: block; padding: 12px 0; font-family: var(--font-title); font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-list a:hover { color: var(--yellow); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero { background: var(--dark); min-height: 100vh; display: flex; align-items: center; padding-top: 90px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 50%, rgba(254,217,31,0.04) 0%, transparent 65%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--yellow); padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--yellow); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; }
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero-title { font-family: var(--font-title); font-size: clamp(34px, 5vw, 66px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 12px; }
.hero-subtitle { font-family: var(--font-title); font-size: clamp(24px, 3.5vw, 50px); font-weight: 700; color: var(--yellow); line-height: 1.15; margin-bottom: 22px; }
.hero-divider { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero-divider span { width: 40px; height: 2px; background: rgba(255,255,255,0.2); }
.hero-divider i { color: var(--yellow); font-size: 12px; }
.hero-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-img { position: relative; display: flex; justify-content: flex-end; }
.hero-img img { max-height: 540px; object-fit: contain; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.35); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll span { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ── Brand Marquee ───────────────────────────────────────────── */
.brand-strip { background: var(--yellow); padding: 18px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 60px; animation: marquee 18s linear infinite; width: max-content; }
.marquee-track img { height: 32px; width: auto; filter: brightness(0); opacity: 0.65; flex-shrink: 0; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── About ───────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 70px; align-items: flex-start; }
.about-left { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.about-left-img { border-radius: var(--radius-lg); overflow: hidden; width: 100%; }
.about-left-img img { width: 100%; height: 280px; object-fit: cover; }
.about-values { display: flex; flex-direction: column; gap: 10px; }
.about-values li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--title); }
.about-values li::before { content: ''; width: 9px; height: 9px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }


.about-right .about-bottom { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; margin-top: 28px; }
.about-right-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-right-img img { width: 100%; height: 220px; object-fit: cover; }
.about-counters-col { display: flex; flex-direction: column; gap: 16px; }
.counter-card { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--light-bg); border-radius: var(--radius); min-width: 160px; }
.counter-card img { width: 40px; height: 40px; object-fit: contain; }
.counter-card .val { font-family: var(--font-title); font-size: 28px; font-weight: 700; color: var(--title); line-height: 1; }
.counter-card .lbl { font-size: 12px; color: var(--body); margin-top: 2px; }

.about-mv { margin: 18px 0; display: flex; flex-direction: column; gap: 12px; }
.about-mv-item h4 { font-family: var(--font-title); font-size: 13px; font-weight: 700; color: var(--title); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.about-mv-item p { font-size: 14px; color: var(--body); line-height: 1.6; }

/* ── Services Tabs ───────────────────────────────────────────── */
.services-tabs-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 40px; margin-top: 50px; }
.service-tab-list { display: flex; flex-direction: column; gap: 4px; }
.service-tab-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-tab-item i { font-size: 16px; color: var(--border); transition: color var(--transition); }
.service-tab-item:hover { background: var(--light-bg); color: var(--title); }
.service-tab-item.active { background: var(--light-bg); color: var(--yellow); border-color: rgba(254,217,31,0.2); font-weight: 600; }
.service-tab-item.active i { color: var(--yellow); }


.service-tab-pane { display: none; }
.service-tab-pane.active { display: block; }
.service-tab-pane-img { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; }
.service-tab-pane-img img { width: 100%; height: 300px; object-fit: cover; }
.service-tab-pane-img .pane-btn { position: absolute; bottom: 20px; right: 20px; }
.service-tab-pane h3 { font-family: var(--font-title); font-size: 22px; font-weight: 700; color: var(--title); margin-bottom: 12px; }
.service-tab-pane p { font-size: 15px; color: var(--body); line-height: 1.8; }

/* ── Stats ───────────────────────────────────────────────────── */
.stats { background: var(--dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 50px 30px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); transition: var(--transition); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(254,217,31,0.04); }
.stat-num { font-family: var(--font-title); font-size: clamp(34px, 4vw, 54px); font-weight: 700; color: var(--yellow); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; }

/* ── Portfolio ───────────────────────────────────────────────── */
.portfolio-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn { padding: 8px 20px; border-radius: 50px; font-family: var(--font-title); font-size: 13px; font-weight: 600; color: var(--body); background: var(--light-bg); border: 1px solid var(--border); transition: var(--transition); cursor: pointer; }
.filter-btn.active, .filter-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.portfolio-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 4/3; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: opacity var(--transition); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .cat { font-size: 11px; color: var(--yellow); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; }
.portfolio-overlay h3 { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: white; }

/* ── Testimonials ─────────────────────────────────────────────── */
.testi { background: var(--dark); }
.testi-slider { margin-top: 50px; }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.testi-stars { display: flex; gap: 4px; color: var(--yellow); font-size: 13px; margin-bottom: 18px; }
.testi-card-content p { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testi-author h4 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: white; margin-bottom: 3px; }
.testi-author span { font-size: 13px; color: var(--yellow); }
.testi-card-photo img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--yellow); }

/* ── CTA / Büyütün ────────────────────────────────────────────── */
.cta-grow { background: var(--light-bg); }
.cta-grow-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-grow-inner h2 { font-family: var(--font-title); font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; color: var(--title); margin-bottom: 14px; }
.cta-grow-inner p { font-size: 15px; color: var(--body); margin-bottom: 36px; }
.cta-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 30px; }
.cta-form input { flex: 1; min-width: 200px; max-width: 260px; padding: 14px 20px; border: 1.5px solid var(--border); border-radius: 50px; font-size: 14px; color: var(--title); outline: none; transition: border-color var(--transition); }
.cta-form input:focus { border-color: var(--yellow); }
.cta-form input::placeholder { color: #aaa; }

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing { background: var(--dark3); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 30px 0 50px; }
.pricing-toggle span { font-family: var(--font-title); font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); }
.pricing-toggle span.active { color: var(--white); }
.toggle-switch { position: relative; width: 48px; height: 26px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; inset: 0; background: var(--yellow); border-radius: 30px; cursor: pointer; transition: var(--transition); }
.toggle-slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; bottom: 3px; background: var(--dark); border-radius: 50%; transition: var(--transition); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 36px 30px; transition: var(--transition); }
.pricing-card.featured { border-color: var(--yellow); background: rgba(254,217,31,0.05); position: relative; }
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card h3 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.6); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.pricing-card p.pricing-desc { font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 20px; line-height: 1.6; }
.pricing-price { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pricing-price .amount { font-family: var(--font-title); font-size: 36px; font-weight: 700; color: var(--yellow); }
.pricing-price .period { font-size: 13px; color: rgba(255,255,255,0.4); margin-left: 4px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.pricing-features li::before { content: ''; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* ── Blog ─────────────────────────────────────────────────────── */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; margin-top: 50px; }
.blog-list { display: flex; flex-direction: column; gap: 30px; }
.blog-post { display: grid; grid-template-columns: 260px 1fr; gap: 28px; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.blog-post:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-post-img { overflow: hidden; }
.blog-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; min-height: 200px; }
.blog-post:hover .blog-post-img img { transform: scale(1.05); }
.blog-post-body { padding: 28px 28px 28px 0; display: flex; flex-direction: column; justify-content: center; }
.blog-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12px; color: var(--body); margin-bottom: 12px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--yellow); }
.blog-post-body h2 { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--title); line-height: 1.4; margin-bottom: 10px; transition: color var(--transition); }
.blog-post:hover .blog-post-body h2 { color: var(--yellow); }
.blog-post-body p { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: 18px; }
.btn-readmore { display: inline-flex; align-items: center; gap: 6px; padding: 8px 20px; border: 1.5px solid var(--title); border-radius: 50px; font-family: var(--font-title); font-size: 13px; font-weight: 600; color: var(--title); transition: var(--transition); }
.btn-readmore:hover { background: var(--yellow); border-color: var(--yellow); }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.sidebar-widget h4 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: var(--title); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--yellow); display: inline-block; }
.sidebar-search { display: flex; gap: 8px; }
.sidebar-search input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; outline: none; }
.sidebar-search input:focus { border-color: var(--yellow); }
.sidebar-search button { padding: 10px 16px; background: var(--yellow); border: none; border-radius: var(--radius); cursor: pointer; font-weight: 600; font-size: 14px; }
.sidebar-recent { display: flex; flex-direction: column; gap: 12px; }
.sidebar-recent-item { display: flex; gap: 12px; align-items: flex-start; }
.sidebar-recent-item img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.sidebar-recent-item h5 { font-family: var(--font-title); font-size: 13px; font-weight: 600; color: var(--title); line-height: 1.4; margin-bottom: 4px; transition: color var(--transition); }
.sidebar-recent-item h5:hover { color: var(--yellow); }
.sidebar-recent-item span { font-size: 11px; color: var(--body); }
.sidebar-cats { display: flex; flex-direction: column; gap: 8px; }
.sidebar-cats a { display: flex; justify-content: space-between; align-items: center; padding: 8px 12px; background: var(--light-bg); border-radius: var(--radius); font-size: 14px; color: var(--title); transition: var(--transition); }
.sidebar-cats a:hover { background: var(--yellow); color: var(--dark); }
.sidebar-cats a span { font-size: 12px; background: var(--border); padding: 2px 8px; border-radius: 50px; }

/* Blog Grid (homepage) */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-img { overflow: hidden; aspect-ratio: 16/9; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 24px; }
.blog-body h3 { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: var(--title); line-height: 1.4; margin-bottom: 10px; transition: color var(--transition); }
.blog-card:hover .blog-body h3 { color: var(--yellow); }
.blog-body p { font-size: 14px; line-height: 1.7; color: var(--body); margin-bottom: 16px; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-title); font-size: 13px; font-weight: 600; color: var(--title); transition: color var(--transition); }
.blog-card:hover .blog-link { color: var(--yellow); }

/* ── Footer ───────────────────────────────────────────────────── */
footer { background: var(--dark2); }
.footer-top { padding: 40px 0 30px; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-top img { height: 48px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); border-radius: 50%; font-size: 14px; transition: var(--transition); }
.footer-socials a:hover { background: var(--yellow); color: var(--dark); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; padding: 50px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-col h4 { font-family: var(--font-title); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--yellow); font-size: 16px; line-height: 1; }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item i { color: var(--yellow); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--yellow); }

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb { background: var(--dark); padding: 110px 0 50px; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.breadcrumb::before { content: ''; position: absolute; inset: 0; background: rgba(13,13,13,0.82); }
.breadcrumb .container { position: relative; text-align: center; }
.breadcrumb h1 { font-family: var(--font-title); font-size: clamp(28px, 4vw, 50px); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.breadcrumb-trail { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.45); }
.breadcrumb-trail a { color: var(--yellow); }
.breadcrumb-trail i { font-size: 10px; }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { display: flex; gap: 18px; padding: 24px; background: var(--light-bg); border-radius: var(--radius); align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--dark); flex-shrink: 0; }
.contact-info-card h4 { font-family: var(--font-title); font-size: 15px; font-weight: 700; color: var(--title); margin-bottom: 5px; }
.contact-info-card p { font-size: 13px; color: var(--body); line-height: 1.6; }
.contact-form { background: var(--white); padding: 44px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form h3 { font-family: var(--font-title); font-size: 22px; font-weight: 700; color: var(--title); margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--body); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--title); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--title); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── Process ──────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 50px; }
.process-card { text-align: center; padding: 40px 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); position: relative; }
.process-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); transform: translateY(-4px); }
.process-num { position: absolute; top: -14px; left: 28px; background: var(--yellow); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-title); font-size: 12px; font-weight: 700; color: var(--dark); }
.process-card img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto 18px; }
.process-card h3 { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: var(--title); margin-bottom: 10px; }
.process-card p { font-size: 14px; color: var(--body); line-height: 1.7; }

/* ── Utilities ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .services-tabs-wrap { grid-template-columns: 260px 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { gap: 30px; }
}

@media (max-width: 900px) {
  /* Header */
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-img { justify-content: center; }
  .hero-img img { max-height: 360px; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-divider { justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-left { align-items: center; }
  .about-right .about-bottom { grid-template-columns: 1fr; }
  .about-counters-col { flex-direction: row; flex-wrap: wrap; gap: 12px; }

  /* Services */
  .services-tabs-wrap { grid-template-columns: 1fr; gap: 24px; }
  .service-tab-list { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .service-tab-item { padding: 10px 14px; font-size: 14px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 36px 20px; }
  .stat-item:last-child, .stat-item:nth-child(2) { border-bottom: none; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testi-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 20px; }
  .testi-card-photo { display: flex; justify-content: center; }
  .testi-card-photo img { width: 90px; height: 90px; }
  .testi-stars { justify-content: center; }

  /* Blog */
  .blog-layout { grid-template-columns: 1fr; }
  .blog-post { grid-template-columns: 1fr; }
  .blog-post-img img { min-height: 220px; max-height: 260px; width: 100%; }
  .blog-post-body { padding: 20px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr 1fr; }

  /* Process */
  .process-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-form { flex-direction: column; align-items: center; }
  .cta-form input { max-width: 100%; width: 100%; min-width: unset; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-top { gap: 16px; }
}

@media (max-width: 600px) {
  /* Section spacing */
  .section { padding: 60px 0; }
  .section-sm { padding: 40px 0; }
  .container { padding: 0 16px; }

  /* Hero */
  .hero { padding: 100px 0 50px; }
  .hero-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-subtitle { font-size: clamp(20px, 6vw, 32px); }
  .hero-img img { max-height: 280px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 300px; }
  .btn-circle { width: 80px; height: 80px; font-size: 11px; }
  .hero-scroll { display: none; }

  /* Header actions */
  .header-logo img { height: 40px; }
  .header-actions { gap: 8px; }
  .btn.btn-yellow { padding: 10px 18px; font-size: 13px; }

  /* About */
  .about-left-img img { height: 220px; }
  .about-right-img img { height: 180px; }
  .counter-card { min-width: auto; flex: 1; padding: 12px 14px; }
  .counter-card .val { font-size: 22px; }
  .about-counters-col { flex-direction: row; }

  /* Services */
  .service-tab-list { gap: 6px; }
  .service-tab-item { padding: 10px 12px; font-size: 13px; flex: 1; min-width: calc(50% - 3px); }
  .service-tab-pane-img img { height: 220px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 14px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-filter { gap: 6px; }
  .filter-btn { padding: 7px 14px; font-size: 12px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-layout { gap: 24px; }
  .blog-post { display: flex; flex-direction: column; }
  .blog-post-img img { min-height: 200px; max-height: 220px; }
  .blog-post-body { padding: 18px; }
  .blog-post-body h2 { font-size: 17px; }

  /* Testimonials */
  .testi-card { padding: 24px 18px; }
  .testi-card-content p { font-size: 14px; }

  /* Contact */
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-grid { gap: 24px; }
  .contact-info-card { padding: 18px 14px; gap: 12px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-card { padding: 32px 20px; }

  /* Pricing */
  .pricing-grid { max-width: 100%; }
  .pricing-card { padding: 28px 20px; }
  .pricing-price .amount { font-size: 28px; }

  /* CTA */
  .cta-grow-inner h2 { font-size: clamp(22px, 6vw, 32px); }

  /* Footer */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-top img { height: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-socials { gap: 8px; }
  .footer-socials a { width: 34px; height: 34px; font-size: 13px; }

  /* Breadcrumb */
  .breadcrumb { padding: 90px 0 40px; }
  .breadcrumb h1 { font-size: clamp(22px, 7vw, 36px); }

  /* Makale sidebar */
  .article-layout { padding: 36px 0; }
  .cta-sidebar { padding: 24px 18px; }

  /* Mobile menu */
  .mobile-menu { width: 100%; max-width: 320px; }

  /* Brand strip */
  .marquee-track { gap: 40px; }
  .marquee-track img { height: 26px; }

  /* Buttons genel */
  .btn { padding: 12px 22px; font-size: 14px; }
}

@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 26px; }
  .hero-subtitle { font-size: 20px; }
  .hero-img img { max-height: 220px; }
  .header-logo img { height: 36px; }
  .sec-title { font-size: 22px; }
  .about-counters-col { flex-direction: column; }
  .counter-card { flex-direction: row; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.06) !important; }
  .service-tab-item { min-width: 100%; }
  .pricing-card .btn { padding: 12px 16px; font-size: 13px; }
  .contact-form { padding: 18px 14px; }
  .footer-socials { flex-wrap: wrap; }
}

/* ── Touch Device Improvements ───── */
@media (hover: none) {
  .btn:hover { transform: none; }
  .blog-card:hover { transform: none; }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .process-card:hover { transform: none; }
  .pricing-card:hover { transform: none; }
}

/* ── Landscape Phone ───────────────── */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 90px 0 40px; }
  .hero-img img { max-height: 220px; }
  .section { padding: 50px 0; }
}

/* ── Safe Area (iPhone notch vs.) ── */
@media (max-width: 600px) {
  body { padding-bottom: env(safe-area-inset-bottom); }
  #header { padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); }
}



/* ── WhatsApp Floating Button ──────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-pulse 2.5s infinite;
  position: relative;
}

.wa-float-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}

/* Tooltip */
.wa-float-tooltip {
  background: #111;
  color: #fff;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Ping halkası animasyonu */
.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-ring 2.5s infinite;
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes wa-ring {
  0% { transform: scale(1); opacity: 0.7; }
  60% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 600px) {
  .wa-float { bottom: 18px; right: 16px; }
  .wa-float-btn { width: 52px; height: 52px; font-size: 24px; }
  .wa-float-tooltip { display: none; }
}

