/* 
   KİMTED KİMYEVİ MADDELER VE TIBBİ MALZEMELER SANAYİ VE TİCARET LTD. ŞTİ.
   Corporate Identity Stylesheet (Modern, Responsive, High Performance SEO focus)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-hue: 218;
  --primary: hsl(var(--primary-hue), 76%, 16%); /* Deep Navy */
  --primary-light: hsl(var(--primary-hue), 70%, 25%);
  --primary-dark: hsl(var(--primary-hue), 85%, 8%);
  
  --accent-orange: hsl(25, 95%, 50%); /* Silica Gel Orange Indicator */
  --accent-blue: hsl(205, 90%, 48%); /* Silica Gel Blue Indicator */
  
  --text-dark: hsl(218, 40%, 12%);
  --text-muted: hsl(218, 15%, 45%);
  --text-light: hsl(0, 0%, 100%);
  
  --bg-light: hsl(218, 30%, 98%);
  --bg-white: hsl(0, 0%, 100%);
  --bg-dark: hsl(218, 60%, 6%);
  --bg-dark-accent: hsl(218, 50%, 10%);
  
  --border-color: hsl(218, 20%, 90%);
  --border-color-dark: hsl(218, 30%, 15%);
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 35, 71, 0.04);
  --shadow-md: 0 8px 24px rgba(13, 35, 71, 0.08);
  --shadow-lg: 0 16px 48px rgba(13, 35, 71, 0.12);
  --shadow-accent: 0 8px 20px rgba(242, 100, 25, 0.25);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout Sizing */
  --max-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6.25rem 0;
}

.section-bg-white {
  background-color: var(--bg-white);
}

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-bg-dark h2 {
  color: var(--text-light);
}

.section-bg-dark p {
  color: hsl(218, 20%, 75%);
}

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

.section-title-wrapper {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: hsl(var(--primary-hue), 76%, 95%);
  color: var(--primary-light);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-bg-dark .section-badge {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

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

.btn-accent {
  background-color: var(--accent-orange);
  color: var(--text-light);
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background-color: hsl(25, 95%, 45%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(242, 100, 25, 0.4);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--text-light);
  color: var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

.header-scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-color);
}

.header-scrolled.dark-mode-nav {
  background-color: rgba(13, 35, 71, 0.9);
  border-bottom: 1px solid var(--border-color-dark);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  transition: var(--transition-normal);
}

.header-scrolled .logo-img {
  height: 38px;
}

.footer-logo-wrapper {
  background-color: var(--bg-white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-sm);
  display: inline-block;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-scrolled.dark-mode-nav .nav-link {
  color: var(--text-light);
}

.nav-ecommerce-btn {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--accent-orange), hsl(18, 90%, 50%));
  color: white !important;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-accent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-ecommerce-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(242, 100, 25, 0.35);
}

.nav-ecommerce-btn::after {
  display: none !important;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 3px;
  transition: var(--transition-normal);
}

.header-scrolled.dark-mode-nav .menu-toggle span {
  background-color: var(--text-light);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, hsl(218, 50%, 97%) 0%, hsl(218, 30%, 94%) 100%);
  padding: 10.5rem 0 7rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(59, 130, 246, 0) 70%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--bg-light), transparent);
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-orange 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--accent-orange);
  background: linear-gradient(135deg, var(--accent-orange), hsl(18, 90%, 50%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(135deg, #ffffff, #f0f4f9);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 5;
}

.hero-image {
  border-radius: calc(var(--border-radius-lg) - 6px);
  object-fit: cover;
  width: 100%;
  height: 380px;
  box-shadow: var(--shadow-sm);
}

.hero-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 6;
}

.stat-card-1 {
  bottom: 30px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-card-2 {
  top: 40px;
  right: -20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-number span {
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 3rem 2.25rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: hsl(var(--primary-hue), 76%, 95%);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.feature-card:nth-child(2) .feature-icon-wrapper {
  background-color: hsl(25, 95%, 95%);
  color: var(--accent-orange);
}

.feature-card:nth-child(2)::before {
  background-color: var(--accent-orange);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.95rem;
}

/* Info Section (Hakkımızda Özet) */
.info-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.info-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.info-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.info-bullets {
  list-style: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.info-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--primary);
}

.info-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  background-color: hsl(25, 95%, 95%);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.85rem;
}

.info-images {
  position: relative;
}

.info-img-main {
  width: 90%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.info-img-secondary {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 50%;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--bg-white);
}

/* Products Section (Ana Sayfa & Ürünlerimiz Sayfası) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
  position: relative;
  background-color: hsl(218, 30%, 96%);
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.product-card:hover .product-image {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.product-badge.orange-ind {
  color: var(--accent-orange);
}

.product-badge.blue-ind {
  color: var(--accent-blue);
}

.product-info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-specs {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.product-specs li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.product-specs li span {
  font-weight: 600;
  color: var(--primary);
}

.product-actions {
  display: flex;
  gap: 0.75rem;
}

.product-actions .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
}

/* Call to Action for E-commerce */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  padding: 5rem 4rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(242, 100, 25, 0.15) 0%, rgba(242, 100, 25, 0) 70%);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-banner-content h2 {
  color: var(--text-light);
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.cta-banner-content h2 span {
  color: var(--accent-orange);
}

.cta-banner-content p {
  color: hsl(218, 20%, 80%);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.cta-btn-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cta-feature-tags {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.cta-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: hsl(218, 20%, 85%);
  font-weight: 500;
}

.cta-tag-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Corporate Pages Hero Banner */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 8rem 0 4.5rem 0;
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  z-index: 1;
}

.page-hero-title {
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  font-size: 0.9rem;
  color: hsl(218, 20%, 75%);
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}

.page-hero-breadcrumb a {
  color: hsl(218, 20%, 85%);
}

.page-hero-breadcrumb a:hover {
  color: var(--accent-orange);
}

.page-hero-breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: hsl(218, 20%, 60%);
}

/* About Us Specific Stils */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

.about-text h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

.about-text h3:first-of-type {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.25rem;
}

.history-timeline {
  margin-top: 3rem;
  border-left: 2px solid var(--border-color);
  padding-left: 2rem;
  position: relative;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 6px);
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: var(--accent-orange);
  border: 2px solid var(--bg-white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px hsl(25, 95%, 90%);
}

.timeline-year {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.timeline-desc {
  font-size: 0.95rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.value-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-orange);
}

.value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
}

