/* ========================================
   ÖNCÜ TEL ÇİT SİSTEMLERİ — GLOBAL STYLES
======================================== */

:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-light: #e8132f;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --gray: #2a2a2a;
  --gray2: #444;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text: #333;
  --text-light: #666;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-red: 0 4px 24px rgba(200,16,46,0.3);
  --radius: 4px;
  --transition: 0.3s ease;
}

*, *::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(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

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

.red-text { color: var(--red); }

/* =================== HEADER =================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.logo-icon {
  font-size: 32px;
  color: var(--red);
  line-height: 1;
}

.logo-title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--red);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown { position: relative; }

.nav-link {
  padding: 8px 14px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover, .nav-link.active {
  color: var(--red);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark);
  border: 1px solid rgba(200,16,46,0.3);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--red);
  border-left-color: var(--red);
  background: rgba(200,16,46,0.08);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-whatsapp:hover { background: #1db954; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  height: 100%;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(10,10,10,0.7) 50%, rgba(200,16,46,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  max-width: 700px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  margin-bottom: 20px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--red);
  line-height: 1;
}

.stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* =================== BUTTONS =================== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-white:hover { background: var(--light-gray); }

.btn-whatsapp-lg {
  display: inline-block;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-whatsapp-lg:hover { background: #1da851; }

/* =================== SECTIONS =================== */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--dark);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
}

/* =================== SERVICES =================== */
.services-section { background: var(--light-gray); }

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

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  height: 100%;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img { transform: scale(1.06); }

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200,16,46,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.service-body { padding: 24px; }

.service-icon {
  font-size: 24px;
  color: var(--red);
  margin-bottom: 12px;
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-link {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}

/* =================== WHY US =================== */
.why-section { position: relative; background: var(--white); overflow: hidden; }

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 500px;
}

.why-image img { height: 100%; }

.why-badge-float {
  position: absolute;
  bottom: 32px;
  right: -16px;
  background: var(--red);
  color: var(--white);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-red);
}

.why-badge-float span {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
}

.why-badge-float p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 4px;
}

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}

.why-content > p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-icon.red { background: var(--red); color: var(--white); }

.why-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-feature p { font-size: 14px; color: var(--text-light); }

/* =================== CTA BAND =================== */
.cta-band {
  background: var(--red);
  padding: 60px 0;
}

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

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.cta-band p { color: rgba(255,255,255,0.8); font-size: 16px; }

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

/* =================== PAGE HERO =================== */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  margin-top: 70px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img { height: 100%; object-position: center; }

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(200,16,46,0.3) 100%);
}

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

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

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-top: 12px;
}

/* =================== SERVICE PAGE =================== */
.service-page { padding: 80px 0; }

.service-page-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.service-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 16px;
}

.service-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--dark);
  margin: 32px 0 12px;
}

.service-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

.service-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-content ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
  font-size: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.service-content ul li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 10px;
  top: 11px;
}

.service-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
}

.service-images img {
  border-radius: var(--radius);
  height: 200px;
}

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sidebar-card-header {
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
}

.sidebar-card-body { padding: 20px; }

.sidebar-services a {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text);
  font-size: 15px;
  gap: 8px;
}

.sidebar-services a:hover { color: var(--red); padding-left: 8px; }
.sidebar-services a::before { content: '›'; color: var(--red); font-size: 18px; }

.contact-widget { text-align: center; }

.contact-widget .phone {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}

.contact-widget .wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
}

.contact-widget .wa-btn:hover { background: #1da851; }

.contact-widget .call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col .logo { margin-bottom: 16px; }

.footer-col > p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366 !important;
  font-weight: 600;
  font-size: 14px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

.footer-col ul li a:hover { color: var(--red); padding-left: 6px; }

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--red); }

.footer-keywords {
  margin-top: 16px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* =================== FLOATING WA =================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* =================== GALERI =================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}

.gallery-item img { height: 100%; transition: transform 0.5s ease; }

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,16,46,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--white);
  font-size: 36px;
}

/* =================== CONTACT PAGE =================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-list { margin: 24px 0; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--white);
}

.contact-info-item h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--text-light);
  font-size: 15px;
}

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  border-top: 4px solid var(--red);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
}

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

/* =================== ABOUT PAGE =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  border-radius: 8px;
  overflow: hidden;
  height: 480px;
}

.about-img img { height: 100%; }

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

.team-card {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 12px;
}

.team-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card p { font-size: 13px; color: var(--text-light); }

/* =================== ANIMATIONS =================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-page-inner { grid-template-columns: 1fr; }
  .sidebar { grid-row: 1; }
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark); padding: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav.open { display: flex; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; display: none !important; box-shadow: none; border: none; }
  .nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { display: block !important; }
  .hamburger { display: flex; }
  .btn-whatsapp span { display: none; }
  .hero-stats { gap: 20px; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { height: 320px; }
  .why-badge-float { right: 16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .service-images { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
