* 

/* Mobil Menü CSS Stilleri */



/* Mobil Menü Link Görünürlüğü Zorlama */
@media (max-width: 768px) {
    .navbar nav a {
        
        color: white !important; /* Rengi zorla */
        padding: 1rem 2rem !important; /* Dolguyu zorla */
    }
}

@media (max-width: 768px) {
    /* ... diğer stiller ... */

.outline-button {
        text-align: center; /* Mobil görünümde yazıyı ortala */
    }

    .navbar nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%; /* %70'ten %80'e çıkarıldı */
        height: 100%;
        background-color: var(--secondary);
        flex-direction: column;
        padding-top: 60px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        opacity: 0;
        gap: 0;
        z-index: 90;
        overflow-x: hidden; /* Yatay taşmayı engelle */
    }

    /* ... diğer stiller ... */
}

/* Hamburger Butonu */
.menu-toggle {
  /* ... diğer stiller ... */
  z-index: 110;
}

.hamburger {
  /* ... diğer stiller ... */
  background-color: var(--foreground); /* Varsayılan renk */
}

/* Hamburger animasyonu - Çarpı işaretine dönüştüğünde renk değişimi */
.menu-toggle.active .hamburger {
    background-color: white; /* Menü açıldığında beyaz yap */
}

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

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

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



/* Hamburger Butonu */
.menu-toggle {
  display: none; /* Varsayılan olarak gizli */
  cursor: pointer;
  padding: 10px;
  z-index: 110; /* Navbar'dan daha yüksek */
}

.hamburger {
  width: 25px;
  height: 3px;
  background-color: var(--foreground);
  margin: 5px 0;
  transition: 0.4s;
  display: block;
}

/* Mobil Menü (Navigasyon) */
.navbar nav {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Mobil görünümde menüyü gizle ve hamburgeri göster */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Mobil görünümde göster */
  }

  .navbar {
    justify-content: space-between;
    align-items: center;
  }

  .navbar nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%; /* Menü genişliği */
    height: 100%;
    background-color: var(--secondary); /* Arka plan rengi */
    flex-direction: column;
    padding-top: 60px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    transform: translateX(100%); /* Başlangıçta ekran dışına taşı */
    opacity: 0;
    gap: 0;
  }

  .navbar nav.open {
    transform: translateX(0); /* Açıldığında görünür yap */
    opacity: 1;
  }

  .navbar nav a {
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: left;
  }

  .navbar nav a:hover,
  .navbar nav a.active {
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-bottom-color: var(--primary);
  }

  /* CTA Butonunu menüden ayır */
  .navbar .cta-button {
    display: none; /* Mobil menüde göstermeyebiliriz, veya menü içine taşıyabiliriz. Şimdilik gizli. */
  }
}

/* Hamburger animasyonu */
.menu-toggle.active .hamburger:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

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


{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #FF6B00;
  --secondary: #1A1A1A;
  --background: #FFFFFF;
  --foreground: #1A1A1A;
  --border: #E4E4E7;
  --muted: #E4E4E7;
  --muted-foreground: #52525B;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
}

