/* BAĞRIAÇIKLAR — Bosch Professional Style Update v2 */
:root {
  --bosch-blue: #002A4A;
  --bosch-red: #D50000;
  --bosch-red-dark: #b70000;
  --bosch-teal: #008ECF;
  --bosch-purple: #781E77;
  --bosch-green: #00A651;
  --bosch-lime: #84BD00;
  --supergraphic-gradient: linear-gradient(90deg, #93003c 0%, #b90276 20%, #50237f 40%, #005691 60%, #008ecf 80%, #00a651 100%);
  --text-dark: #111111;
  --text-gray: #555555;
  --bg-light: #F9FAFB;
  --white: #ffffff;
  --container: 1240px;
  --font-main: 'Inter', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.site-header {
  background: var(--bosch-blue);
  color: #fff;
  height: 84px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-top: 5px solid transparent;
  border-image: var(--supergraphic-gradient) 1;
  overflow: hidden;
}

/* Supergraphic visual on the right side of header */
.header-graphic {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px; /* Increased width for better visibility */
  height: 100%;
  background: var(--supergraphic-gradient);
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1; /* Lifted up */
  pointer-events: none; /* Ensures clicks pass through to potential underlying elements if any */
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10; /* Higher than the graphic */
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Bagriaciklar Logo */
.bagriaciklar-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-link {
  display: block;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.brand-link:hover {
  transform: scale(1.08);
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

.bosch-brand {
  display: flex;
  align-items: center;
}

.bosch-logo-img {
  height: 40px;
  width: auto;
  /* No background as requested */
  /* If the logo is dark text on dark bg, we might need a filter, but user asked for no white bg */
  /* filter: brightness(0) invert(1); */ 
  display: block;
}

/* Removed old gear/bosch-brand styles */

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav .nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bosch-red);
  transition: width 0.2s;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  background: rgba(255,255,255,0.05);
  padding: 8px 16px;
  border-radius: 50px;
  transition: background 0.2s;
}

.phone-btn:hover {
  background: rgba(255,255,255,0.1);
}

.phone-icon {
  background: var(--bosch-red);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
}

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

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* Slight zoom for effect */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,42,74,0.9) 0%, rgba(0,42,74,0.7) 40%, rgba(0,42,74,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  color: #fff;
  max-width: 800px; /* Increased to prevent text wrapping */
  margin-left: 0; /* Align left */
  padding-left: 20px;
}

.hero-tagline {
  display: inline-block;
  background: var(--bosch-red);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-red {
  background: var(--bosch-red);
  color: #fff;
  border: 2px solid var(--bosch-red);
  box-shadow: 0 4px 15px rgba(213, 0, 0, 0.4);
}

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

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: var(--bosch-blue);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.hero-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 120px;
  background: var(--bg-light);
  z-index: 2;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

/* SERVICES OVERLAP */
.services-overlap {
  position: relative;
  z-index: 20;
  margin-top: -80px;
  padding-bottom: 40px;
}

.services-grid {
  display: flex;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.service-item {
  flex: 1;
  padding: 50px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s;
}

.service-item:hover {
  background: #fdfdfd;
}

/* SERVICE COLORS - Distributing Supergraphic Colors */
.service-item:nth-child(1) .icon-box { color: var(--bosch-red); background: rgba(226, 0, 21, 0.1); }
.service-item:nth-child(1):hover .icon-box { background: var(--bosch-red); color: #fff; }
.service-item:nth-child(1) .service-link { color: var(--bosch-red); }

.service-item:nth-child(3) .icon-box { color: var(--bosch-purple); background: rgba(120, 30, 119, 0.1); }
.service-item:nth-child(3):hover .icon-box { background: var(--bosch-purple); color: #fff; }
.service-item:nth-child(3) .service-link { color: var(--bosch-purple); }

.service-item:nth-child(5) .icon-box { color: var(--bosch-green); background: rgba(0, 166, 81, 0.1); }
.service-item:nth-child(5):hover .icon-box { background: var(--bosch-green); color: #fff; }
.service-item:nth-child(5) .service-link { color: var(--bosch-green); }

.divider-vertical {
  width: 1px;
  background: linear-gradient(to bottom, transparent, #eaeaea, transparent);
  margin: 30px 0;
}

/* Old Icon Box styles overridden above, keeping base for shape */
.icon-box {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  transition: all 0.3s;
}

.service-item:hover .icon-box {
  transform: scale(1.1);
}

.service-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--bosch-blue);
}

.service-item p {
  font-size: 15px;
  color: var(--text-gray);
  margin: 0 0 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--bosch-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-link:hover {
  gap: 10px;
}

/* STATS BAR */
.stats-section {
  padding: 40px 0 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid #eee;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: var(--bosch-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 0;
  background: #fff;
}

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

.section-subtitle {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bosch-red);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--bosch-blue);
  margin: 0 0 24px;
  line-height: 1.2;
}

.title-line {
  width: 80px;
  height: 4px;
  background: var(--bosch-red);
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 24px;
  color: var(--text-gray);
  font-size: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.feature-list li i {
  color: var(--bosch-red);
}

/* About Image Wrapper */
.about-image {
  position: relative;
  /* Removed old styling for image */
}

.about-image img {
  display: none; /* Hide old image */
}

.experience-badge {
  display: none; /* Hide old badge */
}

/* Features Grid (Replaces About Image) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: var(--bosch-red);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(213, 0, 0, 0.1); /* Bosch Red light bg */
  color: var(--bosch-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px;
  transition: background 0.3s, color 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--bosch-red);
  color: #fff;
}

.feature-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--bosch-blue);
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* PRODUCTS SECTION */
.products-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.products-header-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.products-title-bar {
  display: inline-block;
  background: var(--bosch-blue);
  color: #fff;
  padding: 12px 40px;
  border-radius: 4px;
  margin-bottom: 16px;
  transform: skewX(-15deg);
  border-bottom: 4px solid transparent;
  border-image: var(--supergraphic-gradient) 1;
}

.products-title-bar h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  transform: skewX(15deg); /* Counter skew text */
}

.products-subtitle {
  color: var(--text-gray);
  font-size: 18px;
}

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

.product-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: var(--bosch-blue);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--bosch-purple); /* Changed 'New' to Purple */
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 5;
}

.product-badge.sale {
  background: var(--bosch-red); /* Keep Sale as Red */
}

.p-img-container {
  height: 200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.p-img-container img {
  max-height: 100%;
  width: auto;
  transition: transform 0.3s;
}

.product-card:hover .p-img-container img {
  transform: scale(1.08);
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-dark);
}

.product-card p {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0 0 20px;
  flex-grow: 1;
}

.btn-red-sm {
  display: block;
  text-align: center;
  background: #fff;
  color: var(--bosch-red);
  border: 1px solid var(--bosch-red);
  text-decoration: none;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s;
}

.product-card:hover .btn-red-sm {
  background: var(--bosch-red);
  color: #fff;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-info-box {
  background: var(--bosch-blue);
  color: #fff;
  padding: 50px;
  position: relative;
}

.contact-info-box h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--bosch-lime);
  margin-top: 10px;
}