/* Contact Specific Stils */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-block {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background-color: hsl(var(--primary-hue), 76%, 95%);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-detail h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-detail p,
.contact-info-detail a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-info-detail a:hover {
  color: var(--accent-orange);
}

.contact-form-block {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-desc {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-light);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px hsl(25, 95%, 95%);
}

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

.form-submit-btn {
  width: 100%;
  justify-content: center;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--border-radius-sm);
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message.success {
  background-color: hsl(120, 70%, 95%);
  color: hsl(120, 70%, 25%);
  border: 1px solid hsl(120, 70%, 90%);
  display: block;
}

.form-message.error {
  background-color: hsl(0, 70%, 95%);
  color: hsl(0, 70%, 25%);
  border: 1px solid hsl(0, 70%, 90%);
  display: block;
}

.map-container {
  margin-top: 4rem;
  height: 450px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-headings);
}

.footer-logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer-logo-text span {
  color: var(--accent-orange);
}

.footer-desc {
  color: hsl(218, 20%, 75%);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: hsl(218, 20%, 75%);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: hsl(218, 20%, 75%);
}

.footer-contact-item span {
  color: var(--accent-orange);
}

.footer-contact-item a {
  color: hsl(218, 20%, 75%);
}

.footer-contact-item a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  border-top: 1px solid var(--border-color-dark);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: hsl(218, 20%, 60%);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: var(--accent-orange);
}

/* Animations */
@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 100, 25, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(242, 100, 25, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 100, 25, 0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: var(--transition-slow);
    z-index: 999;
    align-items: stretch;
    text-align: center;
  }
  
  .nav-list.active {
    transform: translateY(0);
  }
  
  .nav-link {
    font-size: 1.2rem;
    display: block;
  }
  
  .nav-ecommerce-btn {
    justify-content: center;
    font-size: 1.1rem;
    padding: 0.85rem 2rem;
  }
  
  .header-scrolled.dark-mode-nav .nav-list {
    background-color: var(--primary);
  }
  
  .hero {
    padding: 7.5rem 0 4rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }
  
  .hero-image {
    height: 300px;
  }
  
  .stat-card-1 {
    left: -20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .info-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .info-images {
    display: flex;
    justify-content: center;
  }
  
  .info-img-main {
    width: 100%;
  }
  
  .info-img-secondary {
    display: none;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .cta-banner {
    padding: 3rem 2rem;
  }
  
  .cta-banner-content h2 {
    font-size: 2rem;
  }
  
  .cta-btn-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-feature-tags {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .value-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .map-container {
    height: 300px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Certificates Section */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.certificate-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.certificate-img-wrapper {
  background-color: hsl(218, 30%, 96%);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.certificate-preview-img {
  max-height: 180px;
  width: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  transition: var(--transition-normal);
}

.certificate-card:hover .certificate-preview-img {
  transform: scale(1.05);
}

.certificate-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.certificate-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 600;
}

.certificate-desc {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.certificate-actions {
  display: flex;
  gap: 0.5rem;
}

.certificate-actions .btn {
  flex: 1;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .certificates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