.logo-box {
  background: var(--primary);
  color: white;
  padding: 0.5rem;
  font-size: 1.5rem;
  transform: skewX(-12deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span:first-child {
  color: var(--foreground);
  font-size: 1.1rem;
}

.logo-text span:last-child {
  color: var(--primary);
  font-size: 1.1rem;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  
}

nav a:hover,
nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.cta-button {
  background: var(--primary);
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transform: skewX(-12deg);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #E55A00;
  box-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
  transform: skewX(-12deg) translateY(-2px);
}

.cta-button span {
  transform: skewX(12deg);
  display: inline-block;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--secondary);
  background-image: url('../images/hero-tow-truck.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 1) 0%, rgba(26, 26, 26, 0.8) 35%, rgba(26, 26, 26, 0.4) 70%, rgba(26, 26, 26, 0) 100%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  animation: slideInLeft 0.7s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 0, 0.2);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 0.9;
  margin-bottom: 1.5rem;
  color: white;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero p {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  border-left: 2px solid #4b5563;
  padding-left: 1.5rem;
  max-width: 500px;
}

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

.hero-buttons .cta-button {
  padding: 1rem 2rem;
}

.hero-buttons .outline-button {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-block;
}

.hero-buttons .outline-button:hover {
  background: white;
  color: var(--secondary);
}

.hero-info {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-top: 4px solid var(--primary);
  border-radius: 3rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  min-width: 600px;
  box-shadow: -10px -10px 30px rgba(0, 0, 0, 0.5);
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 107, 0, 0.05);
  padding: 1rem;
  border-left: 3px solid var(--primary);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.hero-info-item:hover {
  background: rgba(255, 107, 0, 0.1);
  transform: translateX(0.5rem);
}

.hero-info-icon {
  background: rgba(255, 107, 0, 0.2);
  padding: 0.75rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.hero-info-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.hero-info-text {
  flex: 1;
}

.hero-info-text h4 {
  color: white;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}

.hero-info-text p {
  color: #9ca3af;
  font-size: 0.9rem;
  border: none;
  padding: 0;
  margin: 0;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--background);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-image {
  position: relative;
}

.features-image::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border-top: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
  z-index: 0;
}

.features-image::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border-bottom: 4px solid var(--primary);
  border-right: 4px solid var(--primary);
  z-index: 0;
}

.features-image img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  filter: grayscale(0);
  transition: filter 0.5s ease;
}

.features-image:hover img {
  filter: grayscale(0);
}

.features-content h2 {
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.features-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.features-content p {
  color: var(--muted-foreground);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--secondary);
  color: white;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
  color: var(--primary);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.services-header h3 {
  font-size: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: rgba(255, 107, 0, 0.5);
}

.service-card-image {
  height: 250px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.service-card-content {
  padding: 2rem;
  position: relative;
}

.service-card-icon {
  position: absolute;
  top: -2rem;
  right: 2rem;
  background: var(--primary);
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover h4 {
  color: var(--primary);
}

.service-card p {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card a {
  color: var(--primary);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.service-card a:hover {
  color: white;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-tow-truck.jpg') center/cover;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.cta-section-content {
  position: relative;
  z-index: 10;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-section h2 .highlight {
  color: var(--secondary);
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section .cta-button {
  background: white;
  color: var(--primary);
  font-size: 1.5rem;
  padding: 1.5rem 3rem;
  transform: skewX(-12deg);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-section .cta-button:hover {
  background: var(--secondary);
  color: white;
  transform: skewX(-12deg) scale(1.05);
}

/* Footer */
footer {
  background: var(--secondary);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
  padding-left: 0.75rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
  color: #d1d5db;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul li::before {
  content: '';
  width: 0.375rem;
  height: 0.375rem;
  background: var(--primary);
  display: inline-block;
}

.footer-section a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Page Sections */
.page-header {
  background: var(--secondary);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-tow-truck.jpg') center/cover;
  opacity: 0.2;
}

.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--secondary), transparent);
}

.page-header-content {
  position: relative;
  z-index: 10;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-weight: 500;
}

.breadcrumb a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .active {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    flex-wrap: wrap;
  }

  

  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
  }

  .hero-content {
    max-width: 100%;
    padding: 2rem 1rem;
    flex: 1;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-info {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    border-radius: 0;
    border-top: 4px solid var(--primary);
    padding: 1rem;
    min-width: auto;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
  }

  .hero-info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 107, 0, 0.08);
    padding: 1rem;
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
  }

  .hero-info-icon {
    padding: 0.75rem;
    background: rgba(255, 107, 0, 0.15);
    border-radius: 0.5rem;
    flex-shrink: 0;
  }

  .hero-info-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .hero-info-text {
    flex: 1;
  }

  .hero-info-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: white;
  }

  .hero-info-text p {
    font-size: 0.85rem;
    color: #d1d5db;
    border: none;
    padding: 0;
    margin: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-item-image {
    min-height: 300px;
  }

  .service-item-image img {
    height: 100%;
    object-fit: cover;
  }

  .service-item:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Page Content */
.page-content {
  padding: 6rem 0;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.service-item:nth-child(even) > * {
  direction: ltr;
}

.service-item-image {
  position: relative;
}

.service-item-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  filter: grayscale(0);
  transition: filter 0.5s ease;
}

.service-item-image:hover img {
  filter: grayscale(0) brightness(1.1);
}

.service-item-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-item-content p {
  color: var(--muted-foreground);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-feature svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-0.5rem);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.testimonial-text {
  color: #4b5563;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.author-info h4 {
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-item p {
  color: var(--muted-foreground);
}

.contact-form {
  background: white;
  padding: 3rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  border-top: 8px solid var(--primary);
}

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

.form-group label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  background: #f9f9f9;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

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

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

.form-group.grid-2 > div {
  margin-bottom: 0;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #E55A00;
  transform: translateY(-2px);
}

/* Map */
.map-container {
  height: 400px;
  background: #e5e7eb;
}

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

/* Partners */
.partners-section {
  padding: 3rem 0;
  background: white;
  text-align: center;
}

.partners-title {
  color: #9ca3af;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.partners-grid:hover {
  opacity: 1;
}

.partner-name {
  font-size: 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: bold;
  color: #1f2937;
  transition: color 0.3s ease;
  cursor: default;
}

.partner-name:hover {
  color: var(--primary);
}