.contact-info-box h3 {
  font-size: 28px;
  margin: 0 0 16px;
}

.contact-info-box p {
  opacity: 0.8;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item i {
  font-size: 20px;
  color: var(--bosch-red);
  margin-top: 4px;
}

.info-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.info-item p {
  margin: 0;
  font-size: 15px;
  opacity: 0.9;
}

.map-placeholder {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.contact-form-box {
  background: #fff;
  padding: 50px;
  border-radius: 0 12px 12px 0;
}

.contact-form-box h3 {
  font-size: 24px;
  color: var(--bosch-blue);
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 10px;
}

.contact-form-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--bosch-red);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s;
  background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bosch-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 86, 145, 0.1);
}

.btn-block {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  letter-spacing: 1px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bosch-blue);
}

/* FOOTER */
.site-footer {
  background: var(--bosch-blue);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  font-size: 14px;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #fff;
  transform: translateX(5px);
  color: var(--bosch-teal);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer-col i {
  color: var(--bosch-red);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.maezma-credit {
  font-size: 11px;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.maezma-credit a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.maezma-credit a:hover {
  color: var(--bosch-teal);
}

.footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

/* Footer Certificate */
.footer-certificate {
  margin-top: 24px;
}

.cert-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-link {
  display: block;
  width: 120px; /* Thumbnail size */
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #fff;
}

.cert-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.cert-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 42, 74, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-overlay i {
  color: #fff;
  font-size: 24px;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cert-link:hover {
  transform: scale(1.1); /* Grow effect */
  border-color: var(--bosch-red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 10;
}

.cert-link:hover .cert-overlay {
  opacity: 1;
}

.cert-link:hover .cert-overlay i {
  transform: scale(1);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .header-graphic {
    width: 150px; 
    min-width: auto;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.8;
  }
  .services-grid {
    flex-direction: column;
  }
  .divider-vertical {
    display: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-nav { display: none; }
  .menu-toggle { display: block; }
  
  .phone-btn {
    display: flex;
    padding: 0;
    background: transparent;
    font-size: 0;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .phone-btn:hover { background: transparent; }
  .phone-btn .phone-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  /* Mobile Menu Logic */
  .nav-open body {
    overflow: hidden; /* Prevent background scrolling */
  }

  .nav-open .main-nav {
    display: block;
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: calc(100vh - 84px);
    background: var(--bosch-blue);
    z-index: 999;
    padding: 20px 0;
    overflow-y: auto;
    animation: slideDownMenu 0.3s ease forwards;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-open .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .nav-open .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-open .nav-list a {
    font-size: 18px;
    display: block;
    padding: 10px;
  }
}

@keyframes slideDownMenu {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .site-header {
    height: auto;
    padding: 15px 0;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 0;
  }

  /* Hide elements on mobile as requested */
  .bosch-brand, 
  .bosch-logo-img, 
  .brand-divider, 
  .phone-btn {
    display: none !important;
  }

  .header-left {
    width: auto;
    flex-grow: 0;
    margin-right: auto;
  }

  /* Logo adjustment */
  .bagriaciklar-logo {
    height: 40px; /* Slightly larger logo */
  }

  .header-right {
    position: static;
    transform: none;
    width: auto;
    margin: 0;
    display: flex;
    align-items: center;
  }
  
  .menu-toggle {
    margin: 0;
    font-size: 24px;
  }

  /* Adjust Hero for Mobile */
  .hero {
    height: auto;
    min-height: 500px;
    padding: 100px 0 60px; /* Add top padding for fixed header */
  }
  
  .hero-content {
    text-align: center;
    padding: 0 20px;
    margin: 0 auto;
  }
  
  .hero h1 { 
    font-size: 32px; 
    margin-bottom: 15px;
  }
  
  .hero-sub {
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
    padding: 12px 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet/mobile */
    gap: 30px 20px;
  }
  
  .about-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; } /* Stack features on mobile */
  .products-grid { grid-template-columns: 1fr; }
  
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 15px;
  }
  
  .footer-links a { margin: 0 10px; }
  
  /* Mobile refinements */
  .services-overlap { margin-top: -40px; }
  .service-item { padding: 30px 20px; }
  .contact-info-box { padding: 30px 20px; }
  .contact-form-box { padding: 30px 20px; }
  .header-graphic { display: none; } /* Hide graphic on small mobile for cleaner look */
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr; /* 1 column on very small screens */
  }
  
  .stats-grid {
    grid-template-columns: 1fr; /* 1 column stats */
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  /* Reset header overrides for very small screens to keep single line */
  .header-right {
    margin-top: 0;
    width: auto;
  }
  
  .site-header {
    padding-bottom: 15px;
  }
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

.whatsapp-btn i {
  margin-top: 2px; /* Optical adjustment */
}
